ShowGPS hat folgendes geschrieben: |
...Da sie leider nicht Binär-Kompatibel kompiliert ist, müßtet ihr sonst einmal eure EXE neu kompilieren bei einer neuen DLL-Version. |
Code: |
Option Explicit
Public WithEvents oFMRadioHAL As FMRadioHAL.C_FMRadioHAL Public iFMRadioHAL As FMRadioHAL.I_FMRadioHAL 'strong binding use while you are developing that the IDE shows you the functions and subs and their parameters ! 'Public iFMRadioHAL As Object 'late binding use before you build to avoid collisions with new versions of FMRadioHAL (which may offer more functions, ...)! ... Private Sub Form_Load() Dim FehlerStr As String On Error GoTo Fehler FehlerStr = "Set oFMRadioHAL = New FMRadioHAL.C_FMRadioHAL" Set oFMRadioHAL = New FMRadioHAL.C_FMRadioHAL FehlerStr = "Set iFMRadioHAL = oFMRadioHAL" Set iFMRadioHAL = oFMRadioHAL FehlerStr = "iFMRadioHAL.Connect" iFMRadioHAL.Connect FehlerStr = "iFMRadioHAL.FreqUP" Me.Caption = "using: " + CStr(iFMRadioHAL.Info) Exit Sub Fehler: MsgBox FehlerStr + Chr(13) + CStr(Err.Number) + " - " + Err.Description End Sub ... |
ShowGPS hat folgendes geschrieben: |
Es sind noch Features hinzugekommen, die es erleichtern damit auch direkt einen TMC-Empfänger anzusprechen und TMC-Sender zu suchen. |