Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: OuTLawZGoSu on December 18, 2003, 01:33 PM

Title: Help....
Post by: OuTLawZGoSu on December 18, 2003, 01:33 PM
How can i make it so, when you press a button, it opens a text file(txt), searches for specific text, then matches it with everything in text1. if it all matches, show a msgbox.

thx.
Title: Re:Help....
Post by: effect on December 18, 2003, 05:24 PM
pscode.com
Title: Re:Help....
Post by: Grok on December 18, 2003, 05:27 PM
Quote from: OuTLawZGoSu on December 18, 2003, 01:33 PM
How can i make it so, when you press a button, it opens a text file(txt), searches for specific text, then matches it with everything in text1. if it all matches, show a msgbox.

thx.

Easy.

1.  Make a button.
2.  Add code to the button to open a text file and read the contents.
3.  While reading the contents, search for the specific text.
4.  I dont understand the "matches it with everything in text1" part.
5.  If it all matches, show a msgbox.

Hope this helps.
Title: Re:Help....
Post by: effect on December 18, 2003, 05:37 PM
lol.
Title: Re:Help....
Post by: OuTLawZGoSu on December 18, 2003, 06:26 PM
Quote from: Grok on December 18, 2003, 05:27 PM
Easy.

1.  Make a button.
2.  Add code to the button to open a text file and read the contents.
3.  While reading the contents, search for the specific text.
4.  I dont understand the "matches it with everything in text1" part.
5.  If it all matches, show a msgbox.

Hope this helps.

I got everything exept for the search for the text code. I dont know how to search for the text in the text file.
And number 4, i meant,  "If text1.text = Searched text Then"

Title: Re:Help....
Post by: effect on December 18, 2003, 06:44 PM
i suggest looking into the LIKE operator?
Title: Re:Help....
Post by: Grok on December 18, 2003, 07:18 PM
Quote from: OuTLawZGoSu on December 18, 2003, 06:26 PM
Quote from: Grok on December 18, 2003, 05:27 PM
Easy.

1.  Make a button.
2.  Add code to the button to open a text file and read the contents.
3.  While reading the contents, search for the specific text.
4.  I dont understand the "matches it with everything in text1" part.
5.  If it all matches, show a msgbox.

Hope this helps.

I got everything exept for the search for the text code. I dont know how to search for the text in the text file.
And number 4, i meant,  "If text1.text = Searched text Then"



InStr
InStrRev
StrComp
Like

Those are sufficient for most tasks.
Title: Re:Help....
Post by: effect on December 18, 2003, 08:40 PM
Sorry refer to my post below , bashed the keyboard and accidently posted and didnt realise =/ My bad
Title: Re:Help....
Post by: effect on December 18, 2003, 08:44 PM
Against better judgement im gonna post this up , maybe u can find a better example somewhere else


Dim Scompare as Long
Dim String1 as String
Dim String2 as String

Scompare  = InStr(String1, String2, vbTextCompare)
    IF Scompare = > 0 Then
        dowhateverupleaserighthere
    End if


there u go knock yourself out