Please support our Visual Basic 4 / 5 / 6 advertiser: Programming Forums
Views: 17864 | Replies: 16
![]() |
•
•
Join Date: Aug 2004
Posts: 19
Reputation:
Rep Power: 5
Solved Threads: 0
Hi,
If you want to develop a complete Database Application using classes, I would advise you to refer this book Titled:" Develop an Accounting package using vb and SQL server 2000".
You can build a class to access data (through methods) from SQL server, update data, Managing Connection and any business logic you want build in client side.....
I read this book and developed full accounting Client/server package.
Regards
bhar
If you want to develop a complete Database Application using classes, I would advise you to refer this book Titled:" Develop an Accounting package using vb and SQL server 2000".
You can build a class to access data (through methods) from SQL server, update data, Managing Connection and any business logic you want build in client side.....
I read this book and developed full accounting Client/server package.
Regards
bhar
•
•
Join Date: Dec 2004
Location: Lincoln Park, Michigan
Posts: 1,744
Reputation:
Rep Power: 7
Solved Threads: 108
•
•
Join Date: Aug 2004
Posts: 19
Reputation:
Rep Power: 5
Solved Threads: 0
Hi,
When we want to reuse a functionality, Classes can be used. A module for instance, could be used for a particular form only.
In an accounting application a Class can be used in the following instances:
a.When we want to access data from a database
b.Log in feature in the application
c.Adding data
In the title "Develop an Accounting Package using VB", i have dealt with this topic in detail....A class has been developed and when we save data into the database, retreive, edit, adding and displaying data. All the financial transactions use the Class - Tran Class.
If you notice, suppose we have a Cash Payment transaction, this transction uses the same class as the Cash Voucher transaction uses. I have dealt with how to design single form, and use the same form for different transactions like CV, CP etc, which is OOPs.
If we use a module, we will need to create separate modules .....
Each entity also can be created as a class.
Class based design forces us to think ahead in terms system design and implenting the requirements in a project and thus save on all resources like time, money etc.
Regards
Bhar
When we want to reuse a functionality, Classes can be used. A module for instance, could be used for a particular form only.
In an accounting application a Class can be used in the following instances:
a.When we want to access data from a database
b.Log in feature in the application
c.Adding data
In the title "Develop an Accounting Package using VB", i have dealt with this topic in detail....A class has been developed and when we save data into the database, retreive, edit, adding and displaying data. All the financial transactions use the Class - Tran Class.
If you notice, suppose we have a Cash Payment transaction, this transction uses the same class as the Cash Voucher transaction uses. I have dealt with how to design single form, and use the same form for different transactions like CV, CP etc, which is OOPs.
If we use a module, we will need to create separate modules .....
Each entity also can be created as a class.
Class based design forces us to think ahead in terms system design and implenting the requirements in a project and thus save on all resources like time, money etc.
Regards
Bhar
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)




Thanx, I have my moments...

Linear Mode