Click here to Skip to main content
15,892,737 members
Home / Discussions / C#
   

C#

 
GeneralRe: change picture of image controll in gridvie in windows application???? Pin
mr.mohsen8-Oct-09 12:24
mr.mohsen8-Oct-09 12:24 
QuestionCreating a Designer Add-In for Visual Studio Pin
RobertFall8-Oct-09 0:30
RobertFall8-Oct-09 0:30 
AnswerRe: Creating a Designer Add-In for Visual Studio Pin
Richard MacCutchan8-Oct-09 0:44
mveRichard MacCutchan8-Oct-09 0:44 
GeneralRe: Creating a Designer Add-In for Visual Studio Pin
RobertFall8-Oct-09 0:48
RobertFall8-Oct-09 0:48 
GeneralRe: Creating a Designer Add-In for Visual Studio Pin
Richard MacCutchan8-Oct-09 1:08
mveRichard MacCutchan8-Oct-09 1:08 
GeneralRe: Creating a Designer Add-In for Visual Studio Pin
RobertFall8-Oct-09 1:43
RobertFall8-Oct-09 1:43 
QuestionComparing for Columns Pin
Yonathan11117-Oct-09 23:25
professionalYonathan11117-Oct-09 23:25 
AnswerRe: Comparing for Columns Pin
Pete O'Hanlon8-Oct-09 0:02
mvePete O'Hanlon8-Oct-09 0:02 
The rows are indexed entries, so you can refer to them by their position. Suppose, for instance, that you want to compare items in the current row and the next row, the following code will do:
DataTable tbl = myDataSet[0];
for (int i = 0; i < tbl.Rows.Count - 1; i++)
{
  if (tbl.Rows[i]["myColumn"] == tbl.Rows[i+1]["myColumn"])
  {
    // It's a match
  }
}


"WPF has many lovers. It's a veritable porn star!" - Josh Smith

As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.


My blog | My articles | MoXAML PowerToys | Onyx



AnswerRe: Comparing for Columns Pin
dan!sh 8-Oct-09 0:41
professional dan!sh 8-Oct-09 0:41 
Questionforms loading events!!! Pin
faheemnadeem7-Oct-09 23:14
faheemnadeem7-Oct-09 23:14 
AnswerRe: forms loading events!!! Pin
Christian Graus7-Oct-09 23:18
protectorChristian Graus7-Oct-09 23:18 
GeneralRe: forms loading events!!! Pin
faheemnadeem7-Oct-09 23:27
faheemnadeem7-Oct-09 23:27 
AnswerRe: forms loading events!!! Pin
Alan N8-Oct-09 0:11
Alan N8-Oct-09 0:11 
GeneralRe: forms loading events!!! Pin
Mycroft Holmes8-Oct-09 1:10
professionalMycroft Holmes8-Oct-09 1:10 
GeneralRe: forms loading events!!! Pin
Alan N8-Oct-09 2:00
Alan N8-Oct-09 2:00 
GeneralRe: forms loading events!!! Pin
Dave Kreskowiak8-Oct-09 4:02
mveDave Kreskowiak8-Oct-09 4:02 
AnswerRe: forms loading events!!! Pin
Luc Pattyn8-Oct-09 1:18
sitebuilderLuc Pattyn8-Oct-09 1:18 
GeneralRe: forms loading events!!! Pin
faheemnadeem8-Oct-09 18:14
faheemnadeem8-Oct-09 18:14 
Questionjquery live method doubt Pin
firefeet7-Oct-09 22:52
firefeet7-Oct-09 22:52 
AnswerRe: jquery live method doubt Pin
firefeet7-Oct-09 23:17
firefeet7-Oct-09 23:17 
AnswerRe: jquery live method doubt Pin
Christian Graus7-Oct-09 23:19
protectorChristian Graus7-Oct-09 23:19 
GeneralRe: jquery live method doubt Pin
Pete O'Hanlon7-Oct-09 23:37
mvePete O'Hanlon7-Oct-09 23:37 
GeneralRe: jquery live method doubt Pin
Christian Graus8-Oct-09 1:13
protectorChristian Graus8-Oct-09 1:13 
GeneralRe: jquery live method doubt Pin
Pete O'Hanlon8-Oct-09 1:56
mvePete O'Hanlon8-Oct-09 1:56 
AnswerRe: jquery live method doubt Pin
Dave Kreskowiak8-Oct-09 3:57
mveDave Kreskowiak8-Oct-09 3:57 

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.