473,672 Members | 2,414 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Output quote...how to proceed...your thoughts???

I posted on this topic a while back and received some good responses.
However, I have better insight into what I'm looking to do so I am
tapping the wealth of experience here again hoping to find a general
consensus on how to proceed from here. Thank you in advance for anyone
who takes the time to reply...

I am upgrading a VB4.0 program for a client who distributes it to its
reps worldwide. We are not at the point where we want to make this
internet based - the reps like having it on their own computer for
various reasons (such as slow internet access, etc) that I am not going
to argue against.

This program is a customized quote generation program where the user
types in all sorts of information about an application and after
several calculations are done by the computer, one or more products are
recommended that will meet their needs. The user then selects the
product(s) they desire and a quote is generated. The quote consists of
several parts: Customer Info (name, address, etc), Rep Info (reply to
name, etc), Application Info (we spit back all the inputs that were
used to select the product to cover our @##), a BOM (can consist of
anywhere from 1 to 20 or more line items), some legal language and
optional product info (drawings, dimensional data, detailed
description. Pretty straightforward stuff.

Let me provide a bit of history because it may impact the solution that
is suggested.

This program was originally written in QuickBasic and the resulting
quote was dumped into a simple text file and saved as
<quotenumber>.t xt. Wasn't pretty, but it got the job done. The
program automatically opened a text editor that allowed the user to
fully modify anything on the page. Everything was formatted to print
within a letterhead that was fed into the printer.

Along came an upgrade to VB4.0 with Crystal Reports. The program was
modified to store all info into Access databases and then the quote was
generated in Crystal Reports. Although the quote looked much nicer
(added graphics like dimensional drawings, boxes, formatting, etc) and
could be printed on plain paper, there was an obvious loss of
customization because the user no longer had full editing capability of
the quote. A note field was added to each part of the quote allowing
the user to add any notes they might like. Far from a fully editable
quote, but it did help somehat.

Next came a desire to e-mail the quotes as attachments. The program
was modified to allow for an option of generating the quote as a Word
Document through Crystal Reports. This allowed users some additional
editing capabilities as well as the ability to attach it as a DOC file.
The negative being that any changes made to the document were saved in
the DOC file but not in the Access databases.

All this history brings us to today. The program has been upgraded to
VB.net (2003) and now comes the part of how to handle quote generation.
Some of the information is stored in Access databases (such as
customer name/address, sales rep reply info, etc). As I looked at
using Crystal Reports to generate the quote and then save it in another
format, two problems quickly emerged that made me decide there must be
a better way:

A) If you have Crystal save it as a Word Document, all the text is
placed in text boxes which makes editing and then aligning everything a
real pain. Seems less flexible than the old CR/Word combination.
b) If you go the PDF route, you lose the ability to edit anything
without having Adobe installed

To finally get to my question: Does anyone out there have
thoughts/experiences to share that will help me find the best way to
output the quote? Keep in mind the following criteria we would like to
meet:

1) The finished quote can be fully edited. Lines of text can be
added. Part descriptions can be changed. Whole sections can be
removed, etc. The less constrictions the better. A lot of the reps
are still around from the days of the QuickBasic text files and they
loved the flexibility that offered. For example, if this your
suggestion is a Word Document, I do not want the user to have to
reformat all the paragraphs, pages, etc anytime they add a paragraph or
change a part number.

2) If edited by the end user, we want the changes saved so that it can
be pulled up at a later date and modified again as needed.

3) The finished quote can be attached to an e-mail and the end user can
open without the need for additional software. (OK, perhaps MS Word
would be required).

4) Ideally, if the user changes a price or quantity in the BOM any
other totals that are affected would automatically be updated.

5) It would be nice if the quote was professional looking (i.e. the
company logo in the header, formatting, etc). To put a bit of
perspective on this though, the users I have polled would rather have
editing capabilities than pretty boxes, graphics, etc.

6) The quote can incorporate graphics such as dimensional drawings,
product drawings, etc.

7) Ideally, the quote could have catalog pages (in the form of PDF
files) attached to it (although this would be a bonus and we can live
without it)

8 ) Ideally, whatever solution is suggested, we would like to not be at
the mercy of a third party vendor.

In my previous post, some users suggested adding a form to the program
that would allow the end user to modify anything before generating the
quote. This would work well for the BOM perhaps, but still would
limit some of the capabilities as I see it, such as editing the
boilerplate text that's part of every quote. Or adding a paragraph
here or there.

