Jump to content

Slider And Slider Automatic


Recommended Posts

Two Script problem

First: (I need Create Label only in TabSheet2)

Case $Slider1
        $silder = GUICtrlRead($Slider1)
        GUICtrlDelete($Label3)
        GUICtrlCreateLabel($silder, 328, 120, 35, 20)In $TabSheet2
        GUICtrlSetColor(-1, 0x0000FF)
        GUICtrlSetBkColor(-1, 0xFFFFFF)

Second: I need slider automatic "If you hold slider the label is create automatic no put down"

Link to comment
Share on other sites

  • Moderators

MikeTranser,

Q1. Create the label when you create the Tab structure so that you get it in the right place - then use GUICtrlSetState(-1, $GUI_HIDE) to hide it. When you want it to appear, just use $GUI_SHOW to make it appear. :(

Q2. I do not understand what you want to do in the second part of your request ("If you hold slider the label is create automatic no put down") - can you please explain in a bit more detail?

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

  • Moderators

Miketranser,

I understand now! I think this does what you want: :(

#include <GUIConstantsEx.au3>

$hGUI = GUICreate("Test", 500, 500)

$tab = GUICtrlCreateTab(10, 10, 200, 100)

    $tab0 = GUICtrlCreateTabItem("Tab 0")

    $tab1 = GUICtrlCreateTabItem("Tab 1")

    $tab2 = GUICtrlCreateTabItem("Tab 2")
    ; Create label and hide it
    $hLabel = GUICtrlCreateLabel("", 30, 80, 50, 20)
    GUICtrlSetState(-1, $GUI_HIDE)

GUICtrlCreateTabItem(""); end tabitem definition

$hSlider = GUICtrlCreateSlider(10, 250, 480, 30)

GUISetState()

$iLastSlider = 0

While 1

    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch

    ; When cursor is over slider and button is down
    $aInfo = GUIGetCursorInfo($hGUI)
    If $aInfo[2] = 1 And $aInfo[4] = $hSlider Then Check_Slider()

WEnd

Func Check_Slider()

    ; Show label
    GUICtrlSetState($hLabel, $GUI_SHOW)
    ; While button is pressed
    While $aInfo[2]
        $iCurrSlider = GUICtrlRead($hSlider)
        ; Update label if value has changed
        If $iCurrSlider <> $iLastSlider Then
            $iLastSlider = $iCurrSlider
            GUICtrlSetData($hLabel, $iCurrSlider)
        EndIf
        $aInfo = GUIGetCursorInfo($hGUI)
    WEnd
    ; Hode label again
    GUICtrlSetState($hLabel, $GUI_HIDE)

EndFunc

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

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...