|
-
May 4th, 2000, 07:50 AM
#1
Thread Starter
Lively Member
I need help!!! I want to export a certain file type to launch in Notepad not its original file.
Frankie Weindel
VB 6 Learning Edtion SP3
-
May 4th, 2000, 08:54 AM
#2
Hyperactive Member
I'm not sure exactly what you mean, hope this is what you wanted:
Shell ("notepad xxx")
Where xxx is the full path of the file.
"People who think they know everything are a great annoyance to those of us who do."
-
May 4th, 2000, 01:13 PM
#3
transcendental analytic
I'm not sure either but if you want to im sure you can manipulate registry and replace the txt keys with your own format
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
May 4th, 2000, 11:54 PM
#4
Thread Starter
Lively Member
NO I mean like opening a doc. file in notepad and not in wordpad
Frankie Weindel
VB 6 Learning Edtion SP3
-
May 5th, 2000, 03:44 AM
#5
If it's in RichTextformat, you're goning to end up with a bunch of scribbles if you open it n ASCII text.
If not, you could do what kedaman said and change the registry or you could open the file, get the text and put it on the clipboard, Next, Shell Notepad and send the Paste command (Ctrl V) and the text will appear in Notepad!
It's not the best way, but it works.
-
May 5th, 2000, 05:08 AM
#6
transcendental analytic
Also, You can load the file into a richtextbox and copy the richtextbox.text and save it to a tempfile that you open with notepad
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
May 5th, 2000, 09:05 AM
#7
Call Shell("Notepad.exe "C:\Autoexec.bat", vbNormalFocus)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|