Andk Posted October 4, 2010 Share Posted October 4, 2010 Hi Anyone got any idea how to change title color of my window created by GuiCreate ? Thanks ! Link to comment Share on other sites More sharing options...
Andk Posted October 4, 2010 Author Share Posted October 4, 2010 Actually I mean how to change titleBAR color... Link to comment Share on other sites More sharing options...
Malkey Posted October 4, 2010 Share Posted October 4, 2010 Try this. #include <WinAPI.au3> ; http://www.autoitscript.com/forum/index.php?showtopic=62641&view=findpost&p=469512 Global Const $COLOR_ACTIVECAPTION = 2 Global Const $COLOR_GRADIENTACTIVECAPTION = 27 Local $aElements[2] = [$COLOR_ACTIVECAPTION, $COLOR_GRADIENTACTIVECAPTION] ; Red and Yellow Local $aColors[2] = [255, 65535], $aSaveColors[2] $hGui = GUICreate("My GUI", 300, 200) $aSaveColors[0] = _WinAPI_GetSysColor($COLOR_ACTIVECAPTION) $aSaveColors[1] = _WinAPI_GetSysColor($COLOR_GRADIENTACTIVECAPTION) _WinAPI_SetSysColors($aElements, $aColors) GUISetState() While 1 $Msg = GUIGetMsg() Switch $Msg Case -3 ; $GUI_EVENT_CLOSE ExitLoop EndSwitch WEnd _WinAPI_SetSysColors($aElements, $aSaveColors) As most things have already been mentioned on these forums in the past, try searching on +titlebar + color using the forum search input box. Link to comment Share on other sites More sharing options...
Yashied Posted October 4, 2010 Share Posted October 4, 2010 (edited) expandcollapse popup#Include <Constants.au3> #Include <FontConstants.au3> #Include <GUIConstantsEx.au3> #Include <WinAPIEx.au3> #Include <WindowsConstants.au3> $hFont = _WinAPI_CreateFont(16, 0, 0, 0, $FW_BOLD, 0, 0, 0, $DEFAULT_CHARSET, $OUT_DEFAULT_PRECIS, $CLIP_DEFAULT_PRECIS, $DEFAULT_PITCH, $ANTIALIASED_QUALITY, 'Arial') $hForm = GUICreate('', 400, 400) $hHook = DllCallbackRegister('_WinProc', 'ptr', 'hwnd;uint;long;ptr') $pHook = DllCallbackGetPtr($hHook) $hProc = _WinAPI_SetWindowLongEx($hForm, $GWL_WNDPROC, $pHook) GUISetState() Do Until GUIGetMsg() = $GUI_EVENT_CLOSE _WinAPI_SetWindowLongEx($hForm, $GWL_WNDPROC, $hProc) DllCallBackFree($hProc) Func _WinProc($hWnd, $iMsg, $wParam, $lParam) Local $Res = _WinAPI_CallWindowProc($hProc, $hWnd, $iMsg, $wParam, $lParam) Local $hDC, $hSv Switch $iMsg Case $WM_NCACTIVATE, $WM_NCPAINT Switch $iMsg Case $WM_NCACTIVATE $hDC = _WinAPI_GetWindowDC($hWnd) Case $WM_NCPAINT $hDC = _WinAPI_GetDCEx($hWnd, $wParam, BitOR($DCX_WINDOW, $DCX_INTERSECTRGN)) EndSwitch $hSv = _WinAPI_SelectObject($hDC, $hFont) _WinAPI_SetTextColor($hDC, 0x00FFFF) _WinAPI_SetBkMode($hDC, $TRANSPARENT) _WinAPI_TextOut($hDC, 25, 8, 'MyGUI') _WinAPI_SelectObject($hDC, $hSv) _WinAPI_ReleaseDC($hWnd, $hDC) EndSwitch Return $Res EndFunc ;==>_WinProcWinAPIEx.au3 Edited October 5, 2010 by Yashied My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More... Link to comment Share on other sites More sharing options...
MyEarth Posted January 25, 2013 Share Posted January 25, 2013 Hi,I have try both example but not work ( maybe need a code update, 2010 --> 2013 )So if was possible to change the TITLEBAR color in the 2010 i think is possible also now lolYashied, is possible to update the code? ThanksAnd also to the TITLEBAR color, is possible to change the FONT color or/and the type? Link to comment Share on other sites More sharing options...
kylomas Posted January 25, 2013 Share Posted January 25, 2013 (edited) MyEarth, Despite the code being posted 28 months ago Malkey's code works perfectly and Yashied's code works with the addition of one include file.How are you testing this and what error are you receiving?And, more importantly, did you try to do any debugging?kylomasedit: additional info - There is also a similar example in the help file. To quote MalkeyAs most things have already been mentioned on these forums in the past, try searching on +titlebar + color using the forum search input box. Edited January 25, 2013 by kylomas Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill Link to comment Share on other sites More sharing options...
PhoenixXL Posted January 26, 2013 Share Posted January 26, 2013 (edited) I have modified the system theme,maybe that is the cause there is no change in the color of title bar i guess Edit : I added error check and I receive error code = 1(ERROR_INVALID_FUNCTION) with _Winapi_GetDCExexpandcollapse popup#include <Constants.au3> #include <APIConstants.au3> #include <FontConstants.au3> #include <GUIConstantsEx.au3> #include <WinAPIEx.au3> #include <WindowsConstants.au3> $hFont = _WinAPI_CreateFont(16, 0, 0, 0, $FW_BOLD, 0, 0, 0, $DEFAULT_CHARSET, $OUT_DEFAULT_PRECIS, $CLIP_DEFAULT_PRECIS, $DEFAULT_PITCH, $ANTIALIASED_QUALITY, 'Arial') $hForm = GUICreate('Hello', 400, 400) $hHook = DllCallbackRegister('_WinProc', 'ptr', 'hwnd;uint;long;ptr') $pHook = DllCallbackGetPtr($hHook) $hProc = _WinAPI_SetWindowLongEx($hForm, $GWL_WNDPROC, $pHook) GUISetState() Do Until GUIGetMsg() = $GUI_EVENT_CLOSE _WinAPI_SetWindowLongEx($hForm, $GWL_WNDPROC, $hProc) DllCallbackFree($hProc) Func _WinProc($hWnd, $iMsg, $wParam, $lParam) Local $Res = _WinAPI_CallWindowProcW($hProc, $hWnd, $iMsg, $wParam, $lParam) Local $hDC, $hSv Switch $iMsg Case $WM_NCACTIVATE $hDC = _WinAPI_GetWindowDC($hWnd) Case $WM_NCPAINT $hDC = _WinAPI_GetDCEx($hWnd, $wParam, BitOR($DCX_WINDOW, $DCX_INTERSECTRGN)) If @error Then ConsoleWrite(@error) ;This give me error code 1 = ERROR_INVALID_FUNCTION EndSwitch $hSv = _WinAPI_SelectObject($hDC, $hFont) _WinAPI_SetTextColor($hDC, 0x00FFFF) _WinAPI_SetBkMode($hDC, $TRANSPARENT) _WinAPI_TextOut($hDC, 25, 8, 'MyGUI') _WinAPI_SelectObject($hDC, $hSv) _WinAPI_ReleaseDC($hWnd, $hDC) Return $Res EndFunc ;==>_WinProcEnvironment(Language:0409 Keyboard:00000409 OS:WIN_7/ CPU:X64 OS:X86) Edited January 26, 2013 by PhoenixXL My code: PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners. MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression. Link to comment Share on other sites More sharing options...
kylomas Posted January 26, 2013 Share Posted January 26, 2013 @PhoenixXL, What are you referring to? Both these examples work perfectly on my system (Win7 64bit). kylomas Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill Link to comment Share on other sites More sharing options...
PhoenixXL Posted January 26, 2013 Share Posted January 26, 2013 (edited) After running the following code I received the following ConsoleOutputAfter changing the theme back to Aero also, i received the errorexpandcollapse popup#include <Constants.au3> #include <APIConstants.au3> #include <FontConstants.au3> #include <GUIConstantsEx.au3> #include <WinAPIEx.au3> #include <WindowsConstants.au3> $hFont = _WinAPI_CreateFont(16, 0, 0, 0, $FW_BOLD, 0, 0, 0, $DEFAULT_CHARSET, $OUT_DEFAULT_PRECIS, $CLIP_DEFAULT_PRECIS, $DEFAULT_PITCH, $ANTIALIASED_QUALITY, 'Arial') If @error Then Exit -1 $hForm = GUICreate('Hello', 400, 400) $hHook = DllCallbackRegister('_WinProc', 'ptr', 'hwnd;uint;long;ptr') $pHook = DllCallbackGetPtr($hHook) $hProc = _WinAPI_SetWindowLongEx($hForm, $GWL_WNDPROC, $pHook) GUISetState() Do Until GUIGetMsg() = $GUI_EVENT_CLOSE _WinAPI_SetWindowLongEx($hForm, $GWL_WNDPROC, $hProc) DllCallbackFree($hProc) Func _WinProc($hWnd, $iMsg, $wParam, $lParam) Local $Res = _WinAPI_CallWindowProcW($hProc, $hWnd, $iMsg, $wParam, $lParam) Local $hDC, $hSv Switch $iMsg Case $WM_NCACTIVATE, $WM_NCPAINT Switch $iMsg Case $WM_NCACTIVATE $hDC = _WinAPI_GetWindowDC($hWnd) If @error Then ConsoleWrite("GetWindowDC:" & _WinAPI_GetLastErrorMessage()) ;This give me error code 1 = The Parameter is Incorrect Case $WM_NCPAINT $hDC = _WinAPI_GetDCEx($hWnd, $wParam, BitOR($DCX_WINDOW, $DCX_INTERSECTRGN)) If @error Then ConsoleWrite("GetDCEx:" & _WinAPI_GetLastErrorMessage()) ;This give me error code 1 = The Parameter is Incorrect EndSwitch $hSv = _WinAPI_SelectObject($hDC, $hFont) If $hSv <= 0 Then ConsoleWrite("SelectObject1: <= 0; Message:" & _WinAPI_GetLastErrorMessage()) If _WinAPI_SetTextColor($hDC, 0x00FFFF) = -1 Then ConsoleWrite("SetTextColor: -1; Message:" & _WinAPI_GetLastErrorMessage()) If _WinAPI_SetBkMode($hDC, $TRANSPARENT) = 0 Then ConsoleWrite("SetBkMode: 0; Message:" & _WinAPI_GetLastErrorMessage()) _WinAPI_TextOut($hDC, 25, 8, 'MyGUI') If @error Then ConsoleWrite("TextOut:" & _WinAPI_GetLastErrorMessage()) ;This give me error code 1 = The Parameter is Incorrect If _WinAPI_SelectObject($hDC, $hSv) <= 0 Then ConsoleWrite("SelectObject2: <= 0; Message:" & _WinAPI_GetLastErrorMessage()) If _WinAPI_ReleaseDC($hWnd, $hDC) = False Then ConsoleWrite("ReleaseDC: False; Message" & _WinAPI_GetLastErrorMessage()) EndSwitch Return $Res EndFunc ;==>_WinProcConsoleGetDCEx:The parameter is incorrect. SelectObject1: <= 0; Message:The handle is invalid. SetTextColor: -1; Message:The handle is invalid. SetBkMode: 0; Message:The handle is invalid. TextOut:The handle is invalid. SelectObject2: <= 0; Message:The handle is invalid. ReleaseDC: False; MessageThe handle is invalid.The handle receiving from the DC fails and all the subsequent functions hence fail Edited January 26, 2013 by PhoenixXL My code: PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners. MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression. Link to comment Share on other sites More sharing options...
kylomas Posted January 26, 2013 Share Posted January 26, 2013 PhoenixXL,The code that you posted does not run on my system either. The code that I was referring to was that posted by Malkey and Yashied. Both these examples work perfectly on my system (Win7 64bit).I should have been more explicit.kylomas Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill Link to comment Share on other sites More sharing options...
PhoenixXL Posted January 26, 2013 Share Posted January 26, 2013 (edited) If you check the code i posted its the same as yashied's code, if have only added the debugging part I got the problem, the theme was overiding the colors Change to a contrast theme rather than aero like classic window theme to get the changes i'll post back the results soon Edited January 26, 2013 by PhoenixXL My code: PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners. MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression. Link to comment Share on other sites More sharing options...
PhoenixXL Posted January 26, 2013 Share Posted January 26, 2013 (edited) This should finally solve the problem - the theme was overriding the colors#include <WinAPI.au3> ; http://www.autoitscript.com/forum/index.php?showtopic=62641&view=findpost&p=469512 Global Const $COLOR_ACTIVECAPTION = 2 Global Const $COLOR_GRADIENTACTIVECAPTION = 27 Local $aElements[3] = [$COLOR_ACTIVECAPTION, $COLOR_GRADIENTACTIVECAPTION] ; Red and Yellow Local $aColors[3] = [255, 65535], $aSaveColors[2] $hGui = GUICreate("My GUI", 300, 200) DllCall("UxTheme.dll", "int", "SetWindowTheme", "hwnd", $hGui, "wstr", 0, "wstr", 0) $aSaveColors[0] = _WinAPI_GetSysColor($COLOR_ACTIVECAPTION) $aSaveColors[1] = _WinAPI_GetSysColor($COLOR_GRADIENTACTIVECAPTION) _WinAPI_SetSysColors($aElements, $aColors) GUISetState() While 1 $Msg = GUIGetMsg() Switch $Msg Case -3 ; $GUI_EVENT_CLOSE ExitLoop EndSwitch WEnd _WinAPI_SetSysColors($aElements, $aSaveColors) Edited January 26, 2013 by PhoenixXL mesale0077 1 My code: PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners. MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression. Link to comment Share on other sites More sharing options...
kylomas Posted January 26, 2013 Share Posted January 26, 2013 PhoenixXL, Good job!! I hope MyEarth appreciates it. kylomas Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill Link to comment Share on other sites More sharing options...
MyEarth Posted January 26, 2013 Share Posted January 26, 2013 Sure, i'll apprecite, but not work with the default themebut only with old theme style, i'm right? Link to comment Share on other sites More sharing options...
BrewManNH Posted January 26, 2013 Share Posted January 26, 2013 It should only affect the window that you create with the script using the DLLCall function. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
MyEarth Posted January 30, 2013 Share Posted January 30, 2013 (edited) Hi have a couple last question, sorry for this late answer:1) How to change the font color ( and maybe type ) of the TitleBar? If i make the titlebar black and the font is black i don't see nothing2) How to center the title bar text, now is everything on the left. ( EDIT :Solved adding space char, maybe there is another way but i think is good )3) How to remove that border like Windows 98 around the window?Thanks everyone Edited January 30, 2013 by MyEarth Link to comment Share on other sites More sharing options...
johnmcloud Posted January 30, 2013 Share Posted January 30, 2013 (edited) There is a problem with this line: DllCall("UxTheme.dll", "int", "SetWindowTheme", "hwnd", WinGetHandle($GUI), "wstr", 0, "wstr", 0) or DllCall("UxTheme.dll", "int", "SetWindowTheme", "hwnd", $GUI, "wstr", 0, "wstr", 0) Not apply only the the main GUI, but also to every window ( on XP ) If i double click on a title bar of a folder, or i minimize a folder i see the color of my titlebar GUI, also if i have close it. I need to reboot to remove it. How to disable the effect when the autoit GUI is closed? EDIT: Tested also on Windows 7, same problem... Edited January 31, 2013 by johnmcloud Link to comment Share on other sites More sharing options...
BrewManNH Posted January 31, 2013 Share Posted January 31, 2013 It's not supposed to do it to every window, just the one that the handle applies to. I've used this line dozens of times and it's never applied its effects to anything other than the window or control I referenced it to. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
johnmcloud Posted January 31, 2013 Share Posted January 31, 2013 (edited) Hi BrewManNH,Do you think i see strange color without no reason? Lol, check it out:The code ( is the same of Phoneix, just change to $COLOR_WINDOW for see the effect, but is the same with $COLOR_GRADIENTACTIVECAPTION) :#include <WinAPI.au3> #include <WindowsConstants.au3> Local $aElements[3] = [$COLOR_ACTIVECAPTION, $COLOR_WINDOW] ; Red and Yellow Local $aColors[3] = [255, 65535], $aSaveColors[2] $hGui = GUICreate("My GUI", 300, 200) DllCall("UxTheme.dll", "int", "SetWindowTheme", "hwnd", $hGui, "wstr", 0, "wstr", 0) $aSaveColors[0] = _WinAPI_GetSysColor($COLOR_ACTIVECAPTION) $aSaveColors[1] = _WinAPI_GetSysColor($COLOR_WINDOW) _WinAPI_SetSysColors($aElements, $aColors) GUISetState() While 1 $Msg = GUIGetMsg() Switch $Msg Case -3 ; $GUI_EVENT_CLOSE ExitLoop EndSwitch WEnd _WinAPI_SetSysColors($aElements, $aSaveColors)Image proof:My life in yellow ahah. if I wanted to do it I would not be able, it's like a real time theme I have the same problem on 7, if close the gui nothing change, i need to reboot or disconnect Edited January 31, 2013 by johnmcloud Link to comment Share on other sites More sharing options...
BrewManNH Posted January 31, 2013 Share Posted January 31, 2013 It's not caused by the line you mentioned, it's caused by this line _WinAPI_SetSysColors($aElements, $aColors) If you comment out that line, then you don't get recolored window elements in every window. So, as I said, it has nothing to do with the dllcall statement. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
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