I want to open a file on my VB6 application by pressing a command. The file is a filetype read by another program. I want it to open it and the program that reads the filetype should open as well because when it finds that filetype it opens automatically. Can anyone help me with this I'm kind of a newb at VB6 (just got it yesterday).
|
|
I'm kind of lost on the details of your requirement, but in general to launch a file from within VB6 you can use I'm not sure where the best reference is for this, but I suppose you can start here. Edit:
to this:
Note what I changed: Which leads to something else you need to check on your machine (and the machines you'll use your program on). The file extension .file should be associated with whatever program you want to launch with your program. Edit (Sept 9) OK, let's see if we get the simplist implementation of Create a new VB6 project (Standard EXE) and add to Form1 one button named smb1. Go to the form's Code View and copy and paste this code (and only this code):
Make sure there's a text file called my.txt in your "c:\hi" folder. Run the program and click the button. It should open the text file with the default text file editor program you have configured on your machine (wuch as Notepad). If it doesn't please tell me what error you get and on which line the error occurs. Also, check the Immediate Window. The Immediate Window I believe will be visible as soon as you start your program and will remain visible as long as your program is running. If your code reaches and runs past the line with If the code works, we can think about changing the program to work on the file you need it to work on - on "C:\hi\my.file". But first what happens when you double click the file in Windows Explorer? If the file opens up then we know there's a program that your system associated with files having the .file extension. If the file does not open you need to associate a program with the .file extension. Check Windows help for more. Once we're set, in your test program change the code in your smb3 Click Event to:
Run this and click the program. The file should open. If not, tell me what error you get and where, and tell me what (if anything) is in the Immediate Window. If the program does open then you have in the button's click event and your declaration of The change you must make is in the button's click event. We'll remove the debugging code so you end up with this:
The changes you should make involve some basic error handling around the call to |
||||||||||
|
