Jump to content

Some stupid question :P


Madza91
 Share

Recommended Posts

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) :)

Link to comment
Share on other sites

  • Moderators

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

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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) :)

Link to comment
Share on other sites

  • Moderators

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

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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) :)

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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) :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...