FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Pocket PC Bluetooth Activated
Posts: 401
Joined: Thu Oct 06, 2005 10:15 PM
Bluetooth Activated
Posted: Thu Nov 12, 2009 02:14 PM
Greetings,

FWPCC a way that can be activated from the bluetooth if this is off


Code (fw): Select all Collapse
public class BlueTooth

{

private enum BluetoothMode : int

{

Off = 0, //Turn off the Bluetooth radio.

Connectable = 1, //Turn on the Bluetooth radio, and make it connectable.

Discoverable = 2 //Turn on the Bluetooth radio, and make it both connectable and discoverable.

};

[DllImport("BthUtil.dll")]

private static extern int BthSetMode(BluetoothMode mode);

public static bool EnableBT()

{

return (BthSetMode(BluetoothMode.Connectable) == 0);

}

public static bool DisableBT()

{

return (BthSetMode(BluetoothMode.Off) == 0);

}

}
Saludos,



Pablo Alberto Vidal

/*

------------------------------------------------------

Harbour 3.2.0, Fivewin 17.02, BCC7

------------------------------------------------------

*/
Posts: 401
Joined: Thu Oct 06, 2005 10:15 PM
Re: Bluetooth Activated
Posted: Fri Nov 13, 2009 01:14 AM
Saludos,



Pablo Alberto Vidal

/*

------------------------------------------------------

Harbour 3.2.0, Fivewin 17.02, BCC7

------------------------------------------------------

*/
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: Bluetooth Activated
Posted: Fri Nov 13, 2009 11:17 AM

Hello Pablo,

thank you for the code.
Maybe you also have a soltion for WiFi ON/OFF.

Thanks in advance,
Otto

Continue the discussion