Hello!
I have a financial database which I'm using to do bank account reconciliations.
I'm trying to build a form which only has 4 objects: a ListBox, a TextBox and 2 buttons.
The purpose of this form is to retrieve multi-selection items from the ListBox in the TextBox seperated by a comma, in order to use a query with multiple filters.
I went to http://support.microsoft.com/Default.aspx?scid=kb;en-us;827423&x=13&y=10 but I've stumbled across an error on VBA.
I tried only with
but everytime I press the button I keep receiving the invalid procedure call or argument error...
Any help? Am I forgetting to do something? I tried on Northwind and it worked....
I have a financial database which I'm using to do bank account reconciliations.
I'm trying to build a form which only has 4 objects: a ListBox, a TextBox and 2 buttons.
The purpose of this form is to retrieve multi-selection items from the ListBox in the TextBox seperated by a comma, in order to use a query with multiple filters.
I went to http://support.microsoft.com/Default.aspx?scid=kb;en-us;827423&x=13&y=10 but I've stumbled across an error on VBA.
I tried only with
Code:
Private Sub clrList_Click()
End Sub
Any help? Am I forgetting to do something? I tried on Northwind and it worked....