Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by patvos

  1. patvos

    Changing button colour in c#

    hi Desman2003, In C# you add events to f.e. a buttonclick. a buttonclick get 2 params, object(the objects where it came from) and EventArgs (f.e. mouseclick) if you want to check which button is pressed / clicked you can check sender. example: private void ChangBackground(object...
  2. patvos

    ADO.NET equivalent of recordcount???

    sorry forgot something i see >> myOjbect = new MyObject[i] // it should say MyObject[myRdr.Recordcount]
  3. patvos

    How to implement this select statement

    i saw something about READTEXT function that should do it. hth's
  4. patvos

    ADO.NET equivalent of recordcount???

    according to ms there's no sollution: http://support.microsoft.com/default.aspx?kbid=308352 the only way is to create a datatable and use the count property of the rows collection. Or you could use a select count(x)... But why do you want a recordcount? Just for info or to do other things with...

Part and Inventory Search

Back
Top