arage
04-04-2001, 06:56 AM
I’d appreciate someone refreshing my memory as to whether the following instances mean exactly the same thing when referring to a form control.
[field1]
=[field1]
[field1]
=[field1]
|
View Full Version : Control source question arage 04-04-2001, 06:56 AM I’d appreciate someone refreshing my memory as to whether the following instances mean exactly the same thing when referring to a form control. [field1] =[field1] KevinM 04-04-2001, 08:05 AM If it is to be used in the ControlSouce then use =[Field1] hth AccessUser 04-04-2001, 10:51 AM You would use [field1] as the control source if [field1] was the name of field in the underlying table/query. =[field1] works exactly the same in this case. You would use = as the first character of the control source if you were refering to something that was not a field in the underlying table/query or if you were modifying that field. ex: = [field1] & " Some Text" . (Note: if you modify [field1] you cannot use field1 as the name of your text box else you will get an error. |