User Profile

Collapse

Profile Sidebar

Collapse
gopishk
gopishk
Last Activity: Aug 2 '10, 05:24 PM
Joined: Apr 5 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Its only the default GPS system of the phone which is getting the locations. No separate system is there on phone to give Gps positions.
    See more | Go to post

    Leave a comment:


  • What is Easting/Northing of Gps String and where to find it? I can get you those details, if you can please tell me where are they?...
    See more | Go to post

    Leave a comment:


  • I am not sure about that. For other times iam getting good Lat/Long co-ordinates as 37.55567853,-122.29018033, sometimes this mobile gives the above invalid location. In G-maps, though it shows a location for it. But on seeing its values as -1E-08 seems to be invalid....
    See more | Go to post

    Leave a comment:


  • Getting invalid GPS signal for Samsung Omnia i910

    I am getting -1E-08,-1E-08 as Lat/Long most of the times for Omnia i910. Say 4 our of 10 times. And this location is no where near to my place. And think its not even a valid GPS location. Wonder if this the GPS receiver of the phone problem or anything else.
    Can we do something to rectify it?
    See more | Go to post
    Last edited by Niheel; May 6 '10, 04:25 PM. Reason: spelling, grammar, post cleaning

  • I tried running that sample on emulator, but it behaves normally, means it does not show anything to do gps settings. I think its not detecting the phone gps status.

    They are just opening the GpsDeviceDriver for receiving gps from the device.
    Is this the correct flow? Any other way i can find the gps status of device?
    See more | Go to post

    Leave a comment:


  • Get if Gps settings are enabled or not on windows mobile 5.0

    How can we get if the Gps of the phone is enabled or disabled? Can you provide a small code snippet in C# for Windows Mobile 5.0 for detecting if Gps on WinMo is enabled or disabled. I have to use that in my application. If some API gives a bool value in return, so that i can use it for detecting gps on mobile.
    See more | Go to post

  • gopishk
    started a topic Capture Volume Key events C#

    Capture Volume Key events C#

    I want capture Volume Up and Volume Down key events using C# for windows mobile 5.0.

    Does anyone have sample piece of code or example?
    See more | Go to post

  • I have 1 screen which is having ImageButtons(Op tions, such as - Settings, Help and About), this is not a touch phone(HTC Ozone), so need to implement KeyDown method for this class.

    I had tried adding the KeyDown method for this class, but on pressing anykey, everytime it opens the last imagebutton's contents(the About screen). Iam not getting its behaviour. And do we need to add a highlighter for the imagebuttons as well or WinMo will...
    See more | Go to post

    Leave a comment:


  • Windows Mobile KeyDown method error for navigation keys C#

    Hi,
    I have an HTC Ozone, which has no touch support. So have to implement KeyDown method to trace the navigation keys.
    In the screen i have image buttons, so when iam pressing any of the keys, its only selecting/opening the last image button contents.
    And also i cant see any highlighter moving on pressing the navigation keys.

    The KeyDown method i added is as follows:

    Code:
    private void UnbrandedUI_KeyDown(object
    ...
    See more | Go to post

  • Do you have any idea about how to implement a custom textbox?
    Is this the only way? I thought there would be a simple way to pull a numeric keypad on the screen using C#, similar to the previous link you sent?
    See more | Go to post

    Leave a comment:


  • Thanks for the search,
    actually iam looking for the same thing in C#.

    The properties of TextBox mentioned are not available in C#.

    Can you suggest something similar in C#?
    See more | Go to post

    Leave a comment:


  • Iam working on Windows Mobile 5.0 that uses C# coding. And on Smartphones virtual keypad comes on the screen whenever there is a textbox to write into it.

    I have this textbox that validates only numbers to be entered, but i dont want the character virtual keyboard to arrive on screen, instead by default for this text box, only the numeric keypad to come always.

    can you share some small code for textbox.keyPres s for ...
    See more | Go to post

    Leave a comment:


  • The validation of entering numbers is already done as:

    Code:
    void textbox_phoneNumber_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
            {
                //Ignore if not 0-9 or backspace char
                if ((e.KeyChar < '0' || e.KeyChar > '9') && (e.KeyChar != '\b'))
                {
                    e.Handled = true;
                }
            }
    But...
    See more | Go to post
    Last edited by tlhintoq; Apr 5 '10, 11:29 PM. Reason: [CODE] ...Your code goes between code tags [/CODE]

    Leave a comment:


  • Show Numeric keypad only for textbox containing phone number

    I have a text box and it can contain only numbers. Similar to a phone number text box while adding a new contact. Programatically how can we open only the numeric keypad instead of both text/numeric keypad.

    By this the user cannot enter text at anytime. Though validation for symbols can be made later.
    Can you provide a code snippet for opening only a numeric keypad to enter numbers only for the text box.
    See more | Go to post

  • gopishk
    replied to Simple Keypad
    Hi,
    I have a text box and it can contain only numbers. Programatically can we open only the numeric keypad instead of both text/numeric keypad.
    By this the user cannot enter text at anytime. Though validation for symbols can be made later.
    Can you provide a code snippet for opening only a numeric keypad to enter numbers only for the text box.


    Thanks,
    Gopish
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...