请教TEXT的只读问题
请教各位高手我在测试的时候,报警说COMBOBOX的'text'是只读属性,
要怎么才可以把TEXT变成不是只读的?
2006-02-27 17:46
StrFile = "C:\Test.txt"
Set ObjWMI = CreateObject("Scripting.FileSysTemObject"
Set ObjFiles = ObjWMI .GetFile("C:\Test.txt")
If ObjFiles.Attributes And 1 Then
ObjFiles.Attributes = ObjFiles.Attributes Xor 1
End If
Set ObjWMI = Nothing
Set ObjFiles = Nothing
2006-03-12 16:18
2006-03-12 17:34
对,你把 ComboBox 的 Style 属性
设置为 0 和 1 都可以

2006-03-12 20:42