原始出处:http://www.cnblogs.com/Charltsing/p/unviewable.html QQ: 564955427 Email: charltsing@gmail.com 有人问我Unviewable+ VBA保护的vba代码能不能破解,所以我去作者网站看了一下(网址). 这个工具对VBA代码的保护看起来是比较完善的,但是还是有致命的问题,可以轻易导出代码. 导出的VBA Tools-Demo-Ultimate locked.xlam文件中的部分代码 download…
https://msdn.microsoft.com/VBA/Word-VBA/articles/view-showheading-method-word View.ShowHeading Method (Word) office 365 dev account|Last Updated: 6/12/2017 | 1 Contributor Shows all headings up to the specified heading level and hides subordinate hea…
1.1 常见对象及含义 对象名 含义 application 整个Excel应用程序 window 窗口 worksheet  一个工作表 sheets 指定工作簿的所有工作表的合集 shaperange 形状区域 pivottable 数据透视表 workbook 工作簿 shape 绘图层中的对象 range 某一单元格.行.列.选定区域 name 单元格区域的定义名 chart 图表 filedialog 文件对话框 commandbarpopup 命令栏上一个弹出式控件 commandb…
初次编写程序并不一定能成功的运行,可能其中还存在逻辑上或语法上的错误,此时就需要逐步调试,排查错误,一般情况下,编写程序的工作讲究的是三分编程,七分调试. [代码区域] Sub Second() Dim Context As Integer '声明一个String类型变量context,用于保存对话框将要显示的内容 Dim title As String '声明一个String变量title,同于保存窗口标题内容 Dim a As Integer Dim b As Integer Dim c A…
Introduction You can write code in VBA that reads or modifies other VBA projects, modules, or procedures. This is called extensibility because extends the editor -- you can used VBA code to create new VBA code. You can use these features to write cus…
原始出处:www.cnblogs.com/Charltsing/p/SmartIndenter64.html 作者QQ: 564955427 最近更换电脑,改用64位office做开发.VBA代码美化成了一个问题.发邮件和stephen联系确认,Smart Indenter 3.5是VB开发的,不能被64位的office作为组件加载. 搜寻网上美化代码的插件无果,只好自己写了一个Smart Indenter 64位VBE插件.欢迎测试! 本插件免费使用,提供VBA代码缩进美化,统计,工程密码解密…
来源 更多vba相关 vba教程 VBA cheat sheet 1. VBA how to crack Excel Workbook/Worksheet password To remove the excel workbook or worksheet password requires opening the excel file as xml file and removing the password tags in the xml. Unlock Password protected…
compared all possibilities with a long test sheet: 0,140625 sec for lastrow = calcws.Cells.Find("*", [A1], , , xlByColumns, xlPrevious).row 0 sec for iLastRow = calcws.Cells(rows.count, "a").End(xlUp).row and numofrows = calcws.Cells.S…
参考:http://www.cnblogs.com/ahuo/category/72819.html http://blog.csdn.net/tenfyguo/article/details/8159176 http://blog.csdn.net/ylyuanlu/article/details/9115159 一.进程产生进程coredump 必备条件: ulimit-c x x取值 [,unlimited] 二.生成coredump文件 .指定格与路径生产coredump:需要自已健立m…
printf背后的故事 2014-01-14 21:54 by Florian, 41 阅读, 0 评论, 收藏, 编辑 printf背后的故事 说起编程语言,C语言大家再熟悉不过.说起最简单的代码,Helloworld更是众所周知.一条简单的printf语句便可以完成这个简单的功能,可是printf背后到底做了什么事情呢?可能很多人不曾在意,也或许你比我还要好奇!那我们就聊聊printf背后的故事. 一.printf的代码在哪里? 显然,Helloworld的源代码需要经过编译器编译,操作系统…