Results 1 to 3 of 3

Thread: Design Pattern

  1. #1

    Thread Starter
    New Member
    Join Date
    Jan 2000
    Posts
    9

    Lightbulb

    Hello everyone!

    I'm going to build a system which has a lot of different parts which can be eg. customers, resources, articles etc. Everything, probably, stored in an Access Database. I'm relative new to Visual Basic and I wonder which strategy that would fit for this project. I want the application to be easy to upgrade and insert new parts as the progress goes on. I have thought about having a MAIN part of the application which is consists of and EXE. Then the smaller parts of the system, eg. customers, in different DLLs. The MAIN part, the EXE file, will load the available parts every time the application starts. Then if I update or add a new part to the system. I can send the DLL and some smaller files to the user. What do all of you think about this strategy? What strategies would you recommend?

  2. #2
    Former Admin/Moderator MartinLiss's Avatar
    Join Date
    Sep 1999
    Location
    San Jose, CA
    Posts
    33,431
    Don't worry about sending "smaller files to the user". When you upgrade it's a simple matter to send out an installation package that contains a new exe and any new files. What you do need worry about however is preserving the user's data, and to do that you should design your application to have two databases, one for static program values such as list and combo box values, program defaults, etc., and the other for user data such as invoice details. That way you can upgrade the static database when needed and (usually) not have to worry about affecting the user's data.

  3. #3

    Thread Starter
    New Member
    Join Date
    Jan 2000
    Posts
    9
    Thankyou for the advice.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width