Icon = "newicon.ico"
does not work in my form header. If I add the icon by hand, it gets written
into an FRX file and that is no good for globally changing 500 forms. In
code, I would use
Let frmGeneric.Icon = LoadPicture("newicon.ico")
but I would like to imbed the icons directly into the form files. Hmmm. Any
ideas?
Thanks in advance,
Gary Patterson
garypa...@iname.com
Now look at the Form's FRM file and find the line for the Icon.
Change the filename to include its full path from the root on down:
From:
Icon = "newicon.frx":0000
To:
Icon = "c:\subdir1\subdir2\newicon.frx":0000
You then have a line you can add to any of your other form files, in any
directory. Be advised, unless you resave each form, in each project,
they will continue to look for your NEWICON.FRX file. Perhaps, if you
are changing these same icons often, this will work to your benefit...
LFS
Greywolf Ghost
Larry Serflaten <serf...@mail.usinternet.com> wrote in message
news:36DFD4...@mail.usinternet.com...