bwk5502
09-11-2000, 09:13 PM
My program works great on Windows 98 and 2000, but there is a problem with Windows 95.
The program installs okay, but I get Run time error 429 "ActiveX component can't create object." when I try to exit.
My Form_QueryUnload contains:
Set FileSystemObject = _
CreateObject("Scripting.FileSystemObject")
FileSystemObject.DeleteFile App.Path & "TUTalig1.dat"
On Error GoTo FileError1
'Create new TUTalign1.dat file and write data
Open App.Path & "TUTalig1.dat" For Random As #1 Len = Len(WriteOther(1))
WriteOther(1) = cboTimeDaylight.Text
...
I think the problem may be related to the above, but not knowing anything about ActiveX, I have no idea what is wrong. (I used the VB Package Wizard to make the setup.exe.)
Is this a common problem with Windows 95?
Bil
The program installs okay, but I get Run time error 429 "ActiveX component can't create object." when I try to exit.
My Form_QueryUnload contains:
Set FileSystemObject = _
CreateObject("Scripting.FileSystemObject")
FileSystemObject.DeleteFile App.Path & "TUTalig1.dat"
On Error GoTo FileError1
'Create new TUTalign1.dat file and write data
Open App.Path & "TUTalig1.dat" For Random As #1 Len = Len(WriteOther(1))
WriteOther(1) = cboTimeDaylight.Text
...
I think the problem may be related to the above, but not knowing anything about ActiveX, I have no idea what is wrong. (I used the VB Package Wizard to make the setup.exe.)
Is this a common problem with Windows 95?
Bil