Jump to content

some questions


mangle
 Share

Recommended Posts

MsgBox(0, '', 'Line 1' & @LF & 'Line 2')

FileGetTime() ?

Thnx man, it's works! :D

And another question: how I can create traytip, which will displays only when user over his mouse on my program icon in tray?

And one more :): how I can do special edit text in msgbox? Bold, center, italic etc

Edited by mangle
Link to comment
Share on other sites

For the first question, you can start with this:

Opt('TrayOnEventMode', 1)

TraySetOnEvent(-11, '_Hover')

While 1
  Sleep(100)
Wend

Func _Hover()
  TrayTip('Title', 'Message', 30)
EndFunc

Unfortunately, for the second question, you can't do formatted text in a MsgBox. Look into the GUI stuff for a little more flexibility.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...