I am working on a quoting application with numerous variables - it adds the value of those variables together and comes up with a ‘suggested price’. I am using a control application to choose the customer they are quoting to and then that loads a grid showing all of the suppliers that they might buy product from. They use a checkbox (run button) to select the supplier they want to use. All of the variables are added together and then the run button 'OnFinish" event displays the ‘suggested selling price’ (ie. total). My client wants to overwrite that total with a value they type in - both the suggested and actual selling price will be stored in the database.
Question #1 - How can I limit the run button to selection of just ONE supplier (so that they can generate one quote at a time)?
Question #2 - Before writing the quote to the database, how can I show the suggested price in a field where the client can change its value? (ie. enter the actual ‘selling price’)
I’ve spent several days working on this; hoping to not have to completely redo it for this one field.