picturebox.width属性有大小限制吗?
picturebox.width属性有大小限制吗?
当在程序中需要设置picturebox.width=40000时会出错
[解决办法]
我这儿没报错:
- VB code
Private Sub Command1_Click() Picture1.Width = 50000End Sub
[解决办法]
Picture1.Width = 40000在我这没问题
再加两个0:Picture1.Width = 4000000在我这还没问题,大概长整没有问题。