williamlove
Registered User.
- Local time
- Today, 07:38
- Joined
- Feb 9, 2006
- Messages
- 37
I noticed that somewhere along the line I no longer had to put the full reference to an object. For example, when I first coded my project five or six years ago (using Access XP or 2000) I had to do this:
Application.Forms!frmContacts.Controls!imgContactPicture.Picture = sFullPath & "\" & File.Name
but now I can omit the preamble and just do this:
imgContactPicture.Picture = sFullPath & "\" & File.Name
Can you tell me when/why this requirement changed and if there is any performance advantage to either?
Application.Forms!frmContacts.Controls!imgContactPicture.Picture = sFullPath & "\" & File.Name
but now I can omit the preamble and just do this:
imgContactPicture.Picture = sFullPath & "\" & File.Name
Can you tell me when/why this requirement changed and if there is any performance advantage to either?