About GPS ToolKit
Introduction
Purchasing GPS ToolKit
Redistributing GPS ToolKit
License Agreement
Support
Getting Started
How to Use GPS ToolKit
Adding GPS ToolKit to a Visual Basic Project
Adding GPS ToolKit to a Visual C++ Project
Adding GPS ToolKit to an Excel Worksheet
Setting up the GPS
How to Use Events
Handling Events in Visual Basic
Handling Events in Visual C++
Handling Events in Microsoft Excel
GPS ToolKit Sample Projects
Handling GPS ToolKit Errors
Reference
Properties
Altitude
AltitudeUnits
ArrivedAtDest
AutomaticOperation
BaudRate
CrossTrackError
DegLabel
DestClosingVelocity
DestWptID
DestWptLatitude
DestWptLongitude
DistUnits
DGPSRefStationID
FixDateTime
FixGood
FixQuality
FixSatellitePRNs
GeoidHeightAboveWGS84Ellipsoid
HDOP
Latitude
LatLonFormat
Longitude
MagVariation
MinLabel
ModeIndicator
NumSatellitesInFix
NumSatellitesInView
OperationMode
OrigToDestMagBearing
OrigToDestTrueBearing
OriginWptID
PDOP
PortHandle
PortName
RangeToDest
RouteContainsAllWpts
RouteName
SatelliteInViewPRNs
SecLabel
Speed
SpeedUnits
TimeSinceLastDGPSUpdate
TrueBearingToDest
TrueCourse
VDOP
WptsInRoute
Methods
Close
GetSatelliteInfo
GetWptLocation
Open
OpenFile
Events
FixUpdate
FileComplete
NavUpdate
RawDataReceived
SatelliteUpdate

RawDataReceived Event

Triggered when a complete data sentence has been received from the GPS.

Syntax

Visual Basic

Private Sub GPSToolKitObject_RawDataReceived(ByVal RawData As Variant, ByVal NumBytesRead As Variant)

Visual C++

void CMyWindowName::OnRawDataReceivedGpstoolkit(const VARIANT FAR& RawData, const VARIANT FAR& NumBytesRead)

Arguments

Argument Description
RawData a VARIANT (type VT_BSTR/BSTR/VB String) containing the last complete GPS sentence received
NumBytesRead a VARIANT (type VT_I4/long) containing the number of bytes in the last complete GPS sentence

Remarks

See Using GPS ToolKit Events for information and instructions regarding GPS ToolKit event handling.

Errors

None

See Also

Using GPS ToolKit Events