Grid对象
ShowCount 窗格显示数据量,可与Grid.StartShowIndex配合可以实现画面平移,可读写
1,系统就是这么设计的,空隙一般给坐标用,防止文字的一半被遮住,这个无法更改。
2,全屏命令可以使用给菜单发消息来实现 ,参考 http://www.weistock.com/bbs/dispbbs.asp?boardid=5&id=8749&page=1&star=1
3,这个功能目前还有待完善,请等待日后的新版
快捷键VBA代码
sub TEST()
Dim WshShellSet
Set WshShell = CreateObject("WScript.Shell")
WshShell.AppActivate Application.TitleText
WshShell.SendKeys "+u"
END SUB
参考资料
.特殊功能键
对于需要与Shift、Ctrl、Alt三个控制键组合的按键SendKeys使用特殊字符来表示:
特殊控制键 特殊字符
Shift +
Ctrl ^
Alt %
如要发送的组合按键是同时按下Ctrl+E,需要用" WshShell.SendKeys "^e" "表示,