Form Hide() / Show() problem

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
 
C

Christian Schwarz

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
 
A

Anthony Wong [MSFT]

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top