naru Posted August 15, 2017 Posted August 15, 2017 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.
Moderators JLogan3o13 Posted August 15, 2017 Moderators Posted August 15, 2017 @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!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now