Click here to Skip to main content
15,913,268 members
Home / Discussions / C#
   

C#

 
GeneralRe: Art network with C# Pin
Pete O'Hanlon20-Mar-07 23:50
mvePete O'Hanlon20-Mar-07 23:50 
GeneralRe: Art network with C# Pin
Russell Jones21-Mar-07 1:12
Russell Jones21-Mar-07 1:12 
GeneralRe: Art network with C# Pin
Pete O'Hanlon21-Mar-07 2:22
mvePete O'Hanlon21-Mar-07 2:22 
GeneralRe: Art network with C# Pin
Colin Angus Mackay21-Mar-07 4:52
Colin Angus Mackay21-Mar-07 4:52 
QuestionHaving issues with Object comparison [modified] Pin
myNameIsRon20-Mar-07 20:59
myNameIsRon20-Mar-07 20:59 
AnswerRe: Having issues with Object comparison Pin
joon vh.20-Mar-07 22:09
joon vh.20-Mar-07 22:09 
GeneralRe: Having issues with Object comparison Pin
myNameIsRon21-Mar-07 5:05
myNameIsRon21-Mar-07 5:05 
GeneralRe: Having issues with Object comparison Pin
joon vh.21-Mar-07 5:23
joon vh.21-Mar-07 5:23 
It still works when I use ADO...
Your problem appears to be very strange.

            SqlConnection conn = new SqlConnection("connstring");<br />
            SqlDataAdapter da = new SqlDataAdapter("select * from [table]",conn);<br />
            DataSet ds = new DataSet();<br />
            da.Fill(ds);<br />
            dataGridView1.DataSource = ds;<br />
<br />
            Console.WriteLine(ds.Tables[0].Rows[1][1] == ds.Tables[0].Rows[1][2]); //returns false<br />
            Console.WriteLine(ds.Tables[0].Rows[1][1] == ds.Tables[0].Rows[1][1]); //returns true




Visual Studio can't evaluate this, can you?
public object moo<br />
        {<br />
__get { return moo; }<br />
__set { moo = value; }<br />
}

GeneralRe: Having issues with Object comparison Pin
myNameIsRon21-Mar-07 5:40
myNameIsRon21-Mar-07 5:40 
GeneralRe: Having issues with Object comparison Pin
joon vh.21-Mar-07 5:46
joon vh.21-Mar-07 5:46 
GeneralRe: Having issues with Object comparison Pin
myNameIsRon21-Mar-07 16:50
myNameIsRon21-Mar-07 16:50 
GeneralRe: Having issues with Object comparison Pin
myNameIsRon21-Mar-07 18:55
myNameIsRon21-Mar-07 18:55 
AnswerRe: Having issues with Object comparison Pin
Pete O'Hanlon20-Mar-07 23:29
mvePete O'Hanlon20-Mar-07 23:29 
GeneralRe: Having issues with Object comparison Pin
myNameIsRon21-Mar-07 4:52
myNameIsRon21-Mar-07 4:52 
QuestionCalling a method without object or its class name.. Pin
nasambur20-Mar-07 20:40
nasambur20-Mar-07 20:40 
AnswerRe: Calling a method without object or its class name.. Pin
Martin#20-Mar-07 21:25
Martin#20-Mar-07 21:25 
GeneralRe: Calling a method without object or its class name.. Pin
joon vh.20-Mar-07 22:13
joon vh.20-Mar-07 22:13 
AnswerRe: Calling a method without object or its class name.. Pin
Russell Jones21-Mar-07 1:14
Russell Jones21-Mar-07 1:14 
QuestionSQL: getting and storing data Pin
Glen Harvy20-Mar-07 20:29
Glen Harvy20-Mar-07 20:29 
AnswerRe: SQL: getting and storing data Pin
KaineDunno20-Mar-07 21:57
KaineDunno20-Mar-07 21:57 
GeneralRe: SQL: getting and storing data Pin
Keshav V. Kamat21-Mar-07 0:49
Keshav V. Kamat21-Mar-07 0:49 
GeneralRe: SQL: getting and storing data Pin
Glen Harvy21-Mar-07 1:32
Glen Harvy21-Mar-07 1:32 
QuestionQuestion about C++ and C# ... Pin
Yanshof20-Mar-07 20:23
Yanshof20-Mar-07 20:23 
AnswerRe: Question about C++ and C# ... Pin
WillemM20-Mar-07 22:04
WillemM20-Mar-07 22:04 
Questioncrystal report calling [modified] Pin
virendra patel20-Mar-07 20:11
virendra patel20-Mar-07 20:11 

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.