Guus2005
AWF VIP
- Local time
- Today, 07:36
- Joined
- Jun 26, 2007
- Messages
- 2,642
I always use a dot and never an exclamation mark.
Is there a difference? Is one faster?
And line 1000 compared to 2000?
Example:
versus
Thanks!
Is there a difference? Is one faster?
And line 1000 compared to 2000?
Example:
Code:
1000 frmProgress!cboProcesstatusG = rs!StatusProces
1001 frmProgress!txtDatVooraanVerzondenG = Format(gsJAL_G!DatVooraanVerzonden, "dd-mm-yyyy")
Code:
2000 frmProgress.cboProcesstatusG = rs.Fields("StatusProces")
2001 frmProgress.txtDatVooraanVerzondenG = Format(gsJAL_G!DatVooraanVerzonden, "dd-mm-yyyy")
Thanks!