新版本的Visual Basic 2010,你会发现原来用于关闭窗口的Unload Me无法使用了...
没错,Unload Me 现在已经升级为Me.Close()
看到了没有,Visual Basic 2010类吧。
其实,你再往下看... 你会发现Visual basic 2010更类 VB6: List1.AddItem "item1" VB2010: List1.Items.Add ("item1") 呵呵,类吧
类似的还有List1.ListCount,新的写法是 List1.Items.Count
Clear都升级了,这是绝对的类。List1.Clear ,新写法是List.Items.Clear 被Clear的是Items,好准确。顺便提一下,Combo Box和List Box应该是做了相同的升级。
应该有人跟我一样,发现Form_Unload在vb2010中已分解成2个函数。Form_Closing,FormClosed 在原来的Form_Unload中的Cancel=1 ,则要放在Form_Closeing中即可。Cancel=1也要改写成e.Cancel = True
原文链接:/vb/259398.html