help with textbox 
Author Message
 help with textbox

HI,
Here is my prob..
I have got a text box and i let the user type whatever and then save it.
I can get the file then to load into my program.
It is all fine up to this point
I just cant get the text to show up in the text box!!

HELP HELP HELP

Please

thanx



Sat, 27 Oct 2001 03:00:00 GMT  
 help with textbox
Quote:
>I have got a text box and i let the user type whatever and then save it.
>I can get the file then to load into my program.
>It is all fine up to this point
>I just cant get the text to show up in the text box!!

This should work..

Open {text file} For Input As #1
Dim line, txt As String
Do Until EOF(1)
    Line Input #1, line
    txt = txt & chr(13) & chr(10) & line
Loop
Close #1
textbox1.text = txt



Sat, 27 Oct 2001 03:00:00 GMT  
 help with textbox
Start breaking your problem down by stages. Elimination is the key to
bug hunting,

Firstly, open the file where the text is saved in Notepad and see if
it really has saved. This will tell you if the problem is with the
saving or the loading.

If so, put a line imidetaly after the one where you load the data
saying MSGBOX (what ever variable) to see if your program is loading
the data fine. This will tell you if the problem is with the loading
or the displaying.

and so on, I can't go any further really without seeing your code.
Just keep breaking it down into steps, checking them to see if each
step works until you find the one that doesn't.

James B.

P.S. Don't post three times, we can all read fine the first time.

-------------------------
Remove NOJUNKFOR to email



Sat, 27 Oct 2001 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Help! Need help with TextBox Cntrl

2. Help in Textbox

3. Help with textbox/rich scrolling to a position

4. HELP Formatting TextBox for whole numbers

5. need help with textbox validation problem

6. Help with textbox & date please

7. Newbie Needs Help on Textbox

8. Newbie needs help with TextBox

9. Please help with TextBox / Label properties

10. Help: Custom TextBox and ComboBox control issue

11. Help with TextBox

12. Help on textbox change event anomolies

 

 
Powered by phpBB® Forum Software