Click here to Skip to main content
15,887,746 members
Home / Discussions / C#
   

C#

 
AnswerRe: Block webbrowser from accessing webpages in C# Pin
Eddy Vluggen21-Aug-13 1:51
professionalEddy Vluggen21-Aug-13 1:51 
AnswerRe: Block webbrowser from accessing webpages in C# Pin
Dave Kreskowiak21-Aug-13 4:19
mveDave Kreskowiak21-Aug-13 4:19 
GeneralRe: Block webbrowser from accessing webpages in C# Pin
Oscar Andersson21-Aug-13 20:48
Oscar Andersson21-Aug-13 20:48 
GeneralRe: Block webbrowser from accessing webpages in C# Pin
Eddy Vluggen22-Aug-13 5:13
professionalEddy Vluggen22-Aug-13 5:13 
GeneralRe: Block webbrowser from accessing webpages in C# Pin
Oscar Andersson22-Aug-13 20:43
Oscar Andersson22-Aug-13 20:43 
GeneralRe: Block webbrowser from accessing webpages in C# Pin
Dave Kreskowiak22-Aug-13 6:21
mveDave Kreskowiak22-Aug-13 6:21 
AnswerRe: Block webbrowser from accessing webpages in C# Pin
Bernhard Hiller21-Aug-13 21:55
Bernhard Hiller21-Aug-13 21:55 
QuestionBluetooth Pairing Problem Win8 Pin
LearnTheCoding20-Aug-13 20:50
LearnTheCoding20-Aug-13 20:50 
Hey guys,
im pretty new to C# coding and im trying to pair my Dell Laptop (64Bit) and my Asus Win8 Tablet(32Bit) via Bluetooth.
I already found the 32feet.net library and startet coding.
My code worked just 1 time. I didnt get any answer from Tablet since then..
Here is my code, i hope someone can help me. (Its just a small one for testing)

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");
        }
    }

QuestionCollection with unique key by property Pin
Elfin Darkglow20-Aug-13 17:51
Elfin Darkglow20-Aug-13 17:51 
AnswerRe: Collection with unique key by property Pin
BillWoodruff20-Aug-13 19:14
professionalBillWoodruff20-Aug-13 19:14 
AnswerRe: Collection with unique key by property Pin
Bernhard Hiller20-Aug-13 21:12
Bernhard Hiller20-Aug-13 21:12 
QuestionHow To Add Buttons In Textbox? Pin
gaofq20-Aug-13 16:03
gaofq20-Aug-13 16:03 
AnswerRe: How To Add Buttons In Textbox? Pin
BillWoodruff20-Aug-13 18:13
professionalBillWoodruff20-Aug-13 18:13 
GeneralRe: How To Add Buttons In Textbox? Pin
gaofq21-Aug-13 4:43
gaofq21-Aug-13 4:43 
GeneralRe: How To Add Buttons In Textbox? Pin
Ravi Bhavnani21-Aug-13 7:38
professionalRavi Bhavnani21-Aug-13 7:38 
GeneralRe: How To Add Buttons In Textbox? Pin
BillWoodruff21-Aug-13 11:31
professionalBillWoodruff21-Aug-13 11:31 
GeneralRe: How To Add Buttons In Textbox? Pin
Ravi Bhavnani21-Aug-13 11:37
professionalRavi Bhavnani21-Aug-13 11:37 
GeneralRe: How To Add Buttons In Textbox? Pin
Mycroft Holmes21-Aug-13 12:53
professionalMycroft Holmes21-Aug-13 12:53 
QuestionTreeview node folder images Pin
rfresh20-Aug-13 13:28
rfresh20-Aug-13 13:28 
AnswerRe: Treeview node folder images Pin
BillWoodruff20-Aug-13 14:57
professionalBillWoodruff20-Aug-13 14:57 
GeneralRe: Treeview node folder images Pin
rfresh20-Aug-13 15:03
rfresh20-Aug-13 15:03 
GeneralRe: Treeview node folder images Pin
BillWoodruff20-Aug-13 15:13
professionalBillWoodruff20-Aug-13 15:13 
GeneralRe: Treeview node folder images Pin
rfresh20-Aug-13 18:09
rfresh20-Aug-13 18:09 
GeneralRe: Treeview node folder images Pin
BillWoodruff21-Aug-13 2:01
professionalBillWoodruff21-Aug-13 2:01 
AnswerRe: Treeview node folder images Pin
Ravi Bhavnani21-Aug-13 7:40
professionalRavi Bhavnani21-Aug-13 7:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.