Search Result

Collapse
2 results in 0.0040 seconds.
Keywords
Members
Tags
windows mobile device
  •  

  • How to make application run faster on Windows Mobile Device?

    I'm running application on Windows Mobile device.

    The device I use to test the application is Symbol Motorola MC75.

    When deploy the application on the device I see that the application loading slowly to go to main screen.

    The application using a lot line of code. Is there any way I can make the application go to main screen much faster?
    See more | Go to post

  • 201211
    started a topic Convert.ToInt32

    Convert.ToInt32

    How to convert this code so don't get error: cannot implicitly convert type 'bool' to 'int'?

    int lans = SystemState.Con nectionsDesktop Count>0;

    This code SystemState.Con nectionsDesktop Count>0 is type boolean originally.

    I already try convert to this code:
    int lans = Convert.ToInt32 (SystemState.Co nnectionsDeskto pCount>0);

    and don't get any error but I think that it's not...
    See more | Go to post
Working...