blah blah blah is here! blah blah » Close

0
votes
0 answers

Mouse Events

I have a 2d tile map type interface and I want to paint via the OnEnter event. However I am using MouseUp and MouseDown to turn on whether or not the user should paint. The problem is MouseDown is restricting access to MouseEnter - that is ...

0
votes
0 answers

DropDownList

Use asp.NET and I'm Learning the web forms. PC with OS Windows XP DBMS = sql server 2k . I have a problem using the DropDownList Control. Step 1: ======= I have a table : myTable(id int not null, name varchar(40) ) (the id is a ...

0
votes
1 answers

Problems with double conversion C#

Hi, i don't understand: [code]label1.Text = dsLog.Tables[3].Rows[i][0].ToString(); //Output: 1.00[/code] but when i want to cast to double [code]double sas_sas = double.Parse(dsLog.Tables[3].Rows[i][0].ToString()); label1.Text ...

Feedback