Author Topic: need help file for toolbars  (Read 1662 times)

0 Members and 1 Guest are viewing this topic.

ELOQUINTET

  • Guest
need help file for toolbars
« on: August 26, 2005, 11:40:58 AM »
someone put together a help file for creating custom toolbars and putting them into a dll awhile ago and i was wondering if you have it handy could you post it. one of my coworkers is delving into it and i thought i'd give him some good advice. thanks

David Hall

  • Automatic Duh Generator
  • King Gator
  • Posts: 4076
need help file for toolbars
« Reply #1 on: August 26, 2005, 11:46:17 AM »
Mark wrote a nice help file for that.  I'll see if I can find it
Everyone has a photographic memory, Some just don't have film.
They say money can't buy happiness, but it can buy Bacon and that's a close second.
Sometimes the question is more important than the answer. (Thanks Kerry for reminding me)

David Hall

  • Automatic Duh Generator
  • King Gator
  • Posts: 4076
need help file for toolbars
« Reply #2 on: August 26, 2005, 11:48:41 AM »
This is the link
Everyone has a photographic memory, Some just don't have film.
They say money can't buy happiness, but it can buy Bacon and that's a close second.
Sometimes the question is more important than the answer. (Thanks Kerry for reminding me)

ELOQUINTET

  • Guest
need help file for toolbars
« Reply #3 on: August 26, 2005, 01:04:52 PM »
thats it man thanks

Crank

  • Water Moccasin
  • Posts: 1503
need help file for toolbars
« Reply #4 on: August 26, 2005, 01:18:42 PM »
Afralisp-link

Can someone please explain scripting to make a toolbar .dll with ResourceHacker? I just read the help-file, but just don't get it.
Vault Professional 2023     +     AEC Collection

whdjr

  • Guest
need help file for toolbars
« Reply #5 on: August 26, 2005, 02:29:16 PM »
Just as a side note, I had all my bitmaps in a dll and when I imported my menus into 2006 it didn't read my dll.  I had to put each bitmap in the shared folder where the menu was.

Go figure?

Crank

  • Water Moccasin
  • Posts: 1503
need help file for toolbars
« Reply #6 on: August 26, 2005, 09:17:33 PM »
Did you remove .bmp of the icons in your .mnu or .mns file?
Vault Professional 2023     +     AEC Collection

TR

  • Guest
need help file for toolbars
« Reply #7 on: August 26, 2005, 09:37:09 PM »
Quote from: Crank
Can someone please explain scripting to make a toolbar .dll with ResourceHacker? I just read the help-file, but just don't get it.


As long as your .dll and menu file have the same name you can store the bitmaps in a single resource dll and call it from the menu by the name in the dll. This makes distribution easy as you're only sending two files instead of the .mns and the X amount of .bmp files.

Crank

  • Water Moccasin
  • Posts: 1503
need help file for toolbars
« Reply #8 on: August 26, 2005, 09:49:26 PM »
I know that, but with 'Resource Hacker' it's also possible to make the .dll with a script.
Because I've about 500 bitmaps, it seems faster to me to do it that way.
Vault Professional 2023     +     AEC Collection

Crank

  • Water Moccasin
  • Posts: 1503
need help file for toolbars
« Reply #9 on: August 26, 2005, 10:12:40 PM »
Quote
To add or update bitmap name:128 in MyProg.exe from NewImage.bmp
Code: [Select]
ResHacker.exe -addoverwrite MyProg.exe, MyProgNew.exe, NewImage.bmp , bitmap,128,

So I think that in our case this would be something like:
Code: [Select]
ResHacker.exe -addoverwrite MyMenu.dll, MyMenuNew.dll, NewImage.bmp , bitmap,128,
What I don't understand is the number 128...
Doesn't this have to be 0 ?
Vault Professional 2023     +     AEC Collection