Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Unpinned Toolbar Timeout?
#2
simplest way is to create a hook function for the toolbar

Function ToolbarSelfClose
Code:
Copy      Help
;/
function# hWnd message wParam lParam

;OutWinMsg message wParam lParam ;;uncomment to see received messages
int-- t
sel message
,case WM_INITDIALOG
,SetTimer hWnd 1 1000 0
,case WM_TIMER
,sel wParam
,,case 1
,,if t =10;; close toolbar after 10 seconds(change number to how many seconds you want it to autoclose)
,,,KillTimer hWnd 1
,,,clo hWnd    
,,t+1
,case WM_DESTROY

then add the function to the toolbar properties
   


Messages In This Thread
Unpinned Toolbar Timeout? - by pctechtv - 09-27-2019, 03:58 AM
RE: Unpinned Toolbar Timeout? - by Kevin - 09-27-2019, 03:00 PM
RE: Unpinned Toolbar Timeout? - by pctechtv - 09-27-2019, 03:13 PM
RE: Unpinned Toolbar Timeout? - by pctechtv - 09-27-2019, 04:30 PM
RE: Unpinned Toolbar Timeout? - by Kevin - 09-27-2019, 06:25 PM
RE: Unpinned Toolbar Timeout? - by pctechtv - 09-27-2019, 08:05 PM
RE: Unpinned Toolbar Timeout? - by Kevin - 09-30-2019, 12:35 AM
RE: Unpinned Toolbar Timeout? - by pctechtv - 10-01-2019, 08:57 PM
RE: Unpinned Toolbar Timeout? - by Kevin - 10-02-2019, 02:20 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)