Hello,
On the MSHFlexGrid Click I am trying to populate text boxes and checkboxes.
I figured out how to put text into a text box but not how to set the value of a checkbox.
Here is the code:
Thank you for any suggestions.
Sincerely,
Steve
Sincerely,
Steve Funk
On the MSHFlexGrid Click I am trying to populate text boxes and checkboxes.
I figured out how to put text into a text box but not how to set the value of a checkbox.
Here is the code:
Code:
Private Sub MSHFlexGrid1_Click()
With MSHFlexGrid1
.Col = 0
txtJobID.Text = .Text
.Col = 1
txtCompany.Text = .Text
.Col = 2
txtContact.Text = .Text
.Col = 3
txtTitle.Text = .Text
.Col = 4
txtOpenDate.Text = .Text
.Col = 5
txtAddress.Text = .Text
.Col = 6
txtPhone.Text = .Text
.Col = 7
txtFax.Text = .Text
.Col = 8
txtEmail.Text = .Text
.Col = 9
txtURL.Text = .Text
.Col = 10
txtCorpURL.Text = .Text
.Col = 11
chkResumeSent.Value = .Text
.Col = 12
chkFirstCall.Value = .Text
.Col = 13
chkSecondCall.Value = .Text
.Col = 14
chkLastCall.Value = .Text
.Col = 15
chkActionPending.Value = .Text
.Col = 16
txtInterviewDate.Text = .Text
.Col = 17
chkFollowUpCall.Value = .Text
.Col = 18
chkFollowUpCall2.Value = .Text
.Col = 19
txtHEarFromDate.Text = .Text
.Col = 20
txtNotes.Text = .Text
End With
End Sub
Thank you for any suggestions.
Sincerely,
Steve
Sincerely,
Steve Funk