how to partner/bind items on different lists

104 Views Asked by At

these are my declarations..

Public fList As New List(Of Form)
Dim mNameList As New List(Of String)
Dim mList As New List(Of GMapMarker)
Dim cList As New List(Of Integer)     'recently added code
Dim hList As New List(Of String)      'recently added code

this is my code where I add items on my list..

For Each dtrow In markerDtable.Rows
        marker = New GMapMarkerGoogleGreen(New PointLatLng(dtrow("Latitude"), dtrow("Longitude")))
        marker.ToolTipText = dtrow("MarkerName")

        mNameList.Add(dtrow("MarkerName"))
        cList.Add(dtrow("CameraID"))            'recently added code

I really hope you get what I want to say.. this is really hard for me. lol

anyway, as you can see, I add elements to my List for each data in my database. this code gives me the result that I need. Loads all the data (markers) on the map at Form_Load. If ever I add another data, (name,Lat,Lng) when form loads, viola another marker added on the map.

the List mNameList stands for the List of marker names not ID. just names..
onto the next code..

For Each m In mNameList
            For Each c In cList                    'recently added code
                If item.ToolTipText = m Then
                    Dim f As New Form2
                    fList.Add(f)
                    mList.Add(item)
                    With f
                        .Show()

                        .AxXHDec1.Camera = c       'recently added code
                        .AxXHDec1.Host = some ip   'recently added code

                        Dim p As New Point
                        p = item.LocalPosition + New Point(15, 30)
                        .Location = p
                        .Text = m
                    End With
                    Exit Sub
                End If
            Next
Next

now this code, is on the Marker_Click event. SO, every time I click the marker, it shows me the forms added to fList then a corresponding condition that that form will show to a specific marker..
so if I have a marker named "Golf Club", form Golf Club will appear..

with that condition, I can bring out the form that I want to get.
back to the problem I am facing..

this is my database.. and cList must contain CameraID
so if things went smoothly, if I pull out starmall I should get the starmall form + the video feed from Camera3

enter image description here

RESULT: OnMarker_Click --> all markers I click, displays only Camera1.. though what I want is pull out the camera# depending on what MarkerName/Form.Text I am clicking..

REMINDER: recently added code -- means that that is the first attempt of me solving my solution. other codes are working perfectly. I just need some workaround.

this is not google's API.. I am using gmaps.net from codeplex.

QUESTION: how can I pull out the camera# in reference to the MarkerName?

ask questions for me to make it clearer for you.

1

There are 1 best solutions below

6
On

note,

        For Each c In cList                    'recently added code
            If item.ToolTipText = m Then

you did not show where this item came from.

anyway, ToolTipText and m are both independent of cameraID c. hence the first c in cList will always match for all marker. That is why you get camera1.


I suggest a bit of code refactoring. you said that all the lists contain equal number of items, one each for one marker row in datatable. so, better make a small class say it MarkerRow.

class MarkerRow
    dim MarkerName as string
    dim cameraID as integer
    dim hostAddress as string

    dim marker as GMapMarker
end class

create only ONE list, make it of marker type rather than bunch of strings and integers

dim markers as new List(of MarkerRow)

now iterate over the datatable and fill ONE item each of one datarow

For Each dtrow In markerDtable.Rows
    dim marker = New GMapMarkerGoogleGreen(New PointLatLng(dtrow("Latitude"), dtrow("Longitude")))
    marker.ToolTipText = dtrow("MarkerName")

    dim markerRow = new MarkerRow
    with markerRow
        .MarkerName = dtrow("MarkerName")
        .cameraID = dtrow("CameraID")
        .hostAddress = dtrow("hostAddress")

        .marker = marker
    end with
next

this way, when you need a marker, you always have all the information at one place

dim m as MarkerRow = markers(0) ' or whatever by any criteria you like

then you will automaticaly have

m.cameraID
m.marker
m.markerName

and so on