I've edited your form and put it here.Here's what I've done:Inserted script into your checkbox renamed Accpted that hides/shows the Purchase Order/ Sales QuotationI've included a scripting object with a function I wrote to transfer data from like named fields/subforms from one section to anotherInse...
You can try putting this script in the layout:ready event of both of your rows:if (this.parent.index % 2 == 0) this.fillColor = "255, 255, 242";else this.fillColor = "236,245,255";Kyle
You could store the time when the user opens the form and store it again when the user saves the form and show the difference.Here's how you can do it:1) Create a hidden field called startTime and put this JavaScript in the docReady event of the field:this.rawValue=(new Date()).getTime();2) Create a...
Ya that's a good one. Turns out your tables have height and width properties when they shouldn't. You can't see it in the Designer palettes. You have to edit the XML directly.To fix it:1) Click on your table2) Goto you XML Source tab (View>XML Source)3) You'll see something like this highlighted:<su...
So, let's clear some things up. You want a value from a data binding to go into your caption with some added hard coded text?If so, what's the data binding string itself ($.MyData.CaptionCollection.Caption)? Do you use dynamic properties?Kyle