iPAQUtil.DLL

G

Guest

Hi
I've a iPaq 5550 and a iPaq 3715 and would like to switch ON and OFF WiFi
programmatically.
I paid the $200 to HP to get the SDK, but I can not find the iPAQUtil.DLL.
Can anyone tell me how to get this DLL and probably give me a VB.NET example
how to do the task?
Thanks
Bruno
 
A

Alex Feinman [MVP]

IPAQUtil should be already on 5550 and 3715

As for using it, I suspect (have no means to check) that you need to declare
a function like this

Imports System.Runtime.InteropServices

<DllImport("ipaqutil")> _
public shared function iPAQSetWLANRadio(ByRef dwValue as Integer) as Boolean
End Function

and call it as:

Dim val as Integer = 0
iPAQSetWLANRadio(val)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top