Click here to Skip to main content
15,906,296 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: how to catch events of checkboxes added at runtime Pin
Dave Kreskowiak19-Feb-08 11:10
mveDave Kreskowiak19-Feb-08 11:10 
QuestionRe: how to catch events of checkboxes added at runtime Pin
lesstraveled20-Feb-08 4:07
lesstraveled20-Feb-08 4:07 
GeneralRe: how to catch events of checkboxes added at runtime Pin
Dave Kreskowiak20-Feb-08 5:14
mveDave Kreskowiak20-Feb-08 5:14 
GeneralRe: how to catch events of checkboxes added at runtime Pin
nlarson1120-Feb-08 5:18
nlarson1120-Feb-08 5:18 
AnswerRe: how to catch events of checkboxes added at runtime Pin
lesstraveled20-Feb-08 14:18
lesstraveled20-Feb-08 14:18 
QuestionGroupBox Binding to Access Database [modified] Pin
IvanIT19-Feb-08 6:20
IvanIT19-Feb-08 6:20 
GeneralRe: GroupBox Binding to Access Database Pin
cstrader23219-Feb-08 6:26
cstrader23219-Feb-08 6:26 
GeneralRe: GroupBox Binding to Access Database Pin
IvanIT19-Feb-08 6:44
IvanIT19-Feb-08 6:44 
Sorry, I didnt make the issue clearer. The code i used is exactly as you suggested, but I am not getting the desired result. Instead of getting the values "Non Exempt" or "Exempt", I get "Exempt Status" which is the text value of the groupbox.

'declare radio buttons for Exempt values
If radNonExempt.Checked = True Then
grbExemptStatus = "Non Exempt"
End If

If radExempt.Checked = True Then
grbExemptStatus = "Exempt"
End If

strEmployee = "INSERT INTO tblEmployees(" & _
"EmployeeNumber, FirstName, LastName, " & _
"HireDate, ExemptStatus, " & _
"Title, BaseSalary) VALUES('" & _
txtEmployeeNumber.Text & "', '" & txtFirstName.Text & _
"', '" & txtLastName.Text & "', '" & _
dtpHireDate.Value.ToString("MM/dd/yyyy") & "', '" & _
grbExemptStatus & "', '" & _
txtTitle.Text & "', '" & txtBaseSalary.Text & "')"
GeneralRe: GroupBox Binding to Access Database Pin
cstrader23219-Feb-08 6:55
cstrader23219-Feb-08 6:55 
GeneralRe: GroupBox Binding to Access Database Pin
IvanIT19-Feb-08 7:03
IvanIT19-Feb-08 7:03 
GeneralObject reference not set to an instance of an object error Pin
Aptiva Dave19-Feb-08 5:53
Aptiva Dave19-Feb-08 5:53 
GeneralRe: Object reference not set to an instance of an object error Pin
cstrader23219-Feb-08 6:06
cstrader23219-Feb-08 6:06 
GeneralRe: Object reference not set to an instance of an object error Pin
Aptiva Dave19-Feb-08 6:38
Aptiva Dave19-Feb-08 6:38 
GeneralRe: Object reference not set to an instance of an object error Pin
cstrader23219-Feb-08 6:47
cstrader23219-Feb-08 6:47 
GeneralRe: Object reference not set to an instance of an object error Pin
Aptiva Dave19-Feb-08 6:50
Aptiva Dave19-Feb-08 6:50 
GeneralRe: Object reference not set to an instance of an object error Pin
cstrader23219-Feb-08 7:08
cstrader23219-Feb-08 7:08 
GeneralRe: Object reference not set to an instance of an object error Pin
Aptiva Dave19-Feb-08 7:32
Aptiva Dave19-Feb-08 7:32 
GeneralRe: Object reference not set to an instance of an object error Pin
Dave Kreskowiak19-Feb-08 8:44
mveDave Kreskowiak19-Feb-08 8:44 
GeneralRe: Object reference not set to an instance of an object error Pin
Aptiva Dave19-Feb-08 8:47
Aptiva Dave19-Feb-08 8:47 
GeneralRe: Object reference not set to an instance of an object error Pin
Dave Kreskowiak19-Feb-08 11:03
mveDave Kreskowiak19-Feb-08 11:03 
GeneralRe: Object reference not set to an instance of an object error Pin
Aptiva Dave19-Feb-08 11:09
Aptiva Dave19-Feb-08 11:09 
GeneralRe: Object reference not set to an instance of an object error Pin
cstrader23219-Feb-08 12:35
cstrader23219-Feb-08 12:35 
GeneralRe: Object reference not set to an instance of an object error Pin
Aptiva Dave19-Feb-08 17:26
Aptiva Dave19-Feb-08 17:26 
GeneralRe: Object reference not set to an instance of an object error Pin
Dave Kreskowiak19-Feb-08 14:16
mveDave Kreskowiak19-Feb-08 14:16 
QuestionModify Form1 control from BGW on Form 2? Pin
cstrader23219-Feb-08 3:28
cstrader23219-Feb-08 3:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.