Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K
~6K People Reached
Favorite Forums

9 Posted Topics

Member Avatar for ykornx

Sounds to me you want to have a TextChanged event wired to TextBox_tp_name. You can try declaring TextBox_tp_name globally using WithEvents, which lets you write event handling code for it. You can also use the AddHandler statement to wire an event handler to a locally declared version of Textbox_tp_name instead. …

Member Avatar for ykornx
0
1K
Member Avatar for Ryveris

Code tags are you friend for posting code. :) 1. What private sub for the textboxes, exactly? A .TextChanged event, or what? 2. I'm assuming you've loaded your combobox with the 12 months in design view (under the Items property). If so, it's easy to access the individual items programmatically. …

Member Avatar for Ryveris
0
157
Member Avatar for phatJacob07

I usually feel pretty bad asking simple questions like this, but I've a deadline that's fast approaching. What, if anything, is wrong with this Update statement? [CODE]"Update ScoutInfo Set YearID = 20092010, GSUSAID = 1, FName = 'Jacob', LName = 'Lowe', DoB = '10/16/1989', Grade = '12', Level = 'Ambassador', …

0
90
Member Avatar for ShemoPT

Your counter [code=vb]Dim i as Integer[/code] doesn't do anything for you, I'm afraid. If you want to retrieve the UserID and UserName, and assuming they're the only two fields retrieved, simply do this: [code=vb] Dim ReadUserName as String Dim ReadUserID as String If Reader.Read then ReadUserID = Reader(0) 'This is …

Member Avatar for G_Waddell
0
3K
Member Avatar for G_Waddell
Member Avatar for songweaver

Can you post the definition of the GetDisplayText function? EDIT: Just realized the problem was solved. ^_^; Nevermind!

Member Avatar for phatJacob07
0
113
Member Avatar for hmmmm

All I see is that you're missing a single quotation mark ( ' ) right before the final parenthesis in your SQL statement. [code=vb]query = New OleDbCommand("INSERT INTO studenttable(sname,scourse,syear,ssemestor,sgrade)values('" & TextBox1.Text & " ',' " & TextBox2.Text & " ',' " & TextBox3.Text & " ',' " & TextBox4.Text & …

Member Avatar for SadOldMisterHam
0
186
Member Avatar for NorthDakota
Member Avatar for NorthDakota
0
242
Member Avatar for phatJacob07

First of all, I'd like to say hello to the Daniweb community as a first-time poster. I'm sorry if this is a common error for you folks to deal with, but my preliminary search of the forum didn't really help me all that much. So here we are. Onwards to …

Member Avatar for phatJacob07
0
119

The End.