If you are using API/SDK techniques, then use the GetWindowText() API to retrieve the text.
Finally, write the text to a file using standard file techniques, for example:
Code:
' Psuedo code - lets assume a$ contains the text from the edit control x& = FREEFILE OPEN "MYFILE.DAT" FOR OUTPUT AS #x& PRINT #x&, a$ CLOSE #x&
------------------
Lance
PowerBASIC Support
mailto:[email protected][email protected]</A>
Leave a comment: