J
James Hetfield
Hello
I am coding a DLL which should run in Full and Compact Framework. Everything
is working ok, but I wanted to use this:
Dim dr As Object
If CurrentView = ViewMode.ServiceManager Then
dr = New SqlDataAdapter(SQL, ServerConnection)
Else
dr = New SqlCEDataAdapter(SQL, MobileConnection)
End if
But I get the error "Late Binding not supported"
Is there an easy way to get around this problem?
THanks
James
I am coding a DLL which should run in Full and Compact Framework. Everything
is working ok, but I wanted to use this:
Dim dr As Object
If CurrentView = ViewMode.ServiceManager Then
dr = New SqlDataAdapter(SQL, ServerConnection)
Else
dr = New SqlCEDataAdapter(SQL, MobileConnection)
End if
But I get the error "Late Binding not supported"
Is there an easy way to get around this problem?
THanks
James