If I have a text file and I want to show it in Notepad, I can do:
Code:
Dim RetVal As Long
RetVal = Shell("NOTEPAD.EXE " & "C:\Test.txt", 1)
Is there any 'generic reader' I can call from VB 6 that could show me any of the files?
Also, it would be nice if the location of the file would NOT be revealed to the user (like in recently open files), but this part is not that crucial.
Have fun.
---- Andy