|
-
May 17th, 2005, 06:00 AM
#1
Thread Starter
Lively Member
Problem with code... [RESOLVED BY MYSELF]
VB Code:
If txtKeyWord1.Text = txtKeyWord1.Text.ToUpper.Equals("CONSISTANT") Then
txtKeyWord1.BackColor = Color.FromArgb(192, 192, 255)
Else : txtKeyWord1.BackColor = Color.FromArgb(255, 192, 192)
End If
Will this code actually compare the result in txtKeyWord1 with the hard-coded result as you can see in uppercase? It doesn't seem to be working... Thanks.
Last edited by martw; May 17th, 2005 at 06:52 AM.
Reason: Resolved by myself
I never know what to put in this section...

So sue me... ... ... I'm just kidding...
www.fat-pie.com Flash Movies... You gotta see 'em to believe 'em!
-
May 17th, 2005, 06:08 AM
#2
Thread Starter
Lively Member
Re: Problem with code...
VB Code:
If txtKeyWord1.Text.ToUpper.Equals("CONSISTANT") Then
txtKeyWord1.BackColor = Color.FromArgb(192, 192, 255)
Else : txtKeyWord1.BackColor = Color.FromArgb(255, 192, 192)
End If
Wait, will this one work right? thanks
I never know what to put in this section...

So sue me... ... ... I'm just kidding...
www.fat-pie.com Flash Movies... You gotta see 'em to believe 'em!
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
|