i have a check box, and if the user wants VAT to be added to the calculations then they tick the box.
When the user searches a record already saved in the dbase, how do i make the tick appear if vat was included????
Printable View
i have a check box, and if the user wants VAT to be added to the calculations then they tick the box.
When the user searches a record already saved in the dbase, how do i make the tick appear if vat was included????
Do you have a VATIncluded (or similar) column in your table? Or a separate column for the VAT value?
If so, you can query this column and display the tick based on their contents...
yeah i do have a incVAT column in the table, but how do i say in vb:
if VATinc then
TICK CHECK BOX 'i dont no how to say this bit.....
VB Code:
Check1.Value = vbChecked
Quote:
Originally Posted by Hack
yup...thanks :)