|
-
Dec 8th, 2004, 06:35 AM
#1
Thread Starter
Junior Member
[Resolved] Looking for, and storing values contained in a variable
Hey Guyz, I have a bit of a problem.
I am trying to make a DVD database, which will have it's own search utility. The search will be guided by a keyword table in a access database.
What I want to do is when I type the title into the VB application (txtTitle.text) it will store it into a variable strTitle (which it does), but I want to write code that looks though strTitle and pulls out the individual words. For Example, if the title is "The Day After Tomorrow", how do I get the program to find and store each individual word from that variable into an array?
Is this possible
Thanks
Last edited by xKBx85x; Dec 10th, 2004 at 04:19 AM.
Reason: Resolved
You spend 4 hours on a peice of code that doesn't ****ing work! I love it!!!
-
Dec 8th, 2004, 06:58 AM
#2
PowerPoster
Re: Looking for, and storing values contained in a variable
Hi,
Dim array1() As String
array1=split(strTitle, " ")
Taxes
The more I learn about VB.NET the more I like dBaseIII Plus
The foregoing, whilst believed to be correct, is given without guarantee as to it's accuracy and entirely without recourse. You are required to decide for yourself whether or not it is suitable for your purposes and no liability for loss of any nature can be entertained.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|