Maybe these values should be stored in a related table and just the ID of those records put in the main table?
You're right Galaxiom, but it was my first database project and there are design limitations. At the moment, am just looking for workarounds so that I learn more and more. Thank you so much.
Got it working, thank you once again )
Just couple of questions please.
1. Like you mentioned the link. In first line, why there are couple quotes inside another couple quotes please?
const cQuote="""" 'Thats two quotes
me!Control.DefaultValue = cQuote & me!Control.Value & cQuote
I tried to work with 1, 2 and 3 quotes and it also works fine. I'm not understanding the behavior.
2. Now I've again done this with the combination of VBA and Macro. I'm calling Macro from VBA just to run the GoToRecord Macro because I'm constantly failing to call GoToRecord from VBA... here's how I've tried in VBA:
DoCmd.GoToRecord acDataForm, frmClient, acGoTo, 3
DoCmd.GoToRecord acDataForm,frmClient,acLast,
I've even tried without ',' after acLast in the last command but could get it work!!
When I execute I get the error 'Identifier under cursor is not recognized'. Spelling, identifier... everything is correct. Then why is it so please?
Thank you.