I am new to CW and just installed CW 2.1 evaluation copy. When I ran CWAI1
and attempted to stop it by CWAI1.Stop or just by ending the program, my
PC freezes and the only way out is hard reboot. Is this a common problem?
I have Win 98, NI PCI-6033E. The code in the app is as follows:
Private Sub Start_Click()
CWAI1.Device = DeviceNumEdit.Value
CWAI1.Channels(1).ChannelString = ChannelStringTextBox.Text
CWAI1.Configure
CWAI1.Start
blnStarted = True
End Sub
Private Sub Stop_Click()
CWAI1.Stop
CWAI1.Reset
blnStarted = False
End Sub