forked from burkmarr/Gilbert21
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclsInputFileEvernote.vb
73 lines (51 loc) · 2.08 KB
/
clsInputFileEvernote.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Imports System.IO
Imports Microsoft.VisualBasic.FileIO
Public Class clsInputFileEvernote
Inherits clsInputFile
Dim bmp As Bitmap = Nothing
Public Sub New(ByVal strUser As String, ByVal strPassword As String)
'ErrorMessage = frmEvernote.Authenticate(strUser, strPassword)
End Sub
Public Overrides Function GetPotentialRecords() As DataTable
Dim dt As DataTable = GetEmptyRecordsDatatable()
'Dim row As DataRow
'Dim rowEvernote As DataRow
'frmEvernote.ShowDialog()
'For Each rowEvernote In frmEvernote.Recs.Rows
' row = dt.NewRow()
' row("CommonName") = rowEvernote("Title")
' If rowEvernote("Lat") <> 0 Or rowEvernote("Lon") <> 0 Then
' row("FileLon") = rowEvernote("Lon")
' row("FileLat") = rowEvernote("Lat")
' End If
' row("RecDate") = rowEvernote("Date")
' row("RecTime") = rowEvernote("Time")
' row("DateTimeKey") = rowEvernote("DateTimeKey")
' row("Comment") = rowEvernote("Comment")
' row("VoiceFile") = rowEvernote("VoiceFile")
' row("MediaFile") = rowEvernote("MediaFile")
' dt.Rows.Add(row)
'Next
Return dt
End Function
Public Overrides Function GetTracks() As DataTable()
Dim dt(0) As DataTable
Return dt
End Function
Public Overrides Function LocationFromTime(ByVal dtetim As Date) As DataTable
Dim dt As DataTable = New DataTable
Return dt
End Function
Public Overrides Function TimeFromLocation(ByVal lat As Double, ByVal lon As Double) As DataTable
Dim dt As DataTable = New DataTable
Return dt
End Function
Public Overrides Function TrackToPoint(ByVal ref As String, ByVal dte As String, ByVal time As String, ByVal intPoints As Integer) As DataTable
Dim dt As DataTable = New DataTable
Return dt
End Function
Public Overrides Function AllTrackPoints() As DataTable
Dim dt As DataTable = New DataTable
Return dt
End Function
End Class