SOLVED

Quoting Program in Access

Copper Contributor

Has anyone created or found a way to create great looking quotes in Access using information that we provided in the database? I can create a database of all the necessary stuff that would go on the quote and even create a report view that might look decent but we would also like to include photos on the quote too. Also, quotes could be multiple pages with multiple widgets quoted to the customer.

 

Thanks!

1 Reply
best response confirmed by EclipseJohn (Copper Contributor)
Solution

@EclipseJohn 

You've made a good start. "... and even create a report view that might look decent..."

 

This part is not that much more complicated, "...but we would also like to include photos on the quote too. ..." However, it'll require some additional components.

 

Here's what you need to do.

 

Create the images for the photos and store them on your network. Typically, that would be a folder dedicated to that purpose.

 

Add a field to the table which contains records for your components. This new field will contain the path to the image for that component, e.g. "\\OurBigNetwork\Components\images\Image101.jpg"

 

When you create the report, use that to retrieve the appropriate image into an image control on the report.

 

Making it "look great" is kinda up to you. :)

1 best response

Accepted Solutions
best response confirmed by EclipseJohn (Copper Contributor)
Solution

@EclipseJohn 

You've made a good start. "... and even create a report view that might look decent..."

 

This part is not that much more complicated, "...but we would also like to include photos on the quote too. ..." However, it'll require some additional components.

 

Here's what you need to do.

 

Create the images for the photos and store them on your network. Typically, that would be a folder dedicated to that purpose.

 

Add a field to the table which contains records for your components. This new field will contain the path to the image for that component, e.g. "\\OurBigNetwork\Components\images\Image101.jpg"

 

When you create the report, use that to retrieve the appropriate image into an image control on the report.

 

Making it "look great" is kinda up to you. :)

View solution in original post