Click here to Skip to main content
15,895,084 members
Home / Discussions / C#
   

C#

 
GeneralRe: Quick Question… Pin
adocoder28-Feb-05 10:12
adocoder28-Feb-05 10:12 
GeneralRe: Quick Question… Pin
HahnTech28-Feb-05 10:17
HahnTech28-Feb-05 10:17 
GeneralRe: Quick Question… Pin
adocoder28-Feb-05 10:17
adocoder28-Feb-05 10:17 
GeneralDataGrid with indeterminate number of column. Need Your Help! Pin
adocoder28-Feb-05 9:07
adocoder28-Feb-05 9:07 
GeneralSepia ColorMatrix Pin
holl708828-Feb-05 8:24
holl708828-Feb-05 8:24 
GeneralRe: Sepia ColorMatrix Pin
frankforward16-Sep-09 4:00
frankforward16-Sep-09 4:00 
GeneralRe: Sepia ColorMatrix Pin
frankforward16-Sep-09 4:01
frankforward16-Sep-09 4:01 
GeneralRe: Sepia ColorMatrix Pin
Don Grout4-Aug-11 9:55
Don Grout4-Aug-11 9:55 
From the How do I... article's Listing B, the sepia matrix would be:

C#
ColorMatrix colorMatrix = new ColorMatrix(new float[][]
{
    new float[] {.393f, .349f, .272f, 0, 0},
    new float[] {.769f, .686f, .534f, 0, 0},
    new float[] {.189f, .168f, .131f, 0, 0},
    new float[] {0, 0, 0, 1, 0},
    new float[] {0, 0, 0, 0, 1}
});

Don Grout
Email: don@dgsoftware.ca
Web : http://www.dgsoftware.ca/

GeneralSerialization. Pin
fmarcos28-Feb-05 8:12
fmarcos28-Feb-05 8:12 
GeneralRe: Serialization. Pin
turbochimp28-Feb-05 9:45
turbochimp28-Feb-05 9:45 
GeneralRe: Serialization. Pin
fmarcos1-Mar-05 1:31
fmarcos1-Mar-05 1:31 
GeneralDataSet problem Pin
Kwai Cheng Kane28-Feb-05 7:39
Kwai Cheng Kane28-Feb-05 7:39 
GeneralRe: DataSet problem Pin
Rob Graham28-Feb-05 8:29
Rob Graham28-Feb-05 8:29 
GeneralRe: DataSet problem Pin
Kwai Cheng Kane28-Feb-05 10:18
Kwai Cheng Kane28-Feb-05 10:18 
GeneralRe: DataSet problem Pin
Rob Graham28-Feb-05 15:58
Rob Graham28-Feb-05 15:58 
GeneralRe: DataSet problem Pin
Kwai Cheng Kane1-Mar-05 4:30
Kwai Cheng Kane1-Mar-05 4:30 
GeneralRe: DataSet problem Pin
Kwai Cheng Kane1-Mar-05 12:20
Kwai Cheng Kane1-Mar-05 12:20 
GeneralRe: DataSet problem Pin
Kwai Cheng Kane4-Mar-05 11:09
Kwai Cheng Kane4-Mar-05 11:09 
GeneralIncluding Application Pin
Goobers28-Feb-05 6:10
Goobers28-Feb-05 6:10 
GeneralRe: Including Application Pin
Dave Kreskowiak28-Feb-05 6:41
mveDave Kreskowiak28-Feb-05 6:41 
Generalcalling a function in a C# DLL Pin
xanacrows28-Feb-05 5:55
xanacrows28-Feb-05 5:55 
GeneralRe: calling a function in a C# DLL Pin
Dave Kreskowiak28-Feb-05 6:38
mveDave Kreskowiak28-Feb-05 6:38 
Questionhow to implement mathematical integration and derivative function is C# Pin
iramg28-Feb-05 4:37
iramg28-Feb-05 4:37 
AnswerRe: how to implement mathematical integration and derivative function is C# Pin
Dave Kreskowiak28-Feb-05 7:10
mveDave Kreskowiak28-Feb-05 7:10 
AnswerRe: how to implement mathematical integration and derivative function is C# Pin
(Steven Hicks)n+128-Feb-05 16:57
(Steven Hicks)n+128-Feb-05 16: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.