Question

  Asked: May 17 2008   1:38 AM GMT
  Asked by: Morfs


how to fetch data from notepad in vb6?


Data, Notepad, VB6, Visual Basic 6, Visual Basic

just wanna know if there are ways to retrieve data from notepad and use it in my v6 program.

Subscribe to Alerts! Get questions and answers delivered to your Inbox.


E-mail me updates on this question



   SUBSCRIBE

hidden modal window

Answer Wiki (Improve, edit or add to this answer)


 RATE THIS ANSWER
+1
Click to Vote:
  •   1
  •  0



I don't know if VBA has specific hooks for Notepad, but Notepad docs are just plain text, which is fairly easy to retrieve in VBA. Microsoft has a page on using FileSystemObject to open text files that contains instructions and sample code that will probably set you on your path. HTH.

Hi Morfs,
Same as Yuval I don't know if Notepad exports an object model. May be you can find it in the references of your VB environment, together with ADO and the like.
But if you know the name of the file being edited then you can use the VB "sendkeys" command to make Notepad select all the text and copy it in the clipboard, for example.
To do sendkeys you typically need to know the text in the window's bar, for example "thefile.txt - Notepad" (open a fil ein Notepad and take note of the content in the title bar).
Notice that the keys you send to the program are language-dependent. For example to select the complete content in an English Windows the command is control-a and in Spanish it's control-e.
Also note that there could be more than one window with the same title.
Moreover, remember thet VB has a control, a rich text editor, with more or less the same functionality as Notemap, and depending on your app you might host the text edition instead of spawning a Notepad. It it opens bacause the user double-clicks a spacial file type then associate that file type so it will open your app.
--
Juan Lanus
  • AddThis Social Bookmark Button

Browse more Questions and Answers on DataManagement, Microsoft Windows and Development.

Looking for relevant DataManagement Whitepapers? Visit the SearchDataManagement.com Research Library.


Discuss This Answer


You must be logged-in to discuss a question. Log-in/Register