Jump to content

How to change Msgbox font size ?


naru
 Share

Recommended Posts

is it possible to change/increase the font size in a message box and Msgbox tittle font ?
 

My Code : #include <MsgBoxConstants.au3>
WinActivate ("[Class:WindowsForms1033c0d9d]")
ControlClick("[Class:WindowsForms1033c0d9d]", "", "[NAME:SavebyFP]")
ControlSend ("[Class:WindowsForms1033c0d9d]", "", "[NAME:SavebyFP]", "{ENTER}") ;Becuase Controlclick not working 
WinWait("Verification Number Entry", "", 10)
ControlSend("Verification Number Entry", "", "[NAME:txtNumber]", "^v")
 Local $sData = ClipGet()

if stringlen($sData) = 10 then
ControlClick("Verification Number Entry", "", "[NAME:btnNext]")
WinWait("Verification Members")
ControlClick("Verification Members", "", "[CLASS:WindowsForms10.BUTTON.33c0d9d; INSTANCE:10]")
ControlSend("Verification Members", "", "[CLASS:WindowsForms10.BUTTON.33c0d9d; INSTANCE:10]", "{ENTER}") ;Becuase Controlclick not working 
Else
   MsgBox(0, "Number Not Copied", "Please enter 10 Digits Number") ;Change font size
   EndIf

and controlclick not working on button.

Link to comment
Share on other sites

  • Moderators

@Nareshm for that I would suggest using Melba's Extended MsgBox UDF; it allows for what you are after and much more:

 

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

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...