G
Guest
Private Sub chkAllData_Click()
If chkAllData.Value = -1 Then
cmboSymbol.RowSource = "SELECT distinct [TradeDiary].[Symbol] FROM
[TradeDiary] " & _
" WHERE TradeDiary.Action <> 'Ignore' ORDER BY
[Symbol];"
cmboSymbol.Requery
Me.Form.Refresh
When i click on a check box, i want to run a different query and return
different rows to my combo box. i tried the above but it still does not work.
how do i fix it
thanks in advance
If chkAllData.Value = -1 Then
cmboSymbol.RowSource = "SELECT distinct [TradeDiary].[Symbol] FROM
[TradeDiary] " & _
" WHERE TradeDiary.Action <> 'Ignore' ORDER BY
[Symbol];"
cmboSymbol.Requery
Me.Form.Refresh
When i click on a check box, i want to run a different query and return
different rows to my combo box. i tried the above but it still does not work.
how do i fix it
thanks in advance