Yes, these are modeless forms.
"Rulin Hong" <(E-Mail Removed)> wrote in message
news:1DDEC55B-C3BB-415C-8B60-(E-Mail Removed)...
> You can't work on other winForm if you use ShowDialog so that the
> application
> is blocked by the dialog form.
>
> "steve" wrote:
>
>>
>> if i understand you right:
>> I had a similar question and this is the answer I got from Greg:
>>
>> Dim f as new MyForm
>> If f.ShowDialog(Me) = DialogResult.OK Then
>> ' do something
>> End If
>> f.Dispose()
>>
>>
>>
>> I think myForm.showDialog(Me)
>> will also work
>>
>> HTH
>> -steve
>>
>> "Robin Tucker" <(E-Mail Removed)> a écrit dans
>> le
>> message de news: clr20d$ski$1$(E-Mail Removed)...
>> >
>> > How can I make my form stay on top of all the other forms in my
>> > application? I don't want the form to stay on top in Windows as a
>> > whole,
>> > just be on top of all the other forms in the given application
>> > instance.
>> >
>> > Thanks,
>> >
>> >
>> > Robin
>> >
>>
>>
>>
|