Click here to Skip to main content
15,889,335 members
Home / Discussions / C#
   

C#

 
QuestionHow Can We Extract A String From A Cookie, In Windows Form Pin
babak_izadi26-Sep-05 15:14
babak_izadi26-Sep-05 15:14 
AnswerRe: How Can We Extract A String From A Cookie, In Windows Form Pin
painlessprod26-Sep-05 16:26
painlessprod26-Sep-05 16:26 
GeneralRe: How Can We Extract A String From A Cookie, In Windows Form Pin
babak_izadi26-Sep-05 16:53
babak_izadi26-Sep-05 16:53 
GeneralRe: How Can We Extract A String From A Cookie, In Windows Form Pin
painlessprod26-Sep-05 17:58
painlessprod26-Sep-05 17:58 
GeneralRe: How Can We Extract A String From A Cookie, In Windows Form Pin
babak_izadi26-Sep-05 18:29
babak_izadi26-Sep-05 18:29 
AnswerRe: How Can We Extract A String From A Cookie, In Windows Form Pin
Guffa26-Sep-05 18:52
Guffa26-Sep-05 18:52 
QuestionDatagrid row colouring Pin
painlessprod26-Sep-05 15:00
painlessprod26-Sep-05 15:00 
AnswerRe: Datagrid row colouring Pin
Barm26-Sep-05 17:37
Barm26-Sep-05 17:37 
I have the following inside one of my programs.
where I have alternate colours for the datagrid rows.
I donno if this would help, hope it does.

if(i%2 == 0)
{
DataGrid1.Items[i].ForeColor = System.Drawing.Color.Black;
DataGrid1.Items[i].BackColor = System.Drawing.Color.LightBlue;
}
else
{
DataGrid1.Items[i].ForeColor = System.Drawing.Color.Black;
DataGrid1.Items[i].BackColor = System.Drawing.Color.LightSteelBlue;
}


Thomas
GeneralRe: Datagrid row colouring Pin
painlessprod26-Sep-05 17:55
painlessprod26-Sep-05 17:55 
Question3d programming using C#.net and Axiom Engine Pin
Member 225908026-Sep-05 12:33
Member 225908026-Sep-05 12:33 
Questionvids:tscc video decompressor not found Pin
codeproj guy26-Sep-05 11:03
codeproj guy26-Sep-05 11:03 
AnswerRe: vids:tscc video decompressor not found Pin
codeproj guy26-Sep-05 11:25
codeproj guy26-Sep-05 11:25 
QuestionActive Directory - Determine if user is in group Pin
new to .net26-Sep-05 10:43
new to .net26-Sep-05 10:43 
AnswerRe: Active Directory - Determine if user is in group Pin
Heath Stewart26-Sep-05 11:38
protectorHeath Stewart26-Sep-05 11:38 
QuestionWierd Variable Sharing Bug Pin
YawgmothIII26-Sep-05 10:29
YawgmothIII26-Sep-05 10:29 
AnswerRe: Wierd Variable Sharing Bug Pin
Heath Stewart26-Sep-05 11:30
protectorHeath Stewart26-Sep-05 11:30 
QuestionHaving trouble closing crystal reports connection Pin
kornstyle26-Sep-05 10:12
kornstyle26-Sep-05 10:12 
AnswerRe: Having trouble closing crystal reports connection Pin
Heath Stewart26-Sep-05 11:21
protectorHeath Stewart26-Sep-05 11:21 
GeneralRe: Having trouble closing crystal reports connection Pin
kornstyle27-Sep-05 2:37
kornstyle27-Sep-05 2:37 
GeneralRe: Having trouble closing crystal reports connection Pin
Heath Stewart27-Sep-05 6:07
protectorHeath Stewart27-Sep-05 6:07 
QuestionSearching Database for Password in C# Pin
jeff1926-Sep-05 9:20
jeff1926-Sep-05 9:20 
AnswerRe: Searching Database for Password in C# Pin
Dave Kreskowiak26-Sep-05 9:23
mveDave Kreskowiak26-Sep-05 9:23 
AnswerRe: Searching Database for Password in C# Pin
Jon Sagara26-Sep-05 10:33
Jon Sagara26-Sep-05 10:33 
QuestionHow to show "please wait" during a long time process? Pin
Julianne_juju26-Sep-05 9:15
Julianne_juju26-Sep-05 9:15 
AnswerRe: How to show "please wait" during a long time process? Pin
Dave Kreskowiak26-Sep-05 9:21
mveDave Kreskowiak26-Sep-05 9:21 

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.