Link to home
Start Free TrialLog in
Avatar of crystalsoft
crystalsoft

asked on

how to check records from access database using timer

Hello experts
I am developing an application in vb6
What i want is how to check records exists or not from access database  using timer.
Thanks..
ASKER CERTIFIED SOLUTION
Avatar of rajvihari
rajvihari
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Scott McDaniel (EE MVE )
If you add a Timer control to your form, you can put code like what rajvihari suggests in the Timer event of that control. It would then fire based on the Interval setting of that control.

I'd certainly not use the ADO Data Control to do this, as it is entirely unnecessary, but that may not be what rajvihari was referring to.
Avatar of crystalsoft
crystalsoft

ASKER


LSMConsulting
Can you Please suggest me your idea,
Without ADO how can i do this ?

You MUST use ADO (or some other connection library) to do this, but you do NOT have to use the ADO Data Control (an ActiveX control in the VB6 toolbox) to do this.


LSMConsulting :      Rajvihari Suggested for connection, Same method i am using for connecting database,

But i want to learn from you guys how can i connect without using ADODC,

I dont know any other method except ADODC, this is the reason i want to learn...... :-)


Crystalsoft
 
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial

Thanks for solution