Search and Replace string in a text box 
Author Message
 Search and Replace string in a text box

I am openning a .text file into a text box and display on the form.

Just before displaying it on the form I need to search for a date and
replace it.  Any sugestions ?

This is a part of my code

Open gs_PanPath & "PANRPT.TXT" For Input As mn_RptFile
TextReport.Text = Input$(LOF(mn_RptFile), mn_RptFile)    'Read report
into text box
Close mn_RptFile

Thanks

Sent via Deja.com http://www.*-*-*.com/
Share what you know. Learn what you don't.



Sun, 20 Jan 2002 03:00:00 GMT  
 Search and Replace string in a text box

x = Instr(TextReport, "DATE")
textreport.selstart = x
textreport.sellen = len("DATE")
textreport.seltext  = "REPLACESTRING"

Quote:

> I am openning a .text file into a text box and display on the form.

> Just before displaying it on the form I need to search for a date and
> replace it.  Any sugestions ?

> This is a part of my code

> Open gs_PanPath & "PANRPT.TXT" For Input As mn_RptFile
> TextReport.Text = Input$(LOF(mn_RptFile), mn_RptFile)    'Read report
> into text box
> Close mn_RptFile

> Thanks

> Sent via Deja.com http://www.deja.com/
> Share what you know. Learn what you don't.

--
Get Paid to Surf the Web:
http://www.alladvantage.com/go.asp?refid=APP000

Hey! My inglis is berfekt, isnt it?



Sun, 20 Jan 2002 03:00:00 GMT  
 Search and Replace string in a text box

Consider reading the file into a string variable, replacing the date in the
variable, then assigning the variable to the textbox's text property.
Please see the Replace() function if using VB6.

--A



Sun, 20 Jan 2002 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Search for and Replace strings in a text file

2. Searching And Replacing Strings Within A Text File

3. Searching And Replacing Strings Within A Text File

4. Search and replace text boxes

5. Search and replace in a rich text box

6. searching for a string within a text box..

7. Text box string searching

8. How to search a text file and replace text

9. How to search and replace text in text file

10. How to search and replace text in text file

11. How to search and replace text in text file

12. How to replace text string in text file

 

 
Powered by phpBB® Forum Software