Click here to Skip to main content
16,004,833 members
Home / Discussions / C#
   

C#

 
GeneralRe: Unmanaged DLL persistance in C# Pin
Henry Minute21-May-09 8:32
Henry Minute21-May-09 8:32 
QuestionWhat tables is needed for create workflow applications ? Pin
hdv21221-May-09 7:13
hdv21221-May-09 7:13 
QuestionComponent question. Pin
precious roy21-May-09 7:11
precious roy21-May-09 7:11 
AnswerRe: Component question. Pin
Dave Kreskowiak21-May-09 7:58
mveDave Kreskowiak21-May-09 7:58 
AnswerRe: Component question. Pin
DaveyM6921-May-09 10:23
professionalDaveyM6921-May-09 10:23 
GeneralRe: Component question. Pin
precious roy21-May-09 10:52
precious roy21-May-09 10:52 
GeneralRe: Component question. Pin
DaveyM6921-May-09 11:46
professionalDaveyM6921-May-09 11:46 
QuestionColoring pictures Pin
Sokka9321-May-09 6:56
Sokka9321-May-09 6:56 
Hello I'm using the below code to color a picture but it is pretty slow is there a way to do it faster?
Thanks in advance.
<br />
Bitmap Turn(Bitmap pic)<br />
        {<br />
            Bitmap newpic = new Bitmap(pic.Width, pic.Height);<br />
            for (int i = 0; i < pic.Width; i++)<br />
            {<br />
                for (int j = 0; j < pic.Height; j++)<br />
                {<br />
                    Color color = pic.GetPixel(i, j);<br />
                    newpic.SetPixel(i, j, Color.FromArgb(123, 46, 125));<br />
                }<br />
            }<br />
            return newpic;<br />
        }<br />

AnswerRe: Coloring pictures Pin
Henry Minute21-May-09 7:15
Henry Minute21-May-09 7:15 
AnswerRe: Coloring pictures Pin
Dave Kreskowiak21-May-09 7:58
mveDave Kreskowiak21-May-09 7:58 
AnswerRe: Coloring pictures Pin
Luc Pattyn21-May-09 8:28
sitebuilderLuc Pattyn21-May-09 8:28 
AnswerRe: Coloring pictures Pin
Henry Minute21-May-09 8:36
Henry Minute21-May-09 8:36 
GeneralRe: Coloring pictures Pin
Sokka9321-May-09 9:03
Sokka9321-May-09 9:03 
QuestionPop3, Smtp, etc.. Pin
Quake2Player21-May-09 6:36
Quake2Player21-May-09 6:36 
QuestionBreak Point Pin
kibromg21-May-09 6:08
kibromg21-May-09 6:08 
AnswerRe: Break Point Pin
Henry Minute21-May-09 6:21
Henry Minute21-May-09 6:21 
GeneralRe: Break Point Pin
kibromg21-May-09 6:28
kibromg21-May-09 6:28 
GeneralRe: Break Point Pin
Henry Minute21-May-09 6:44
Henry Minute21-May-09 6:44 
GeneralRe: Break Point Pin
kibromg21-May-09 6:48
kibromg21-May-09 6:48 
GeneralRe: Break Point Pin
OriginalGriff21-May-09 8:28
mveOriginalGriff21-May-09 8:28 
Questionhow to call 1 class method or constructor in other class ? Pin
xingselex21-May-09 6:06
xingselex21-May-09 6:06 
AnswerRe: how to call 1 class method or constructor in other class ? Pin
musefan21-May-09 6:12
musefan21-May-09 6:12 
GeneralRe: how to call 1 class method or constructor in other class ? Pin
xingselex21-May-09 6:20
xingselex21-May-09 6:20 
GeneralRe: how to call 1 class method or constructor in other class ? Pin
Henry Minute21-May-09 6:26
Henry Minute21-May-09 6:26 
GeneralRe: how to call 1 class method or constructor in other class ? Pin
xingselex21-May-09 6:37
xingselex21-May-09 6:37 

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.