This may reveal my poor programming skills, but here goes...
I'm building a pricing tool for my business. I'm nearing the end of the
project, and I've been asked to be able to save quotes in some sort of
database (Major Feature Creep). For each quote, I've got two kinds of
variables. The first are global for the quote, such as
numQuoteRows
QuoteFinalCost
CustomerID
Secondly, I've got the quote rows stored in a structured array, for example:
quoteRow(3).wid getHeight is the height of quote row 3 widget.
quoteRow(6).wid getQuantity is the number of widgets in quote row 6
The question is, how can load & save this info into an Access database. I
figure I can have one table with the global quote information, and one with
the quote rows, but I'm not sure how to feed the info to & from the database.
Please bear in mind I first picked up an intro to VB.NET book a little over
a year ago, and this is my first massive programming project. I've got Access
databases for customer info and all the widget pricing & configuration, so
descriptions of an Access interface would hopefully work. Many thanks for any
advice that you can provide.
--
Cary
I'm building a pricing tool for my business. I'm nearing the end of the
project, and I've been asked to be able to save quotes in some sort of
database (Major Feature Creep). For each quote, I've got two kinds of
variables. The first are global for the quote, such as
numQuoteRows
QuoteFinalCost
CustomerID
Secondly, I've got the quote rows stored in a structured array, for example:
quoteRow(3).wid getHeight is the height of quote row 3 widget.
quoteRow(6).wid getQuantity is the number of widgets in quote row 6
The question is, how can load & save this info into an Access database. I
figure I can have one table with the global quote information, and one with
the quote rows, but I'm not sure how to feed the info to & from the database.
Please bear in mind I first picked up an intro to VB.NET book a little over
a year ago, and this is my first massive programming project. I've got Access
databases for customer info and all the widget pricing & configuration, so
descriptions of an Access interface would hopefully work. Many thanks for any
advice that you can provide.
--
Cary
Comment