Avoid the step to the previous form but has closed the current one, vb Devexpress

0

I have a form in which information is entered, it's like a pop-up window.

There is some function that prevents me from using the previous form with just a click, the problem is that it is only clicked and remains open, I hope I have understood.

    
asked by avargasma 19.04.2016 в 21:33
source

1 answer

1

You can open a form in two ways:

Form.Show (): open the form as a normal window. Therefore, when it is open, you can still work with other open forms (for example, switch between them).

Form.ShowDialog (): opens the form with modal instance, therefore, until you close the form you will not be able to access the other forms.

    
answered by 29.04.2016 в 23:35