Search the Community
Showing results for tags 'resizable'.
-
Gui newbie has a question. Why is the _GUICtrlEdit_Create in the program (select No) not resizing the edit window. I can't figure out what parameter I've not set correctly. As an aside other than the $hWnd what's the advantage/difference of using _GUICtrl functions over GUICtrl? Thanks. #AutoIt3Wrapper_run_debug_mode=Y ;use this to debug in console window <--- LOOK #include <GuiConstants.au3> #include <GuiEdit.au3> $ans = MsgBox(4, "", "Run resizeable?") If $ans = 6 Then $hGUI = GUICreate(@ScriptName, 500, 400, 700, 300, BitOR($WS_M
- 5 replies
-
- guictrlcreateedit
- _guictrledit_create
-
(and 1 more)
Tagged with:
-
Hello! I am trying make my GUI Controls resize correctly... Here is my GUI's code: #include <ButtonConstants.au3> #include <ColorConstants.au3> #include <ComboConstants.au3> #include <GUIConstantsEx.au3> #include <ListViewConstants.au3> #include <WindowsConstants.au3> Global $g_hMainGUI = GUICreate("Test GUI", 500, 316, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU, $WS_MAXIMIZEBOX, $WS_SIZEBOX)) GUISetBkColor($COLOR_WHITE, $g_hMainGUI) GUICtrlCreateGroup("Box 1", 6, 2, 488, 197) GUICtrlSetResizing(-1,
-
This is a basic editor that uses IE functions and jasvscript/css to control the display and highlight terms. It sets the html docuement in to edit mode, to be used as the edit box, and the javascript scans and runs the highlighter onkeyup. The example is set to highlight "If", "Then" and "EndIf". If you were to type "endif", it would automatically change it to "EndIf" and highlight it. Example Source Code: #NoTrayIcon #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <IE.au3> #include <WindowsConstants.au3> Opt("GUIOnEventMode", 1) Opt("GUIResiz
-
- syntax
- highlighting
-
(and 3 more)
Tagged with: