473,394 Members | 1,735 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Converting an Access Application

Hi all,

Not sure if this is feasible or not, but I'm gonna ask anyway.

My company has developed an application using MS Access 2k as a front end to
SQL Server 2000. As we grow, and add customers (who are also growing)
Access's limitations soon come to the fore front of most of our problems.

Is there a relatively easy way to convert from Access 2k to Vb .Net or even
VB 6 without basically re-writing the whole app?

I am thinking there isn't, but I thought I would ask those who are smarter
then I in this arena.

Thanks In Advance (even if it is bad news)

Randy
Nov 20 '05 #1
5 1255
I have done it once and it was a total re-write. Took about 4-6 months.

The learning curve of .Net was steeper than I thought.
This is a project you should do as a way to learn .Net.
Don't do it under a time crunch.

Just my $.02.
--
Joe Fallon

"Randy" <ra***@NoSpamForMe.com> wrote in message
news:10*************@corp.supernews.com...
Hi all,

Not sure if this is feasible or not, but I'm gonna ask anyway.

My company has developed an application using MS Access 2k as a front end to SQL Server 2000. As we grow, and add customers (who are also growing)
Access's limitations soon come to the fore front of most of our problems.

Is there a relatively easy way to convert from Access 2k to Vb .Net or even VB 6 without basically re-writing the whole app?

I am thinking there isn't, but I thought I would ask those who are smarter
then I in this arena.

Thanks In Advance (even if it is bad news)

Randy

Nov 20 '05 #2
I have learned some .Net, and I am pretty sure that the .Net conversion
would be horrendous. The only thing that sucks is that I would be doing it
on my own time. Well ... it would be cool to do it, and show it to my boss
.... but the time away from familky would kind of suck.

Thanks for yout $.02 - it echoes mine. Which is always nice!

Randy

"Joe Fallon" <jf******@nospamtwcny.rr.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I have done it once and it was a total re-write. Took about 4-6 months.

The learning curve of .Net was steeper than I thought.
This is a project you should do as a way to learn .Net.
Don't do it under a time crunch.

Just my $.02.
--
Joe Fallon

"Randy" <ra***@NoSpamForMe.com> wrote in message
news:10*************@corp.supernews.com...
Hi all,

Not sure if this is feasible or not, but I'm gonna ask anyway.

My company has developed an application using MS Access 2k as a front end
to
SQL Server 2000. As we grow, and add customers (who are also growing)
Access's limitations soon come to the fore front of most of our

problems.
Is there a relatively easy way to convert from Access 2k to Vb .Net or

even
VB 6 without basically re-writing the whole app?

I am thinking there isn't, but I thought I would ask those who are smarter then I in this arena.

Thanks In Advance (even if it is bad news)

Randy


