请教TEXT的只读问题
请教各位高手我在测试的时候,报警说COMBOBOX的'text'是只读属性,
要怎么才可以把TEXT变成不是只读的?
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
对,你把 ComboBox 的 Style 属性
设置为 0 和 1 都可以