views:

179

answers:

1

Hello, I'm a beginner so sorry if my question seems basic. I've looked online but haven't find anything on it so it must be something very simple.

I'm trying to get my application to show in the running apps bar in windows mobile when minimized. I minimize the app using ShowWindow(this.Handle, SW_MINIMIZED); and it works fine but my app does not appear neither in the running apps, nor in the settings\memory\running programs. When i click the app icon in the start menu, it shows me the last status of the app so i conclude it is indeed minimized and not closed. I've also set the icon in the form to the app icon, to no avail.

Is there sometinhg i'm missing? BTW, i'm using CF3.5 with Winmo 6 pro. Thank you Jeremy

+1  A: 

The "Running Programs" applets simply enumerates the Form Caption of all top-level windows (it's not looking at processes). Make sure your Form has a caption and it will appear.

ctacke
the caption is the icon in the form properties, right?i'm not sure anymore...
jeremy
sorry, discard my last (dumb) question...it works now.thank you.
jeremy