Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Converting Existing Access front end to VB Project

Status
Not open for further replies.

MooseMan

IS-IT--Management
Joined
Aug 25, 2001
Messages
63
Location
CA
We have inherited another Access database from a defunct department which needs revamping. It is split into a FE and a BE. It is written exclusively in Access using the built in controls and wizards and VBA code.

Is it possible to convert the front end into a VB project and then using connection properties to link to the tables? As a result we would do all our development in the VB6 environment which for us would be preferable.

Any advice would be appreciated.

Thanks Mooseman
 
I don't believe it's possible. Access is a mish-mash of various languages and won't translate to any single language very well. I suspect the native code of Access is C based, but it obviously interfaces with SQL and VBA so conversion would be impractically difficult.

Uncle Jack
 
VBA is a sub set of VB, and many of the objects, properties and methods will be familiar to you if you're a VB Guy.

VB has the added advantage of Control Arrays, which Access does not support.

However, you will have to create all of the forms and reports from scratch. You can use the ADODB Data Access Object, Data Grid, Etc. to get at the data in the original Access back end.

Plus side is it will be robust, and distributable. Minus is it will be a lot of work.

My two cents.



Tyrone Lumley
augerinn@gte.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top