I have a simple question that I thought I'd know how to do. I have an OnTimer Event on my form that needs to have a loop. This loop will run as many times as rows there are in table A. So i thought i could declare an integer and do
Dim num As Integer
num="Select count(*) from Table A"
when i do that i get type mismatch. can anyone tell me how to fix this.
Dim num As Integer
num="Select count(*) from Table A"
when i do that i get type mismatch. can anyone tell me how to fix this.