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.