opey Posted March 9, 2008 Posted March 9, 2008 Is it possible to "squeeze" my bitmaps into a .dll so they are unaccessible by the user of the program but the program can still read them from the .dll and load them into the program? Is so please help me. Thanks.
martin Posted March 9, 2008 Posted March 9, 2008 Is it possible to "squeeze" my bitmaps into a .dll so they are unaccessible by the user of the program but the program can still read them from the .dll and load them into the program?Is so please help me.Thanks.Have a look at this. Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
opey Posted March 9, 2008 Author Posted March 9, 2008 I don't understand most of what he's talking about on that whole page and the examples don't even work...
weaponx Posted March 9, 2008 Posted March 9, 2008 I'm slowly seeing a pattern of duplicate topics by different authors in the same week. Use the forum search for the sake of reducing over-saturation of the same topics.http://www.autoitscript.com/forum/index.php?showtopic=65829
opey Posted March 9, 2008 Author Posted March 9, 2008 I tried that GConvert program and there is no option to put picture files into a .dll
Tomb Posted March 9, 2008 Posted March 9, 2008 you can add resources to a .dll with resource hacker. i just could never figure out getting those images into a gui.
martin Posted March 9, 2008 Posted March 9, 2008 you can add resources to a .dll with resource hacker. i just could never figure out getting those images into a gui.Using icons from a dll is not difficult. There are examples in the help file.$BtnClose = GUICtrlCreateButton("", 20, 10, 3, 32, $BS_ICON)GUICtrlSetImage(-1, 'icons.dll', 4, 0)I know how to add and remove icons to and from a dll using Resourcehacker but not how to create a dll from scratch with resourcehacker. Is there a way? Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Tomb Posted March 9, 2008 Posted March 9, 2008 (edited) Using icons from a dll is not difficult. There are examples in the help file.$BtnClose = GUICtrlCreateButton("", 20, 10, 3, 32, $BS_ICON)GUICtrlSetImage(-1, 'icons.dll', 4, 0)I know how to add and remove icons to and from a dll using Resourcehacker but not how to create a dll from scratch with resourcehacker. Is there a way?well, i would copy a .dll i found on my computer, and delete everything from it with resource hacker, and start adding new files. but apparently this makes it a hacked .dll hacked .dll omg Edited March 9, 2008 by Tomb616
Recommended Posts