Jump to content

Search the Community

Showing results for tags 'status bar resource files'.

  • 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 to all I'm trying to create a status bar what would display some error texts, and for the more longer warning mensages I want to display it in form of a ballon tip. The problem is, after I read all the help file related to "_GUICtrlStatusBar", I can't create a ballon tip on status. example: #include <GUIConstantsEx.au3> #include <GuiStatusBar.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("Example app", 400, 60, 192, 124) $Status = _GUICtrlStatusBar_Create($Form1, -1, "", $SBARS_TOOLTIPS) _GUICtrlStatusBar_SetSimple($Status) _GUICtrlStatusBar_SetText($Status, "Ready") _GUICtrlStatusBar_SetTipText($Status, -1, "Tip Text...") While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd The other problem is setting a icon to a context menu and include in the rc_data a "file.exe" #AutoIt3Wrapper_Res_Icon_Add=C:\files\icon.ico #AutoIt3Wrapper_Res_File_Add=C:\files\file.exe, Binary, _myexe while 1 TraySetIcon(@ScriptFullPath,-5) Sleep(1000) runwait(@ScriptFullPath,_myexe) WEnd Thanks for your time.
×
×
  • Create New...