C
Chris Oswald
I am having a problem with OpenNetCF.Net 1.4. I want to know if this
is isolated to my Dell Axim x51.
I have an x50 that runs WM 2003 and an x51 that runs WM 2005. I am
using Odyssey Client for my WiFi settings becuase I can't get WPA-PSK
to work with the Dell Wireless Lan Utility. I know I have a connection
on both PPCs because I can connect to my web services out of the
cradle.
The difference between the two PPCs is when I run the code to discover
my access points the x51 tells me I don't have any wireless access
points avialable. The better part is if I use the OpenNetCF.Net 1.1
dll it usually works . I can use the 1.1 or the 1.4 dll on my x50 and
it works all the time. I'm at a loss for what is going on. Even
though the x51 tells me I don't have a wireless connection outside of
the cradle I can still connect to my web service. Does anyone have a
clue what is up? Is this WM 2005. Is it Dell?
Here is my simple discovery code:
Dim myAdapters As AdapterCollection
Dim adapter As Adapter
'load adapter collection with adapter items
myAdapters = Networking.GetAdapters
If myAdapters.Count > 0 Then
For Each adapter In myAdapters
MsgBox(adapter.Type.ToString)
If adapter.IsWireless Then
MsgBox("Is Wireless")
MsgBox(adapter.AssociatedAccessPoint)
Else
MsgBox("Not Wireless")
End If
Next
End If
is isolated to my Dell Axim x51.
I have an x50 that runs WM 2003 and an x51 that runs WM 2005. I am
using Odyssey Client for my WiFi settings becuase I can't get WPA-PSK
to work with the Dell Wireless Lan Utility. I know I have a connection
on both PPCs because I can connect to my web services out of the
cradle.
The difference between the two PPCs is when I run the code to discover
my access points the x51 tells me I don't have any wireless access
points avialable. The better part is if I use the OpenNetCF.Net 1.1
dll it usually works . I can use the 1.1 or the 1.4 dll on my x50 and
it works all the time. I'm at a loss for what is going on. Even
though the x51 tells me I don't have a wireless connection outside of
the cradle I can still connect to my web service. Does anyone have a
clue what is up? Is this WM 2005. Is it Dell?
Here is my simple discovery code:
Dim myAdapters As AdapterCollection
Dim adapter As Adapter
'load adapter collection with adapter items
myAdapters = Networking.GetAdapters
If myAdapters.Count > 0 Then
For Each adapter In myAdapters
MsgBox(adapter.Type.ToString)
If adapter.IsWireless Then
MsgBox("Is Wireless")
MsgBox(adapter.AssociatedAccessPoint)
Else
MsgBox("Not Wireless")
End If
Next
End If