How to open the dialog box dynamically in iOS?

Make a repeating dialog box visual basic?

  • I want to create a dialog box in VB 2010 such that no matter if the user selects yes or no on the dialog box, the dialog pops up again, and the only way to close it would be to click ...show more

  • Answer:

    Dim result As Integer display_again: result = MessageBox.Show("Do you want to Quit the Application", "Exit?", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Warning) If result = 6 Or result = 7 Then GoTo display_again Else Me.Close() End If End Sub '---I USED THE DIALOG YESNOCANCEL, because the [ X ] button in YESNO is not enabled. '---CODE VERIFIED AND TESTED VIA VB2005

RJRELPB6BBWWQJVKDUYMRVCOBI at Yahoo! Answers Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.