How I display a pop-up dialog box with 2 buttons ( Yes or Not ) ?
I want to use some similar to: %MsgStyle_YesNo but in tthe same window i dont want that the message display in a separate window.
REM MessageBox(style, title, message_set, message_num, default_txt [, paramlist]);
&AnswerYesNo = MessageBox(%MsgStyle_YesNo, "", 21, 27, "Are you sure to delete this data "); REM Return 6 is Yes and returns 7 its that the botton No was selected ;
If &AnswerYesNo = 6 Then
MessageBox(0, "", 0, 0, "The procedure to eliminate from DB begin... "); &MiSQL = CreateSQL("Delete from %Table(:1) where Condition =: 1", &Condition);
End-If;
Note: Is on PeopleSoft Pure Internet Architecture
| Title | Under | Posted on |
|---|---|---|
| how to create application status in peoplesoft campus solutions 8.9 version | PeopleSoft Functional | 05/17/2012 - 4:09am |
| horizantal text in charts | PeopleSoft Technical | 05/10/2012 - 4:57am |
| no current buffer context error | PeopleSoft Technical | 05/10/2012 - 1:19am |
| Integration Broker : Operating Instance/Pub Contracts/Sub Contracts | PeopleSoft Technical | 04/24/2012 - 11:05am |
I know WinMessage does display that on a page BUT PeopleSoft doesn't recommend using WinMessage. It has been replaced by MessageBox.
Give back to the community and help it grow!
* Help with unanswered forum questions and issues
* Register or login to share your knowledge at your own blog
what is the issue here?
Yes, I'm using MessageBox, but it not work... display on other page like modal... And i want that in the SAME WINDOW display the box...
I want to simulate something like the same windows popup when you delete a row on a grid... I dont want that the page reload...
Post new comment