Click here to Skip to main content
15,884,099 members

Comments by vikinghunter (Top 11 by date)

vikinghunter 28-Aug-14 3:42am View    
Deleted
Some letters has missing...I have updated it twice to make it correct,but no effect...

The first line, here, "Dictionary<endpoint,>",it should be Dictionary<endpoint,socket>
vikinghunter 27-Aug-14 22:41pm View    
In your "button1_Click()" function, you creat a new Form1 named "x". The "x" is not the Form1 who calls your Form2. So, you can not call "x.Hide()" to hide the one you want to hide indeed. This is the point. We often make this mistake.
vikinghunter 27-Aug-14 20:54pm View    
Perhaps executing with the wrong user who is not the stored procedure's owner.
vikinghunter 27-Aug-14 5:10am View    
Deleted
public partial class Form3 : Form
{
Form1 f1;
public Form3(Form1 f1)
{
this.f1 = f1;

InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
f1.Close();
}
}

Here is Form3.
vikinghunter 27-Aug-14 2:15am View    
Let me have a try..