andyswarbs Posted February 19, 2006 Posted February 19, 2006 I suspect that actually the code is not doing anything useful. Please prove me wrong! Licensing.au3Extended _Max & _Min_MsgBoxExitVarious extensions to _GuiCtrl...Run Dos programs output into an array etc (Updated 19-Feb-06)Extensions to Array library, primarily in two dimensions (updated 20-Feb-06)Version dependency calculator, _IsVer1GEVer2User Management, answering some domain questions (updated 19-Feb-06, various bugfixes and new functions added)Extensions to registry manipulation, including a recursive search & replaceDelimited string library (updated 19-Feb-03, added _DelimListSort)String library extensionsTerminal Server supportFile libraryCommand line parser (added 18-Feb-06)(UDF homepage) (Scit4Au3 UserCallTips added 21-Feb-06)
rakudave Posted February 19, 2006 Posted February 19, 2006 (edited) very good! i like it! Edited February 19, 2006 by rakudave Pangaea Ruler new, UDF: _GUICtrlCreateContainer(), Pangaea Desktops, Pangaea Notepad, SuDoku, UDF: Table
erifash Posted February 20, 2006 Author Posted February 20, 2006 Okay that code you were talking about is used to turn 000000, 00000, 0000, 000, and 00 into 0 since the Hex() function in the copier returns six digits. That way, a number like 0x0000FA turns into 0xFA since the preceding zeros are not needed by the interpreting function. My UDFs:_FilePrint() | _ProcessGetName() | _Degree() and _Radian()My Scripts:Drive Lock - Computer Lock Using a Flash DriveAU3Chat - Simple Multiuser TCP ChatroomStringChunk - Split a String Into Equal PartsAutoProxy - Custom Webserver
greenmachine Posted February 20, 2006 Posted February 20, 2006 Couldn't you just use the length parameter of the hex function to shorten it? MsgBox (0, "", Hex (0x0000FA)) MsgBox (0, "", Hex (0x0000FA, 2))
erifash Posted February 20, 2006 Author Posted February 20, 2006 Couldn't you just use the length parameter of the hex function to shorten it?MsgBox (0, "", Hex (0x0000FA))MsgBox (0, "", Hex (0x0000FA, 2))Sure, this was the way I thought of it at the time though. My UDFs:_FilePrint() | _ProcessGetName() | _Degree() and _Radian()My Scripts:Drive Lock - Computer Lock Using a Flash DriveAU3Chat - Simple Multiuser TCP ChatroomStringChunk - Split a String Into Equal PartsAutoProxy - Custom Webserver
Josbe Posted February 21, 2006 Posted February 21, 2006 Looking this thread again, I did a small change to reduce the time loading (~70%), using graphic controls and with that you can handle the whole control too. @erifash: btw, nice script.Construct_image.au3 AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now