Nov 20 '05 #3
The bad news is that you are going to have to face the fact that you *will*
have to rewrite it if you want to eliminate Access as it gets more and more
stretched - which from what you've said, means you will have to rewrite it.
The good news is that "re-writing" something in another language means just
that - re*writing* it. It doesn't mean re-researching application layout,
nor re-analyzing requirements, nor does it mean re-figuring-out algorithms -
you can take consolation in the fact that you don't have to go through the
same amount of work again to achieve the same-thing-only-different. Class
structure, control of flow design and possibly even tangible things such as
any ocxs / dlls there might be, can be kept.
You can optimize more aswell, by using SqlConnections which bypass OLEDB if
you're using SQL server like you say, the best approach is to use these
specific SQL server connections and use stored procedures for ALL data
access (it may sound hard at first but there's very few applications that
can't eliminate the need for dynamic SQL).
Given that you've already got this lot figured out, it would be a better
than average opportunity to learn .NET, if you don't already know it - or
more of it if you do. But use C# not VB.NET - VB.NET's just ...well,
*wrong*.

"Randy" <ra***@NoSpamForMe.com> wrote in message
news:10*************@corp.supernews.com...
Hi all,

Not sure if this is feasible or not, but I'm gonna ask anyway.

My company has developed an application using MS Access 2k as a front end to SQL Server 2000. As we grow, and add customers (who are also growing)
Access's limitations soon come to the fore front of most of our problems.

Is there a relatively easy way to convert from Access 2k to Vb .Net or even VB 6 without basically re-writing the whole app?

I am thinking there isn't, but I thought I would ask those who are smarter
then I in this arena.

Thanks In Advance (even if it is bad news)

Randy

Nov 20 '05 #4
Very good points.
Up until the last one!

LOL!
--
Joe Fallon

"Bonj" <a@b.com> wrote in message
news:eT*************@TK2MSFTNGP10.phx.gbl...
The bad news is that you are going to have to face the fact that you *will* have to rewrite it if you want to eliminate Access as it gets more and more stretched - which from what you've said, means you will have to rewrite it. The good news is that "re-writing" something in another language means just that - re*writing* it. It doesn't mean re-researching application layout,
nor re-analyzing requirements, nor does it mean re-figuring-out algorithms - you can take consolation in the fact that you don't have to go through the
same amount of work again to achieve the same-thing-only-different. Class
structure, control of flow design and possibly even tangible things such as any ocxs / dlls there might be, can be kept.
You can optimize more aswell, by using SqlConnections which bypass OLEDB if you're using SQL server like you say, the best approach is to use these
specific SQL server connections and use stored procedures for ALL data
access (it may sound hard at first but there's very few applications that
can't eliminate the need for dynamic SQL).
Given that you've already got this lot figured out, it would be a better
than average opportunity to learn .NET, if you don't already know it - or
more of it if you do. But use C# not VB.NET - VB.NET's just ...well,
*wrong*.

"Randy" <ra***@NoSpamForMe.com> wrote in message
news:10*************@corp.supernews.com...
Hi all,

Not sure if this is feasible or not, but I'm gonna ask anyway.

My company has developed an application using MS Access 2k as a front end
to
SQL Server 2000. As we grow, and add customers (who are also growing)
Access's limitations soon come to the fore front of most of our

problems.
Is there a relatively easy way to convert from Access 2k to Vb .Net or

even
VB 6 without basically re-writing the whole app?

I am thinking there isn't, but I thought I would ask those who are smarter then I in this arena.

Thanks In Advance (even if it is bad news)

Randy


Nov 20 '05 #5
"Joe Fallon" <jf******@nospamtwcny.rr.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl
Very good points.
Up until the last one!

<cut>
But use C# not VB.NET - VB.NET's just
...well, *wrong*.


If that's the point you mean, it's the one that is most right! There is no
valid reason I can find for VB.Net to exist at all.

--
Reply to the group so all can participate
VB.Net... just say "No"

Nov 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
by: chicha | last post by:
Hey people, I have to convert MS Access 2000 database into mysql database, the whole thing being part of this project I'm doing for one of my faculty classes. My professor somehow presumed I...
8
by: Uttam | last post by:
Hello, I am currently in the process of developing an application in a pure desktop world using Access 2000. I am intending to convert this pure desktop application into a Client Server...
7
by: RCS | last post by:
Okay, a rather 'interesting' situation has arisen at a place I work: I need to convert a database from Access to something that can be used over the web. I am currently maintaining and...
5
by: Robert | last post by:
I have a series of web applications (configured as separate applications) on a server. There is a main application at the root and then several virtual directories that are independant...
32
by: robert d via AccessMonster.com | last post by:
I'm looking at converting DAO to ADO in my app. All of my DAO connections are of the following structure: Dim wsName As DAO.Workspace Dim dbName As DAO.Database Dim rsName As DAO.Recordset ...
59
by: Rico | last post by:
Hello, I have an application that I'm converting to Access 2003 and SQL Server 2005 Express. The application uses extensive use of DAO and the SEEK method on indexes. I'm having an issue when...
9
by: Terry | last post by:
I am converting (attempting) some vb6 code that makes vast use of interfaces. One of the major uses is to be able to split out Read-only access to an obect. Let me give you a simple (contrived)...
1
by: SLC via DBMonster.com | last post by:
Hello I'm a newbie to this and I need help, please My question is, we currently have a IDMS db and will be converting to DB2. What are the things I should do? The IDMS has not been documented very...
6
by: ll | last post by:
Hi, I'm currently working with a 'classic ASP' intranet site which uses a SQL server and am looking for possible ways to market it as an application for certain medical fields. Where would be a...
20
by: ncsthbell | last post by:
We currently have Access 2000 and are converting to 2007. I have a very complicated Access application and am so lost with where to start. When I bring the application up, there are different tabs...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.