Madza91 Posted February 1, 2009 Posted February 1, 2009 Hello, I just wonder why is this line in FileMenu black when is GUI style popup window... ?! I want normal line color with that style! Hehe #include <WindowsConstants.au3> $Form1 = GUICreate("Form1", 633, 447, -1, -1, BitOR($WS_MINIMIZEBOX,$WS_POPUP,$WS_GROUP,$WS_CLIPSIBLINGS)) $MenuItem1 = GUICtrlCreateMenu("Why is this line black below?") GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case -3 Exit EndSwitch WEnd [quote name='dbzfanatic' post='609696' date='Nov 26 2008, 08:46 AM']This is a help forum not a "write this for me" forum.[/quote](Sorry for bad English) :)
Moderators Melba23 Posted February 1, 2009 Moderators Posted February 1, 2009 n3nE, That line is an integral part of the menu - I do not believe that you can have a menu without it. Have you tried masking or overwriting it with, for instance, a 1 pixel deep label? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Madza91 Posted February 1, 2009 Author Posted February 1, 2009 I don't want FileMenu without that line, I sad "I want normal line color with that style!" Normal color = Default color of that existing line, like in GUI with default style... [quote name='dbzfanatic' post='609696' date='Nov 26 2008, 08:46 AM']This is a help forum not a "write this for me" forum.[/quote](Sorry for bad English) :)
BrettF Posted February 2, 2009 Posted February 2, 2009 Could still use what he said by setting the background color of that label... Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
Moderators Melba23 Posted February 2, 2009 Moderators Posted February 2, 2009 n3n3, I have now checked and you cannot mask the line - the user area starts just underneath it. Sorry I cannot be of more assistance - even if I still wanted to be. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Madza91 Posted February 2, 2009 Author Posted February 2, 2009 Right that... But must be some similar GUI style with normal FileMenu's line color... [quote name='dbzfanatic' post='609696' date='Nov 26 2008, 08:46 AM']This is a help forum not a "write this for me" forum.[/quote](Sorry for bad English) :)
Malkey Posted February 2, 2009 Posted February 2, 2009 Hello, I just wonder why is this line in FileMenu black when is GUI style popup window... ?! I want normal line color with that style! Hehe #include <WindowsConstants.au3> $Form1 = GUICreate("Form1", 633, 447, -1, -1, BitOR($WS_MINIMIZEBOX,$WS_POPUP,$WS_GROUP,$WS_CLIPSIBLINGS)) $MenuItem1 = GUICtrlCreateMenu("Why is this line black below?") GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case -3 Exit EndSwitch WEndoÝ÷ Ûú®¢×¢"a® Ê&zíá *'¶º%JÜ¥zƧvØ^^×JÜ¥z¢éÝ· ,·)^²ØZ¶·¦¢÷¶§$)Þºw^®Ø^éîjëh×6#include <WindowsConstants.au3> ;$Form1 = GUICreate("Form1", 633, 447, -1, -1,BitOR($WS_POPUPWINDOW,$WS_SIZEBOX)); or $WS_THICKFRAME $Form1 = GUICreate("Form1", 633, 447, -1, -1, BitOR($WS_POPUPWINDOW, $WS_CLIPSIBLINGS), $WS_EX_DLGMODALFRAME) $MenuItem1 = GUICtrlCreateMenu("Why is this line black below?") GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case - 3 Exit EndSwitch WEnd
Madza91 Posted February 2, 2009 Author Posted February 2, 2009 That's much better (it's not exactly what I want but never mind), thank you for the help [quote name='dbzfanatic' post='609696' date='Nov 26 2008, 08:46 AM']This is a help forum not a "write this for me" forum.[/quote](Sorry for bad English) :)
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