I am open to your ideas and look forward to reading them.

Thanks,

Jmar

Jan 6 '07 #1
1 1196
Although I have not coded against it yet, I thought that your scenario was
what Microsoft's InfoPath product was designed for. It is a data-entry-form-focused
package that uses XML and your own custom code and configuration to generate
documents based on user input. InfoPath is part of Microsoft Office.

-----
Tim Patrick - www.timaki.com
Start-to-Finish Visual Basic 2005
I posted on this topic a while back and received some good responses.
However, I have better insight into what I'm looking to do so I am
tapping the wealth of experience here again hoping to find a general
consensus on how to proceed from here. Thank you in advance for
anyone who takes the time to reply...

I am upgrading a VB4.0 program for a client who distributes it to its
reps worldwide. We are not at the point where we want to make this
internet based - the reps like having it on their own computer for
various reasons (such as slow internet access, etc) that I am not
going to argue against.

This program is a customized quote generation program where the user
types in all sorts of information about an application and after
several calculations are done by the computer, one or more products
are recommended that will meet their needs. The user then selects the
product(s) they desire and a quote is generated. The quote consists
of several parts: Customer Info (name, address, etc), Rep Info (reply
to name, etc), Application Info (we spit back all the inputs that were
used to select the product to cover our @##), a BOM (can consist of
anywhere from 1 to 20 or more line items), some legal language and
optional product info (drawings, dimensional data, detailed
description. Pretty straightforward stuff.

Let me provide a bit of history because it may impact the solution
that is suggested.

This program was originally written in QuickBasic and the resulting
quote was dumped into a simple text file and saved as
<quotenumber>.t xt. Wasn't pretty, but it got the job done. The
program automatically opened a text editor that allowed the user to
fully modify anything on the page. Everything was formatted to print
within a letterhead that was fed into the printer.

Along came an upgrade to VB4.0 with Crystal Reports. The program was
modified to store all info into Access databases and then the quote
was generated in Crystal Reports. Although the quote looked much
nicer (added graphics like dimensional drawings, boxes, formatting,
etc) and could be printed on plain paper, there was an obvious loss
of customization because the user no longer had full editing
capability of the quote. A note field was added to each part of the
quote allowing the user to add any notes they might like. Far from a
fully editable quote, but it did help somehat.

Next came a desire to e-mail the quotes as attachments. The program
was modified to allow for an option of generating the quote as a Word
Document through Crystal Reports. This allowed users some additional
editing capabilities as well as the ability to attach it as a DOC
file.
The negative being that any changes made to the document were saved
in
the DOC file but not in the Access databases.
All this history brings us to today. The program has been upgraded to
VB.net (2003) and now comes the part of how to handle quote
generation.
Some of the information is stored in Access databases (such as
customer name/address, sales rep reply info, etc). As I looked at
using Crystal Reports to generate the quote and then save it in
another format, two problems quickly emerged that made me decide there
must be a better way:

A) If you have Crystal save it as a Word Document, all the text is
placed in text boxes which makes editing and then aligning everything
a
real pain. Seems less flexible than the old CR/Word combination.
b) If you go the PDF route, you lose the ability to edit anything
without having Adobe installed
To finally get to my question: Does anyone out there have
thoughts/experiences to share that will help me find the best way to
output the quote? Keep in mind the following criteria we would like
to meet:

1) The finished quote can be fully edited. Lines of text can be
added. Part descriptions can be changed. Whole sections can be
removed, etc. The less constrictions the better. A lot of the reps
are still around from the days of the QuickBasic text files and they
loved the flexibility that offered. For example, if this your
suggestion is a Word Document, I do not want the user to have to
reformat all the paragraphs, pages, etc anytime they add a paragraph
or change a part number.

2) If edited by the end user, we want the changes saved so that it
can be pulled up at a later date and modified again as needed.

3) The finished quote can be attached to an e-mail and the end user
can open without the need for additional software. (OK, perhaps MS
Word would be required).

4) Ideally, if the user changes a price or quantity in the BOM any
other totals that are affected would automatically be updated.

5) It would be nice if the quote was professional looking (i.e. the
company logo in the header, formatting, etc). To put a bit of
perspective on this though, the users I have polled would rather have
editing capabilities than pretty boxes, graphics, etc.

