Hottest Free Downloads - DownloadPipe.com Over 197,000 downloads! Bookmark Now!
DownloadPipe.com - New Downloads Every Minute
 SEARCH:
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

WM5 GPS Position using GPS Intermediate Driver

 
   PDA (Home) -> Pocket PC - Developer RSS
Next:  RTC  
Author Message
MarkusPoehler

External


Since: Jul 30, 2008
Posts: 4



(Msg. 1) Posted: Wed Jul 30, 2008 7:18 am
Post subject: WM5 GPS Position using GPS Intermediate Driver
Archived from groups: microsoft>public>pocketpc>developer (more info?)

Hi,
it took me about two days to get the c# GPS Sample project provided with WM
5/6 SDK running on my PPC 5/6 emulators. Actually I am using the code from
the SDK6 sample to run on my WM5 EMulator and on my WM5 PPC Hardware.
Everything works fine, the Emulator shows the position given from the FakeGPS
Textfile.
But on my PCC (HTC Trin100 where GPS device is built in) the application
never retireves any valid information about the position. It properly shows
the no of satellites using position.SatellitesInViewCountValid. But the
position.LongitudeValid and position.LatitudeValid values are never set to
true, so I can not get the DOUBLE values of the position.

I learned that the GPS Intermediate Driver is the "modern" way of connecting
to the GPS Hardware being able to use it through different apps at the same
time. So I focused on this way of connecting. I also read a few articles
explaining that one has to change the registry of WM to enable GPS, I wonder
if I have to do so and how. I am also confused about the software and
hardware port settings - let's say I would set them to any ports, what effect
might that have to my application, that doesn't have any port definition
inside itself?

Can anyone provide help on this?

Thanks, Markus
Back to top
Login to vote
Henryk Birecki

External


Since: Nov 30, 2005
Posts: 28



