dazza Posted November 12, 2009 Posted November 12, 2009 This: $label 1 = GUICtrlCreateLabel(chr(68), 190, 60, 50, 50, $SS_BLACKFRAME) GUICtrlSetFont($label, 40, 400, 0, "Wingdings") Just shows a black-framed label with nothing in it. How do I simply put an outline around a label (and have text in the label) Many thanks
Yashied Posted November 12, 2009 Posted November 12, 2009 GUICtrlCreateLabel('', 10, 10, 100, 20) GUICtrlSetBkColor(-1, 0xFFA000) GUICtrlCreateLabel('Text', 10 + 1, 10 + 1, 100 - 2, 20 - 2, BitOR($SS_CENTER, $SS_CENTERIMAGE)) 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...
Malkey Posted November 12, 2009 Posted November 12, 2009 This: $label 1 = GUICtrlCreateLabel(chr(68), 190, 60, 50, 50, $SS_BLACKFRAME) GUICtrlSetFont($label, 40, 400, 0, "Wingdings") Just shows a black-framed label with nothing in it. How do I simply put an outline around a label (and have text in the label) Many thanks A working example modified from help file. #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> Local $font, $msg GUICreate("My GUI") ; will create a dialog box that when displayed is centered $font = "Wingdings" $label = GUICtrlCreateLabel("D", 190, 60, 55, 60, BitOR($SS_CENTER, $SS_CENTERIMAGE), BitOR($SS_BLACKFRAME, $SS_CENTERIMAGE));,$WS_EX_WINDOWEDGE );,$SS_BLACKRECT,,$SS_BLACKFRAME) )) GUICtrlSetFont(-1, 46, 400, 4, $font) GUICtrlCreateLabel(Chr(67), 10, 60, 60, 60, $WS_BORDER) GUICtrlSetFont(-1, 46, 400, 2, $font) GUISetState() ; Run the GUI until the dialog is closed While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop WEnd
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