标签:des style color os io ar window type
error播放出错提示音
errorPromptVoice()
返回一个字符串,其中包含从某个字符串右端开始的指定数量的字符
Microsoft.VisualBasic.Right(strBt45TesterVersion, 4)
vb窗口永远最大化防止双击最大化
1.
将窗体的windowstate属性设置为maximized
2.
拦截双击标题栏、移动窗体的系统消息
Protected Overrides Sub WndProc(ByRef m As Message)
If m.Msg <> Convert.ToInt32("0xA3", 16) And m.Msg <> Convert.ToInt32("0x0003", 16) And m.WParam <> CType(Convert.ToInt32("0xF012", 16), IntPtr) Then
MyBase.WndProc(m)
End If
End Sub
标签:des style color os io ar window type
原文地址:http://www.cnblogs.com/QUSIR/p/3874292.html