Hi guys i need some help...
Right now i want to multiplying values from a textbox and a listbox into a new textbox,the condition are:
1. the listbox has a row source from a query,so the data that displayed in
that listbox is based on a result of a query that sum value from a table.
2. user directly input values into the result textbox
I have tried with directly multiplying them from the new textbox Control source but failed, and i also try adding a button with event on click goes like this :
Private Sub Command30_Click()
result_txt.Text = input_txt.Text * ListBox_query.Value
End Sub
and it also failed can anybody give a help?
Right now i want to multiplying values from a textbox and a listbox into a new textbox,the condition are:
1. the listbox has a row source from a query,so the data that displayed in
that listbox is based on a result of a query that sum value from a table.
2. user directly input values into the result textbox
I have tried with directly multiplying them from the new textbox Control source but failed, and i also try adding a button with event on click goes like this :
Private Sub Command30_Click()
result_txt.Text = input_txt.Text * ListBox_query.Value
End Sub
and it also failed can anybody give a help?