05 2020 档案

摘要:If Sheets("表名").AutoFilterMode = True Then Sheets("表名").Range("A1").AutoFilter 阅读全文
posted @ 2020-05-07 13:54 TryMyBest! 阅读(164) 评论(0) 推荐(0)
摘要:声明一个常数变量,在整个工程中变量的值不变,都是那个常数 阅读全文
posted @ 2020-05-05 17:18 TryMyBest! 阅读(2015) 评论(0) 推荐(0)
摘要:将字符型字符串变为数字型字符串 或者 将字符数字混合的字符串提取数字 https://www.sogou.com/link?url=DOb0bgH2eKh1ibpaMGjuyzG3yPF0TUDgaKfd_SLHYbm-W79A1CmlbAHP_Crli_F1bpS0YpUTKh-erAbilyjo 阅读全文
posted @ 2020-05-05 17:00 TryMyBest! 阅读(1130) 评论(0) 推荐(0)
摘要:https://www.sogou.com/link?url=hedJjaC291OIJTBNRyYefPAPw4iH1vcXUJRZLciShZMlvY4KtHhnRaHFh6uLBMh6xXLpDwLiPcCt5pUc3zy0dg.. 阅读全文
posted @ 2020-05-05 16:29 TryMyBest! 阅读(324) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/JTCLASSROOM/category/1446223.html 阅读全文
posted @ 2020-05-05 16:22 TryMyBest! 阅读(142) 评论(0) 推荐(0)
摘要:如有侵权,请联系删除 https://blog.csdn.net/baidu_30129309/article/details/52244242 Public Sub 工作表保护密码破解() Const DBLSPACE As String = vbNewLine & vbNewLine Const 阅读全文
posted @ 2020-05-05 16:12 TryMyBest! 阅读(283) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/baidu_30129309/article/details/52244242 (9条消息) 如何破解vba的工程密码_一个IT小白的博客-CSDN博客_vbaproject密码怎么解除 https://blog.csdn.net/qq_14815199/ 阅读全文
posted @ 2020-05-05 15:55 TryMyBest! 阅读(1621) 评论(0) 推荐(0)
摘要:https://www.sogou.com/link?url=DSOYnZeCC_rR_TP93bdO6GxT14t4sbuOwR4Xg1N-va4KkyI7DJgSnPNx6aHQaobTIeZ8aQ291kY. 如有侵权,请联系删除 Sub Main()ActiveSheet.Cells.Cle 阅读全文
posted @ 2020-05-05 15:18 TryMyBest! 阅读(3224) 评论(0) 推荐(0)
摘要:如有侵权,请联系删除 https://wenku.baidu.com/view/926a5e1ba8956bec0975e3e8.html createobject("vbscript.regexp") '正则表达式 createobject("scripting.dictionary") '字典 阅读全文
posted @ 2020-05-05 12:46 TryMyBest! 阅读(431) 评论(0) 推荐(1)
摘要:for each sh1 in workbooks("工作簿名称").sheets next 阅读全文
posted @ 2020-05-05 11:16 TryMyBest! 阅读(749) 评论(3) 推荐(0)
摘要:cells(a,b).interior.color=vbred 阅读全文
posted @ 2020-05-05 11:08 TryMyBest! 阅读(533) 评论(0) 推荐(0)
摘要:cells(a,b).resize(c,d) cells(a,b).offset(c,d) 阅读全文
posted @ 2020-05-05 10:59 TryMyBest! 阅读(423) 评论(0) 推荐(0)
摘要:1.for next 2.do while loop 3.do until loop 阅读全文
posted @ 2020-05-05 10:56 TryMyBest! 阅读(282) 评论(0) 推荐(0)
摘要:for each key1 in dic.keys next 阅读全文
posted @ 2020-05-05 10:53 TryMyBest! 阅读(168) 评论(0) 推荐(0)
摘要:重新定义数组的大小。 阅读全文
posted @ 2020-05-05 10:48 TryMyBest! 阅读(310) 评论(0) 推荐(0)
摘要:赋值 复合框名称.list=array("a","b","c") 列表名称.list=array("a","b","c") 或者 复合框名称.list=数组arr 列表名称.list=数组arr 提取选定的值 a=复合框名称.value b=列表名称.value 阅读全文
posted @ 2020-05-05 10:42 TryMyBest! 阅读(530) 评论(0) 推荐(0)