(Msg. 2) Posted: Wed Jul 30, 2008 8:17 am
Post subject: Re: WM5 GPS Position using GPS Intermediate Driver [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

MarkusPoehler <poehler.TakeThisOut@etpoint.de> wrote:

>Hi,
>it took me about two days to get the c# GPS Sample project provided with WM
>5/6 SDK running on my PPC 5/6 emulators. Actually I am using the code from
>the SDK6 sample to run on my WM5 EMulator and on my WM5 PPC Hardware.
>Everything works fine, the Emulator shows the position given from the FakeGPS
>Textfile.
>But on my PCC (HTC Trin100 where GPS device is built in) the application
>never retireves any valid information about the position. It properly shows
>the no of satellites using position.SatellitesInViewCountValid. But the
>position.LongitudeValid and position.LatitudeValid values are never set to
>true, so I can not get the DOUBLE values of the position.
>
>I learned that the GPS Intermediate Driver is the "modern" way of connecting
>to the GPS Hardware being able to use it through different apps at the same
>time. So I focused on this way of connecting. I also read a few articles
>explaining that one has to change the registry of WM to enable GPS, I wonder
>if I have to do so and how. I am also confused about the software and
>hardware port settings - let's say I would set them to any ports, what effect
>might that have to my application, that doesn't have any port definition
>inside itself?
>
>Can anyone provide help on this?
>
> Thanks, Markus

Go and test outside, where you get real GPS signal. More than likely
Intermediate driver is just flagging the fact that it is not getting a
real fix.

Yes, you can access the GPS hardware port directly. You probably need
to set your device to NOT manage the GPS. In that case you also neeed
to turn off all other programs using GPS, and access COM port via
CreateFile, and parse the NMEA sentences. Since I have heard nothing
but bad things about HTC products, you may also find out that this
approach may not work on their devices. At some point I was told that
there is an application called port splitter that had to be used in
order to get at raw GPS data on some of these, but this is hearsay.

If you want your application to run on older devices (prior to WM5)
you need to go the raw NMEA data from COM port route.

Cheers,
Henryk
Back to top
Login to vote
MarkusPoehler

External


Since: Jul 30, 2008
Posts: 4



(Msg. 3) Posted: Wed Jul 30, 2008 9:14 am
Post subject: Re: WM5 GPS Position using GPS Intermediate Driver [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Henryk, thanks for your advice.

I had tried my pcc outside before - without any change. It shws me etween 6
and 9 satellites but never any position information.

Please consider I am new to these things, so I dont' know what you mean with
"access COM port via CreateFile, and parse the NMEA sentences." What do I
have to do next? Can you provide me any sample code?


Thanks, Markus


"Henryk Birecki" wrote:

> MarkusPoehler <poehler DeleteThis @etpoint.de> wrote:
>
> >Hi,
> >it took me about two days to get the c# GPS Sample project provided with WM
> >5/6 SDK running on my PPC 5/6 emulators. Actually I am using the code from
> >the SDK6 sample to run on my WM5 EMulator and on my WM5 PPC Hardware.
> >Everything works fine, the Emulator shows the position given from the FakeGPS
> >Textfile.
> >But on my PCC (HTC Trin100 where GPS device is built in) the application
> >never retireves any valid information about the position. It properly shows
> >the no of satellites using position.SatellitesInViewCountValid. But the
> >position.LongitudeValid and position.LatitudeValid values are never set to
> >true, so I can not get the DOUBLE values of the position.
> >
> >I learned that the GPS Intermediate Driver is the "modern" way of connecting
> >to the GPS Hardware being able to use it through different apps at the same
> >time. So I focused on this way of connecting. I also read a few articles
> >explaining that one has to change the registry of WM to enable GPS, I wonder
> >if I have to do so and how. I am also confused about the software and
> >hardware port settings - let's say I would set them to any ports, what effect
> >might that have to my application, that doesn't have any port definition
> >inside itself?
> >
> >Can anyone provide help on this?
> >
> > Thanks, Markus
>
> Go and test outside, where you get real GPS signal. More than likely
> Intermediate driver is just flagging the fact that it is not getting a
> real fix.
>
> Yes, you can access the GPS hardware port directly. You probably need
> to set your device to NOT manage the GPS. In that case you also neeed
> to turn off all other programs using GPS, and access COM port via
> CreateFile, and parse the NMEA sentences. Since I have heard nothing
> but bad things about HTC products, you may also find out that this
> approach may not work on their devices. At some point I was told that
> there is an application called port splitter that had to be used in
> order to get at raw GPS data on some of these, but this is hearsay.
>
> If you want your application to run on older devices (prior to WM5)
> you need to go the raw NMEA data from COM port route.
>
> Cheers,
> Henryk
>
>
Back to top
Login to vote
Henryk Birecki

External


Since: Nov 30, 2005
Posts: 28



(Msg. 4) Posted: Wed Jul 30, 2008 11:38 am
Post subject: Re: WM5 GPS Position using GPS Intermediate Driver [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Markus,

Go to http://vancouver-webpages.com/peter/nmeafaq.txt for a primer on
NMEA sentences. GPS sends out its information on a serial port (COM
port). WinCE accesses serial interfaces via names like "COM1:",
"COM2:" .... You get (and send) data from a serial interface by
opening a file handle to it (CreateFile function) and doing follow on
read and write on the handle typically in a multithreaded program
because of asynchronous nature of data processing. The Intermediate
GPS Driver that you are trying to use does all this for you and
presents "digested" data.

Unfortunately I cannot give you any code as all my code is C++ (I
cannot imagine life without pointers Smile ), but I am certain that there
are general references to serial communication in the C# world. I am
also doubtful that going through the trouble would lead to better
results. Did you try to contact HTC and see what their folks have to
say about it? As I said, all I heard about HTC was troubles.

One thing you can do is to try my application and see if you can get
any position data from your device. Go to
http://www.soaringpilotsoftware.com/GPS_LOGpage.htm and download
GPS_LOG WinCE program. Read documentation section that talks about
NMEA setup (all this may be a bit intimidating). The RS232 port
selector should have an entry like #gpsAPI, or @gps-0. If it does not,
it means that HTC is not giving appropriate registry information, and
you probably should abandon GPS_LOG. If you use anything but #gpsAPI,
you should configure the GPS in your PPC GPS settings to NOT managed
by PPC. If @gps-0 is not there, you will have to find out which port,
and what baud rate to use.

There are probably other, simpler free GPS applications you may want
to try and see if they work.

Cheers,
Henryk

MarkusPoehler <poehler.RemoveThis@etpoint.de> wrote:

>Henryk, thanks for your advice.
>
>I had tried my pcc outside before - without any change. It shws me etween 6
>and 9 satellites but never any position information.
>
>Please consider I am new to these things, so I dont' know what you mean with
>"access COM port via CreateFile, and parse the NMEA sentences." What do I
>have to do next? Can you provide me any sample code?
>
>
>Thanks, Markus
>
>
>"Henryk Birecki" wrote:
>
>> MarkusPoehler <poehler.RemoveThis@etpoint.de> wrote:
>>
>> >Hi,
>> >it took me about two days to get the c# GPS Sample project provided with WM
>> >5/6 SDK running on my PPC 5/6 emulators. Actually I am using the code from
>> >the SDK6 sample to run on my WM5 EMulator and on my WM5 PPC Hardware.
>> >Everything works fine, the Emulator shows the position given from the FakeGPS
>> >Textfile.
>> >But on my PCC (HTC Trin100 where GPS device is built in) the application
>> >never retireves any valid information about the position. It properly shows
>> >the no of satellites using position.SatellitesInViewCountValid. But the
>> >position.LongitudeValid and position.LatitudeValid values are never set to
>> >true, so I can not get the DOUBLE values of the position.
>> >
>> >I learned that the GPS Intermediate Driver is the "modern" way of connecting
>> >to the GPS Hardware being able to use it through different apps at the same
>> >time. So I focused on this way of connecting. I also read a few articles
>> >explaining that one has to change the registry of WM to enable GPS, I wonder
>> >if I have to do so and how. I am also confused about the software and
>> >hardware port settings - let's say I would set them to any ports, what effect
>> >might that have to my application, that doesn't have any port definition
>> >inside itself?
>> >
>> >Can anyone provide help on this?
>> >
>> > Thanks, Markus
>>
>> Go and test outside, where you get real GPS signal. More than likely
>> Intermediate driver is just flagging the fact that it is not getting a
>> real fix.
>>
>> Yes, you can access the GPS hardware port directly. You probably need
>> to set your device to NOT manage the GPS. In that case you also neeed
>> to turn off all other programs using GPS, and access COM port via
>> CreateFile, and parse the NMEA sentences. Since I have heard nothing
>> but bad things about HTC products, you may also find out that this
>> approach may not work on their devices. At some point I was told that
>> there is an application called port splitter that had to be used in
>> order to get at raw GPS data on some of these, but this is hearsay.
>>
>> If you want your application to run on older devices (prior to WM5)
>> you need to go the raw NMEA data from COM port route.
>>
>> Cheers,
>> Henryk
>>
>>
Back to top
Login to vote
MarkusPoehler

External


Since: Jul 30, 2008
Posts: 4



(Msg. 5) Posted: Thu Jul 31, 2008 4:56 am
Post subject: Re: WM5 GPS Position using GPS Intermediate Driver [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi Henryk,

thanks for your support.

Unfortunately I didn't have any luck.
I have installed a registry editor to unhide the GPS Settings Panel.
Then I changed the Soft- and Hardware Ports of GPS and let the PCC Access
checkbox on. My program behaved different after that, it startet searching
for GPS signal, did not return unrealistic number of satellites any more but
never returned any data.
Then I tried your program. What port I ever configure in the NMEA settings
dialog - it always says: "NO GPS". I also tried out the settings #gpsAPI and
or @gps-0 without success.
Then I unchecked the auto checkbox in WM5 GPS configuration as advised in
your posting and tried a few COM Ports again, without success.

After three days of try and error I give up now. Mir reicht's jetzt.

Thanks, Markus
poehler.at.netpoint.de


"Henryk Birecki" wrote:

> Markus,
>
> Go to http://vancouver-webpages.com/peter/nmeafaq.txt for a primer on
> NMEA sentences. GPS sends out its information on a serial port (COM
> port). WinCE accesses serial interfaces via names like "COM1:",
> "COM2:" .... You get (and send) data from a serial interface by
> opening a file handle to it (CreateFile function) and doing follow on
> read and write on the handle typically in a multithreaded program
> because of asynchronous nature of data processing. The Intermediate
> GPS Driver that you are trying to use does all this for you and
> presents "digested" data.
>
> Unfortunately I cannot give you any code as all my code is C++ (I
> cannot imagine life without pointers Smile ), but I am certain that there
> are general references to serial communication in the C# world. I am
> also doubtful that going through the trouble would lead to better
> results. Did you try to contact HTC and see what their folks have to
> say about it? As I said, all I heard about HTC was troubles.
>
> One thing you can do is to try my application and see if you can get
> any position data from your device. Go to
> http://www.soaringpilotsoftware.com/GPS_LOGpage.htm and download
> GPS_LOG WinCE program. Read documentation section that talks about
> NMEA setup (all this may be a bit intimidating). The RS232 port
> selector should have an entry like #gpsAPI, or @gps-0. If it does not,
> it means that HTC is not giving appropriate registry information, and
> you probably should abandon GPS_LOG. If you use anything but #gpsAPI,
> you should configure the GPS in your PPC GPS settings to NOT managed
> by PPC. If @gps-0 is not there, you will have to find out which port,
> and what baud rate to use.
>
> There are probably other, simpler free GPS applications you may want
> to try and see if they work.
>
> Cheers,
> Henryk
>
> MarkusPoehler <poehler RemoveThis @etpoint.de> wrote:
>
> >Henryk, thanks for your advice.
> >
> >I had tried my pcc outside before - without any change. It shws me etween 6
> >and 9 satellites but never any position information.
> >
> >Please consider I am new to these things, so I dont' know what you mean with
> >"access COM port via CreateFile, and parse the NMEA sentences." What do I
> >have to do next? Can you provide me any sample code?
> >
> >
> >Thanks, Markus
> >
> >
> >"Henryk Birecki" wrote:
> >
> >> MarkusPoehler <poehler RemoveThis @etpoint.de> wrote:
> >>
> >> >Hi,
> >> >it took me about two days to get the c# GPS Sample project provided with WM
> >> >5/6 SDK running on my PPC 5/6 emulators. Actually I am using the code from
> >> >the SDK6 sample to run on my WM5 EMulator and on my WM5 PPC Hardware.
> >> >Everything works fine, the Emulator shows the position given from the FakeGPS
> >> >Textfile.
> >> >But on my PCC (HTC Trin100 where GPS device is built in) the application
> >> >never retireves any valid information about the position. It properly shows
> >> >the no of satellites using position.SatellitesInViewCountValid. But the
> >> >position.LongitudeValid and position.LatitudeValid values are never set to
> >> >true, so I can not get the DOUBLE values of the position.
> >> >
> >> >I learned that the GPS Intermediate Driver is the "modern" way of connecting
> >> >to the GPS Hardware being able to use it through different apps at the same
> >> >time. So I focused on this way of connecting. I also read a few articles
> >> >explaining that one has to change the registry of WM to enable GPS, I wonder
> >> >if I have to do so and how. I am also confused about the software and
> >> >hardware port settings - let's say I would set them to any ports, what effect
> >> >might that have to my application, that doesn't have any port definition
> >> >inside itself?
> >> >
> >> >Can anyone provide help on this?
> >> >
> >> > Thanks, Markus
> >>
> >> Go and test outside, where you get real GPS signal. More than likely
> >> Intermediate driver is just flagging the fact that it is not getting a
> >> real fix.
> >>
> >> Yes, you can access the GPS hardware port directly. You probably need
> >> to set your device to NOT manage the GPS. In that case you also neeed
> >> to turn off all other programs using GPS, and access COM port via
> >> CreateFile, and parse the NMEA sentences. Since I have heard nothing
> >> but bad things about HTC products, you may also find out that this
> >> approach may not work on their devices. At some point I was told that
> >> there is an application called port splitter that had to be used in
> >> order to get at raw GPS data on some of these, but this is hearsay.
> >>
> >> If you want your application to run on older devices (prior to WM5)
> >> you need to go the raw NMEA data from COM port route.
> >>
> >> Cheers,
> >> Henryk
> >>
> >>
>
>
Back to top
Login to vote
MarkusPoehler

External


Since: Jul 30, 2008
Posts: 4



(Msg. 6) Posted: Wed Aug 06, 2008 2:12 am
Post subject: Re: WM5 GPS Position using GPS Intermediate Driver [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi Henryk
after talking to vodafone I let my device outside for about half an hour.
Then it had found 4 satellites (Vodavonfe Navigator Software)!
So hardware seems to be working.
Now I wonder why my and your application still do not. What settings do you
suggest at Software- and Hardware Port setting and the Windows-auto manage
checkbox in the GPS Control panel?

Thanks, Markus

--
Thanks, Markus


"Henryk Birecki" wrote:

> Markus,
>
> Go to http://vancouver-webpages.com/peter/nmeafaq.txt for a primer on
> NMEA sentences. GPS sends out its information on a serial port (COM
> port). WinCE accesses serial interfaces via names like "COM1:",
> "COM2:" .... You get (and send) data from a serial interface by
> opening a file handle to it (CreateFile function) and doing follow on
> read and write on the handle typically in a multithreaded program
> because of asynchronous nature of data processing. The Intermediate
> GPS Driver that you are trying to use does all this for you and
> presents "digested" data.
>
> Unfortunately I cannot give you any code as all my code is C++ (I
> cannot imagine life without pointers Smile ), but I am certain that there
> are general references to serial communication in the C# world. I am
> also doubtful that going through the trouble would lead to better
> results. Did you try to contact HTC and see what their folks have to
> say about it? As I said, all I heard about HTC was troubles.
>
> One thing you can do is to try my application and see if you can get
> any position data from your device. Go to
> http://www.soaringpilotsoftware.com/GPS_LOGpage.htm and download
> GPS_LOG WinCE program. Read documentation section that talks about
> NMEA setup (all this may be a bit intimidating). The RS232 port
> selector should have an entry like #gpsAPI, or @gps-0. If it does not,
> it means that HTC is not giving appropriate registry information, and
> you probably should abandon GPS_LOG. If you use anything but #gpsAPI,
> you should configure the GPS in your PPC GPS settings to NOT managed
> by PPC. If @gps-0 is not there, you will have to find out which port,
> and what baud rate to use.
>
> There are probably other, simpler free GPS applications you may want
> to try and see if they work.
>
> Cheers,
> Henryk
>
> MarkusPoehler <poehler.TakeThisOut@etpoint.de> wrote:
>
> >Henryk, thanks for your advice.
> >
> >I had tried my pcc outside before - without any change. It shws me etween 6
> >and 9 satellites but never any position information.
> >
> >Please consider I am new to these things, so I dont' know what you mean with
> >"access COM port via CreateFile, and parse the NMEA sentences." What do I
> >have to do next? Can you provide me any sample code?
> >
> >
> >Thanks, Markus
> >
> >
> >"Henryk Birecki" wrote:
> >
> >> MarkusPoehler <poehler.TakeThisOut@etpoint.de> wrote:
> >>
> >> >Hi,
> >> >it took me about two days to get the c# GPS Sample project provided with WM
> >> >5/6 SDK running on my PPC 5/6 emulators. Actually I am using the code from
> >> >the SDK6 sample to run on my WM5 EMulator and on my WM5 PPC Hardware.
> >> >Everything works fine, the Emulator shows the position given from the FakeGPS
> >> >Textfile.
> >> >But on my PCC (HTC Trin100 where GPS device is built in) the application
> >> >never retireves any valid information about the position. It properly shows
> >> >the no of satellites using position.SatellitesInViewCountValid. But the
> >> >position.LongitudeValid and position.LatitudeValid values are never set to
> >> >true, so I can not get the DOUBLE values of the position.
> >> >
> >> >I learned that the GPS Intermediate Driver is the "modern" way of connecting
> >> >to the GPS Hardware being able to use it through different apps at the same
> >> >time. So I focused on this way of connecting. I also read a few articles
> >> >explaining that one has to change the registry of WM to enable GPS, I wonder
> >> >if I have to do so and how. I am also confused about the software and
> >> >hardware port settings - let's say I would set them to any ports, what effect
> >> >might that have to my application, that doesn't have any port definition
> >> >inside itself?
> >> >
> >> >Can anyone provide help on this?
> >> >
> >> > Thanks, Markus
> >>
> >> Go and test outside, where you get real GPS signal. More than likely
> >> Intermediate driver is just flagging the fact that it is not getting a
> >> real fix.
> >>
> >> Yes, you can access the GPS hardware port directly. You probably need
> >> to set your device to NOT manage the GPS. In that case you also neeed
> >> to turn off all other programs using GPS, and access COM port via
> >> CreateFile, and parse the NMEA sentences. Since I have heard nothing
> >> but bad things about HTC products, you may also find out that this
> >> approach may not work on their devices. At some point I was told that
> >> there is an application called port splitter that had to be used in
> >> order to get at raw GPS data on some of these, but this is hearsay.
> >>
> >> If you want your application to run on older devices (prior to WM5)
> >> you need to go the raw NMEA data from COM port route.
> >>
> >> Cheers,
> >> Henryk
> >>
> >>
>
>
Back to top
Login to vote
Henryk Birecki

External


Since: Nov 30, 2005
Posts: 28



(Msg. 7) Posted: Wed Aug 06, 2008 9:59 am
Post subject: Re: WM5 GPS Position using GPS Intermediate Driver [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

MarkusPoehler <poehler DeleteThis @etpoint.de> wrote:

>Hi Henryk
>after talking to vodafone I let my device outside for about half an hour.
>Then it had found 4 satellites (Vodavonfe Navigator Software)!

4 satellites is typically a small number , half an hour is pitiful.

>So hardware seems to be working.
>Now I wonder why my and your application still do not. What settings do you
>suggest at Software- and Hardware Port setting and the Windows-auto manage
>checkbox in the GPS Control panel?

Let Windows automanage. Somewhere in configuration you should see the
port on which to listen. Use RMC NMEA code. #gpsAPI uses Intermediate
driver. There should be no difference between my application and
yours. Try the COM port listed in GPS configuration as one to listen
to.

If still does not work, turn off auto manage. gps@-0 entry should use
the hardware GPS connection listed in registry. After you come back to
NMEA settings, it will show you what. Make certain that all other
applications using GPS are turned off (not hiden). Other than that,
your guess is as good as mine.

[NoGPS] does not necessarily mean that NMEA data are not coming in.
They may, but are not valid (test outside). If anything is coming in,
you should see some readable data in a window on NMEA setup dialog.
Settings take hold when you exit the dialog, so you have to come back
to it to see. Make certain to check "Ignore errors" and clear "Use
RX_FLAG" for testing purposes. You may also want to experiment with
"Continuous"

Cheers,
Henryk
Back to top
Login to vote
Asif Basha

External


Since: Dec 24, 2008
Posts: 1



(Msg. 8) Posted: Wed Dec 24, 2008 2:21 am
Post subject: Hi [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I want to write gps application using gps intermediate driver in c#.net 2005. so please send
some sample code.........

Regards
Asif
Back to top
Login to vote
NeilH

External


Since: Nov 10, 2008
Posts: 2



(Msg. 9) Posted: Wed Dec 24, 2008 10:26 am
Post subject: Re: Hi [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

<Asif Basha> wrote in message
news:2008122452120asifbasha_honey@rediffmail.com...
> I want to write gps application using gps intermediate driver in c#.net
2005. so please send
> some sample code.........
>
> Regards
> Asif

Google?
Back to top
Login to vote
r_z_aret

External


Since: Jun 04, 2005
Posts: 337



(Msg. 10) Posted: Wed Dec 24, 2008 2:35 pm
Post subject: Re: Hi [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

You will be more likely to get useful answers if you use a more useful
subject; in particular, "hi" looks like SPAM.

More below (in line)

On Wed, 24 Dec 2008 02:21:20 -0800, Asif Basha wrote:

>I want to write gps application using gps intermediate driver in c#.net 2005. so please send
>some sample code.........

This group is _primarily_ for folks who don't use .NET languages. With
that in mind, I just used google
(http://groups.google.com/advanced_search?q=&) to look up
gps
in microsoft.public.dotnet.framework.compactframework and got 705
hits. I took a quick look and think I saw some relevant hits, but you
may need to wade through several to get useful info. Maybe even
pointers to sample code.

>
>Regards
>Asif

-----------------------------------------
To reply to me, remove the underscores (_) from my email address (and please indicate which newsgroup and message).

Robert E. Zaret, eMVP
PenFact, Inc.
20 Park Plaza, Suite 400
Boston, MA 02116
www.penfact.com
Back to top
Login to vote
taximania

External


Since: Dec 25, 2008
Posts: 2



(Msg. 11) Posted: Thu Dec 25, 2008 8:09 pm
Post subject: Re: Hi [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Why re-invent the wheel.
http://msdn.microsoft.com/en-us/library/bb158708.aspx




<r_z_aret.TakeThisOut@pen_fact.com> wrote in message
news:jg25l4t50jis02eb6km51v9efecl5lr38c@4ax.com...
> You will be more likely to get useful answers if you use a more useful
> subject; in particular, "hi" looks like SPAM.
>
> More below (in line)
>
> On Wed, 24 Dec 2008 02:21:20 -0800, Asif Basha wrote:
>
>>I want to write gps application using gps intermediate driver in c#.net
>>2005. so please send
>>some sample code.........
>
> This group is _primarily_ for folks who don't use .NET languages. With
> that in mind, I just used google
> (http://groups.google.com/advanced_search?q=&) to look up
> gps
> in microsoft.public.dotnet.framework.compactframework and got 705
> hits. I took a quick look and think I saw some relevant hits, but you
> may need to wade through several to get useful info. Maybe even
> pointers to sample code.
>
>>
>>Regards
>>Asif
>
> -----------------------------------------
> To reply to me, remove the underscores (_) from my email address (and
> please indicate which newsgroup and message).
>
> Robert E. Zaret, eMVP
> PenFact, Inc.
> 20 Park Plaza, Suite 400
> Boston, MA 02116
> www.penfact.com
Back to top
Login to vote
Display posts from previous:   
Related Topics:
NDIS intermediate driver on PocketPC 2003 - Using platform builder 4.2 and i compiled included passthru ndis intermediate driver sample. I copied the passthru.dll onto \\windows directory of PocketPC 2003 device. I included in the registry necessary changes : [HKEY_LOCAL_MACHINE\Comm\PASSTHRU] ...

NDIS Intermediate Driver WM5- not complete loaded @ bootse.. - Hi, i am developing an NDIS Intermediate Driver for Windows Mobile 5. The DriverEntry is complete loading but when devices.exe try's to call Handler from the protocol part it crashes.... I am developing in VisualStudio2005 anybody an idea how to..

Wrong GPS position - Hello, what can be the reason for a GPS Longitude of zero or something like 1,5? Our "normal" Longitude is in the range of seven to nine. We use a TomTom Bluetooth GPS with Sirf III. Regards Christian

Getting the screen position on in VB.net - Hi, I'm using vb.net to develop an application. I would like to know which lib should I use to get the screen position when the user touch on the screen? Thanks!

Getting text and caret position from a control in another .. - Hi, Am developing an application which requires knowledge of the current state of input (text string and caret position of a Control) in a third-party application. e.g. my application must be able to get the text contents and input position from the...
       PDA (Home) -> Pocket PC - Developer All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum
Categories:
 Windows Forums
 Game Forums
 Linux Forums
 Mac Forums
  PDA Forums
 Mobile Forums
  Top  |  Store  |  RSS Feeds RSS  |  Data Feeds  |  Advertise  |  Submit  |  Bookmark  |  Newsletter  |  Contact