6) The quote can incorporate graphics such as dimensional drawings,
product drawings, etc.

7) Ideally, the quote could have catalog pages (in the form of PDF
files) attached to it (although this would be a bonus and we can live
without it)

8 ) Ideally, whatever solution is suggested, we would like to not be
at the mercy of a third party vendor.

In my previous post, some users suggested adding a form to the program
that would allow the end user to modify anything before generating the
quote. This would work well for the BOM perhaps, but still would
limit some of the capabilities as I see it, such as editing the
boilerplate text that's part of every quote. Or adding a paragraph
here or there.

I am open to your ideas and look forward to reading them.

Thanks,

Jmar

Jan 6 '07 #2

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

Similar topics

2
1403
by: Junkmail | last post by:
I've been playing with Zope for about a year and took the plunge last week into making a product. To keep it simple I used a ZClass to wrap an external method. My ZClass works and returns the output I expect. What doesn't work is when I refer to an object I've created from a dtml-var or a tal:content or tal:replace statement. Instead of the proper output I receive: <TextileClass at home> where TextileClass is my class name and home...
1
9478
by: PinkGuava | last post by:
Hi, I have a T-SQL stored procedure that returns both output parameters and a recordset. How do I retrieve them in my ASP script? As far as I know, the ADO Command object can be used to retrieve the output parameters, but will I be able to retrieve the recordset using the Command object as well? Or do I have to use the Recordset object? Example of stored procedure:
3
2322
by: Dalan | last post by:
Perhaps someone has experienced this problem. I developed an Access 97 Runtime database on a Windows 98 SE machine. I have three reports that can be optionally copied to a floppy disk or hard drive through use of a macro: Output To, Report, the name of the Report, Rich Text Format, Output location and file name, and Auto Start - No. The process has worked flawlessly when running the macro on Windows 98 SE under Access 97 SR2b on the host...
1
1725
by: James Hunter Ross | last post by:
Friends, this is a longshot... Our app is done in ASP.NET/C# with calls to legacy DLLs that use MFC/ODBC to update the database. It's a legacy DB API that we must use. We're debugging an application hang; w3wp.exe appears to stop servicing all requests after about an hour. We have run IIState to capture some data about that process and find that many threads end up waiting on some "critical "section"; basically eventually everybody...
9
5054
by: tomblower | last post by:
Access 2000 fully updated Three PCs manage data held on a server. They each have a front-end mdb file linked to tables on the server and on each PC. A problem has arisen over the following line of code. >> DoCmd.OutputTo acOutputTable, "tblMarriageLicence", acFormatRTF, strRTFFolder & "\Marlicm.rtf", False The linked table has just been updated and is held in another MDB file on the local PC. The target folder is on the local PC....
8
2687
by: Alec MacLean | last post by:
Hi, I'm using the DAAB Ent Lib (Jan 2006) for .NET 2.0, with VS 2005 Pro. My project is a Web app project (using the WAP add in). Background: I'm creating a survey system for our company, for which invites will target selected personnel among our customers via email. Each email will provide a custom hyperlink for each respondent using a SQL generated GUID value in the querystring. The GUID will be checked for validity before the user...
2
4042
by: Glen | last post by:
Hello, I've written a script in python and put together a simple QFrame with a QTextBrowser with Designer. I've translated the C++ into python using puic4. The .py file is called outputWin.py. My Script and its functions are in cnt.py. Finally, my main is in pball.py which follows here: import sys from PyQt4 import Qt, QtCore from outputWin import * from cnt import *
0
2691
by: =?Utf-8?B?R2lkaQ==?= | last post by:
Hi, I started a thread regarding this issue, but now i'm facing new problem, so i'm starting a new thread, hope it's ok... anyway, using my c# windows application, i'm excuting and exe file (which is written in c++), this exe excute some batch files, and those batch file sometimes wait for user's input. i want to diplay the output of this exe on win32 form (textbox or something) and ask the user for input when i need it. the problem...
3
4622
by: David V | last post by:
I'm having trouble copying DLLs from a folder in my project to the project's output directory. I have copied seven SQL CE DLLs (the SqlCe*.dll set) to a Libs folder in my project. The DLLs VS 2008 file properties are set as follows: Build Action: Content Copy to Output Directory: Always When I compile, the DLLs don't copy to the output directory.
0
8418
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8940
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8628
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8694
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7457
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6249
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5718
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4237
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2083
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.