[休闲]使用GetWindowText遇到的怪事
dim hFore as longdim strTitle as string
我用GetForegroundWindow()得到前台窗口的句柄后,保存在hFore中
然后用GetWindowText想得到前台窗口的标题
GetWindowText hFore,strTitle,100
结果用
msgbox strTitle测试发现居然是空串
百思不解,后来把
dim strTitle as string改成定长字符串后终于成功啦
dim strTitle as string * 255