T
Tony Vrolyk
In order to make my app a little prettier, I set the background pics on
several forms to some simple BMPs using the link property to avoid bloat.
However my app is distributed as an MDE under Access Runtime. I tried to
come up with a way to set this properties on all effected forms from code in
case the users installs to a differnt location then the default. Below is
what I tried but then the "duh" hit me and I realized it woudn't work in an
MDE. Does anyone have any other suggestions without using embedded images?
Thanks
Tony
'***Sample***
DoCmd.OpenForm "Customers", acDesign, , , , acHidden
Forms!Customers.Form.Picture = fCurrentDBDir & "bkgrnd.bmp"
DoCmd.Close acForm, "Customers", acSaveYes
several forms to some simple BMPs using the link property to avoid bloat.
However my app is distributed as an MDE under Access Runtime. I tried to
come up with a way to set this properties on all effected forms from code in
case the users installs to a differnt location then the default. Below is
what I tried but then the "duh" hit me and I realized it woudn't work in an
MDE. Does anyone have any other suggestions without using embedded images?
Thanks
Tony
'***Sample***
DoCmd.OpenForm "Customers", acDesign, , , , acHidden
Forms!Customers.Form.Picture = fCurrentDBDir & "bkgrnd.bmp"
DoCmd.Close acForm, "Customers", acSaveYes