What is MessageBoxA? Is it an inbuilt function in WinRunner?

Showing Answers 1 - 7 of 7 Answers

Mythily

  • Apr 19th, 2006
 

MessageBoxA is an Inbuilt fucntion in winrunner Tool. It will display the User Msg similar to VB Message Box.

Eg: MessageBoxA("Welcome","Welcome","HI","BOLD");

  Was this answer useful?  Yes

I tried to use MessageBoxA function in Winrunner but its not working ?? Really dont know whether it is an in built function of winrunner or not....Usually we use report_msg() function for writing message in the report.......

  Was this answer useful?  Yes

ChakDe

  • Sep 19th, 2007
 

# MessageBoxA(Owner,Message,Title,Style);
for (i=0;i<20;i++){
MessageBoxA("Owner","Message","Title",i);
}
pause("Paused MessageBoxA function");
# copy paste this code and run it, the messagebox styles are changed #depending
on the style value.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions