Form Hide() / Show() problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I'm facing a major problem related to the hiding and showing of Win Forms on WinC
I've written a simple program in which I Hide the form, then do some processing, and finally show back the form
But the form is not shown as the foremost, but instead appears in the background
Is this a bug with .NET Compact framework? or with WinCE? or am I doing something wrong

Here is the code that I've written on the Click event of a butto

Me.Hide(
.............................
............................
Me.Show(

Thanking you in anticipation
 
I'm facing a major problem related to the hiding and showing of Win Forms
on WinCE
I've written a simple program in which I Hide the form, then do some
processing, and finally show back the form.
But the form is not shown as the foremost, but instead appears in the background.
Is this a bug with .NET Compact framework? or with WinCE? or am I doing something wrong.

Here is the code that I've written on the Click event of a button

Me.Hide()
.............................
............................
Me.Show()

Do you set Me.Enable to false besides calling Me.Hide() ? Some time ago, I
had strange problems with this constellation ...

Greetings, Christian
 
Can you attach a small piece of code reproducing the issue? Thanks.

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top