Messagebox title from db value -


the below 1st command displays msg along title ppfc. i'm trying fetch info db. 2nd command shows i'm able msg db couldn't set title db column. instead of "ppfc" i'm tring put resulterr[2].screen_nm.tostring() fetches , displays in title.

1) messagebox.show("please select value division dropdown","ppfc");

2) messagebox.show(resulterr[2].error_message_template.tostring() + ", " + resulterr[2].screen_nm.tostring(), "ppfc", messageboxbuttons.ok, messageboxicon.information);

according this documentation, overloaded method

messagebox.show(string,string); 

can used specify caption in addition actual message. if more details of message box have specified, this overload can used.


Comments