Jump to content

Search the Community

Showing results for tags 'hide show controls'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Hi all, I have problem, I'm trying to hide/show many controls using 2 hide methods (i posted them) but they hiding/showing too slowly (As you see my program have many controls and "picture controls" that i need to hide/show verry fast) I dont have any "Sleeps" in my program but it's still works too slow (to hide all controls it brings over 2 seconds) What can we do here ? Need help... p.s: sorry for my English. Func hide_page1a() For $i = $PG_1 to $Label4bb GuiCtrlSetState($i, $GUI_HIDE) Next EndFunc Func show_page1a() For $i = $PG_1 to $Label4bb GuiCtrlSetState($i, $GUI_SHOW) Next EndFunc Func hide_page1() GUICtrlSetState ($BLK1, $GUI_HIDE) GUICtrlSetState ($BLK2, $GUI_HIDE) GUICtrlSetState ($BLK3, $GUI_HIDE) GUICtrlSetState ($BLK4, $GUI_HIDE) GUICtrlSetState ($DOT1, $GUI_HIDE) GUICtrlSetState ($DOT2, $GUI_HIDE) GUICtrlSetState ($DOT3, $GUI_HIDE) GUICtrlSetState ($Label1XA, $GUI_HIDE) GUICtrlSetState ($Label1XB, $GUI_HIDE) GUICtrlSetState ($Label2XA, $GUI_HIDE) GUICtrlSetState ($Label2XB, $GUI_HIDE) GUICtrlSetState ($Label3XA, $GUI_HIDE) GUICtrlSetState ($Label3XB, $GUI_HIDE) GUICtrlSetState ($ICO_LOG, $GUI_HIDE) GUICtrlSetState ($LAB1, $GUI_HIDE) GUICtrlSetState ($LAB2, $GUI_HIDE) GUICtrlSetState ($LAB3, $GUI_HIDE) GUICtrlSetState ($Label1, $GUI_HIDE) GUICtrlSetState ($Label1a, $GUI_HIDE) GUICtrlSetState ($Label1aa, $GUI_HIDE) GUICtrlSetState ($Label1b, $GUI_HIDE) GUICtrlSetState ($Label1bb, $GUI_HIDE) GUICtrlSetState ($Label2, $GUI_HIDE) GUICtrlSetState ($Label2a, $GUI_HIDE) GUICtrlSetState ($Label2aa, $GUI_HIDE) GUICtrlSetState ($Label2b, $GUI_HIDE) GUICtrlSetState ($Label2bb, $GUI_HIDE) GUICtrlSetState ($Label3, $GUI_HIDE) GUICtrlSetState ($Label3a, $GUI_HIDE) GUICtrlSetState ($Label3aa, $GUI_HIDE) GUICtrlSetState ($Label3b, $GUI_HIDE) GUICtrlSetState ($Label3bb, $GUI_HIDE) GUICtrlSetState ($Label4, $GUI_HIDE) GUICtrlSetState ($Label4a, $GUI_HIDE) GUICtrlSetState ($Label4aa, $GUI_HIDE) GUICtrlSetState ($Label4b, $GUI_HIDE) GUICtrlSetState ($Label4bb, $GUI_HIDE) EndFunc ; -------------------------------------------- Func show_page1() GUICtrlSetState ($BLK1, $GUI_SHOW) GUICtrlSetState ($BLK2, $GUI_SHOW) GUICtrlSetState ($BLK3, $GUI_SHOW) GUICtrlSetState ($BLK4, $GUI_SHOW) GUICtrlSetState ($DOT1, $GUI_SHOW) GUICtrlSetState ($DOT2, $GUI_SHOW) GUICtrlSetState ($DOT3, $GUI_SHOW) GUICtrlSetState ($Label1XA, $GUI_SHOW) GUICtrlSetState ($Label1XB, $GUI_SHOW) GUICtrlSetState ($Label2XA, $GUI_SHOW) GUICtrlSetState ($Label2XB, $GUI_SHOW) GUICtrlSetState ($Label3XA, $GUI_SHOW) GUICtrlSetState ($Label3XB, $GUI_SHOW) GUICtrlSetState ($ICO_LOG, $GUI_SHOW) GUICtrlSetState ($LAB1, $GUI_SHOW) GUICtrlSetState ($LAB2, $GUI_SHOW) GUICtrlSetState ($LAB3, $GUI_SHOW) GUICtrlSetState ($Label1, $GUI_SHOW) GUICtrlSetState ($Label1a, $GUI_SHOW) GUICtrlSetState ($Label1aa, $GUI_SHOW) GUICtrlSetState ($Label1b, $GUI_SHOW) GUICtrlSetState ($Label1bb, $GUI_SHOW) GUICtrlSetState ($Label2, $GUI_SHOW) GUICtrlSetState ($Label2a, $GUI_SHOW) GUICtrlSetState ($Label2aa, $GUI_SHOW) GUICtrlSetState ($Label2b, $GUI_SHOW) GUICtrlSetState ($Label2bb, $GUI_SHOW) GUICtrlSetState ($Label3, $GUI_SHOW) GUICtrlSetState ($Label3a, $GUI_SHOW) GUICtrlSetState ($Label3aa, $GUI_SHOW) GUICtrlSetState ($Label3b, $GUI_SHOW) GUICtrlSetState ($Label3bb, $GUI_SHOW) GUICtrlSetState ($Label4, $GUI_SHOW) GUICtrlSetState ($Label4a, $GUI_SHOW) GUICtrlSetState ($Label4aa, $GUI_SHOW) GUICtrlSetState ($Label4b, $GUI_SHOW) GUICtrlSetState ($Label4bb, $GUI_SHOW) EndFunc
×
×
  • Create New...