Hi all,
I use the following code to add items to my table:
Private Sub Command40_Click()
On Error GoTo Err_Command40_Click
Dim ctl As Control
Dim varItm As Variant
Dim myStr As String
Dim strSQL As String
Set ctl = DaysOffSelect
For Each varItm In ctl.ItemsSelected
myStr = myStr & ctl.ItemData(varItm) & ","
Next varItm
myStr = Left(myStr, Len(myStr) - 1)
Me.DaysOff = myStr
DoCmd.GoToRecord , , acNewRec
Exit_Command40_Click:
Exit Sub
Err_Command40_Click:
MsgBox Err.Description
Resume Exit_Command40_Click
End Sub
This works just fine..what I want to add is something that after I click and add the new record that the selections made in the list box go away and it be clear again..Ive tried setting the textbox to nothing and refreshing the form but that does not see to do it.. any ideas?
I use the following code to add items to my table:
Private Sub Command40_Click()
On Error GoTo Err_Command40_Click
Dim ctl As Control
Dim varItm As Variant
Dim myStr As String
Dim strSQL As String
Set ctl = DaysOffSelect
For Each varItm In ctl.ItemsSelected
myStr = myStr & ctl.ItemData(varItm) & ","
Next varItm
myStr = Left(myStr, Len(myStr) - 1)
Me.DaysOff = myStr
DoCmd.GoToRecord , , acNewRec
Exit_Command40_Click:
Exit Sub
Err_Command40_Click:
MsgBox Err.Description
Resume Exit_Command40_Click
End Sub
This works just fine..what I want to add is something that after I click and add the new record that the selections made in the list box go away and it be clear again..Ive tried setting the textbox to nothing and refreshing the form but that does not see to do it.. any ideas?