Jump to content

Search the Community

Showing results for tags 'GUICtrlSetTip'.

  • 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 3 results

  1. I have tried _GUIToolTip_AddTool() & GUICtrlSetTip() & TrayItemGetHandle() but have had no luck...is there a way that I have missed, or is it not possible to create a ToolTip for an individual item in the Tray?
  2. Local $idRep = GUICtrlCreateMenuItem(">My First Report", $idReportmenu) GUICtrlSetTip($idRep, "Standard Report") Nothing appears obvious. It may be impossible to set a tip to a menu Item... ? Any ideas please?
  3. Could someone please explain where my thoughts went wrong? GUICtrlSetTip($arrTemp[$i][0],$arrTemp[$i][1]) I searched the forum and I found of course some posts, but I didn't found the right idea/hint. I fear it's a face palm for me..... I stripped down everything to this: #include <Debug.au3> #include <array.au3> _DebugSetup(@ScriptName,False,2) #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 351, 270, 192, 124) $Button1 = GUICtrlCreateButton("Button1", 64, 32, 217, 65) $Button2 = GUICtrlCreateButton("Button2", 64, 112, 217, 65) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### local $MessageBundletextfile="MSGBUNDLE.INI" local $arrTemp $arrTemp=IniReadSection($MessageBundletextfile,"CONTROLTIP") _ArrayDisplay($arrTemp) for $i = 1 to $arrTemp[0][0] _debugout($arrTemp[$i][0]&":"&$arrTemp[$i][1]) GUICtrlSetTip($arrTemp[$i][0],$arrTemp[$i][1]) Next While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd File Conent of $MessageBundletextfile="MSGBUNDLE.INI" [CONTROLTIP] $hGui = "Hello" $Button1 = "Tip on Button1" $Button2 = "Tip on Button2"
×
×
  • Create New...