.NET Components for Mobility

32feet.NET does not support the Bluetooth stack on this device.

Last post 07-10-2008 5:59 AM by Andy Hume. 5 replies.
Page 1 of 1 (6 items)
Sort Posts: Previous Next
  • 07-07-2008 8:25 PM

    32feet.NET does not support the Bluetooth stack on this device.

    I want search all bluetooth equipment in window xp2, this is my code :

     BluetoothAddress[ address_array = new BluetoothAddress[1000];
            private Thread search_thread;
            private Thread send_thread;

      private void button_find_devices_Click(object sender, EventArgs e)
            {
                this.button_find_devices.Enabled = false;
                this.search_thread = new Thread(new ThreadStart(search));
                this.search_thread.Start();
               
            }

    public delegate void set(string value);
            private void settext(string value)
            {
                this.listBox_devices.Items.Add(value);
            }

            private void search()
            {
                //this.listBox_devices.Items.Clear();
                set se = new set(settext);
                BluetoothClient bc = new BluetoothClient();
                BluetoothDeviceInfo[ array = bc.DiscoverDevices();
                for (int i = 0; i < array.Length; i++)
                {
                    this.address_arrayIdea = arrayIdea.DeviceAddress;
                    se(arrayIdea.DeviceName);
                }
                this.button_find_devices.Enabled = true;
            }

     but it always  report an error , like this

    32feet.NET does not support the Bluetooth stack on this device. 

    who can help me out ?

    thank you very much

  • 07-08-2008 6:01 AM In reply to

    Re: 32feet.NET does not support the Bluetooth stack on this device.

    the other question :

    BluetoothClient.DiscoverDevices() doesn't find any devices .

    I don't know why ?

     who can help me out ?

    thank you very much!

    Filed under: , ,
  • 07-08-2008 2:46 PM In reply to

    Re: 32feet.NET does not support the Bluetooth stack on this device.

    What's you device?  If its an iPaq then it'll have the Broadcom/Widcomm stack which we don't support. :-(

    Alan J. McFarlane
    http://www.alanjmcf.me.uk/
    Please follow-up in the newsgroup for the benefit of all.
    Have I helped? Consider visiting my Amazon wishlist, see my homepage.
  • 07-08-2008 8:14 PM In reply to

    Re: 32feet.NET does not support the Bluetooth stack on this device.

    my device type is Network adapters,and device provider is %V_WIDCOMM% ,  now  BluetoothDeviceInfo[ array = bc.DiscoverDevices() can't find any device , what's wrong ? could you help me out ?

  • 07-08-2008 9:00 PM In reply to

    Re: 32feet.NET does not support the Bluetooth stack on this device.

    my bluetooth equipment is Jabra A320s , not Belkin F8T012 , How can I get my Jabra A320s  working on XP SP2 using the MS Stack

  • 07-10-2008 5:59 AM In reply to

    Re: 32feet.NET does not support the Bluetooth stack on this device.

    It looks like your PC has the Broadcom/Widcomm Bluetooth protocol stack installed, but the library only supports the native Microsoft one.  See the user's guide for more information.  You can generally uninstall the Widcomm stack and on reinstalling the Bluetooth device the Microsoft stack will be installed. :-)

Page 1 of 1 (6 items)
Copyright © 2001-2008 In The Hand Ltd. All rights reserved. Terms of Use and Privacy Policy.