How can I get my app to check to see if there is a CD in the CD Rom drive. If there is a CD inserted I want the app to do this:
and if there is no CD do this:
Jonathon.
Code:
Test = Environ("SystemRoot")
If Dir("D:\Search") <> "" Then
brwWebBrowser.Navigate ("D:\Parts\index.htm")
Else
Form1.Show
End If
and if there is no CD do this:
Code:
Form3.Show
Jonathon.