I'd like to suggest that you are making yourself a huge amount of work
without much value.
VB controls do not expose the same events as Access controls, so the
techniques which work in Access will not, in general, work in Visual Basic.
Here's my two cents' on how to manage your transition:
Leave your Access application as it is.
Write a VB front end, using ADO to access the same Jet tables you're
using now.
Then, if need be (I haven't heard an explanation of the need for this),
upsize the Jet tables to SQL Server. (There's a wizard which will do this
for you.)
If you need an ASP front end, write that.
If the application works well in Access, I'd suggest leaving the data
tables in Jet. MDAC (which comes installed on every OS from Win98 on) is
all you need to access a Jet table - quite a savings to your customers over
having to purchase a SQL Server license to run your product!
HTH
- Turtle
Sean Henry said:
I am transitioning out of Access within the next year or so. My app is
huge, and I am going to work through the process of unbinding everything,
and switch to ADO as well eventually, so I can move the back end to SQL, and
develo VB front ends, ASP etc...