000
21.08.2013, 09:15 Uhr
~MeCoding
Gast
|
Guten Morgen, ich möchte meinen Laptop (64Bit) mit meinem Win8 Tablet (32Bit) via Bluetooth verbinden. Zudem habe ich mich auch schon etwas mit der 32feet.net Library auseinander gesetzt und folgenden Code erstellt.
C++: |
public partial class Form1 : Form { private static string BTMacAddress = "00:00:00:00:00:00"; private static string Pin = "123testpin321"; private BluetoothClient Device = new BluetoothClient(); private static BluetoothAddress BTAddress = BluetoothAddress.Parse(BTMacAddress); //private BluetoothEndPoint BTEndpoint = new BluetoothEndPoint(BTAddress, BluetoothService.DialupNetworking); public Form1() { InitializeComponent(); } private void BTConnect_Click(object sender, EventArgs e) { if(!BluetoothSecurity.PairRequest(BTAddress,Pin)) MessageBox.Show("Failed"); else MessageBox.Show("Done"); } }
|
Das aller erste Ausführen des Programms hat funktioniert und ich habe eine Reaktion auf dem Tablet wahrgenommen, nur leider war das das einzige mal.. Ich würde gerne wissen woran das liegt, weiß wer mehr?
Gruß Me |