Click here to Skip to main content
15,902,112 members
Home / Discussions / C#
   

C#

 
GeneralRe: I need an ebay program Pin
totolcm13-Jan-10 2:33
totolcm13-Jan-10 2:33 
GeneralRe: I need an ebay program Pin
HimanshuJoshi13-Jan-10 2:37
HimanshuJoshi13-Jan-10 2:37 
GeneralRe: I need an ebay program Pin
Richard MacCutchan13-Jan-10 2:47
mveRichard MacCutchan13-Jan-10 2:47 
GeneralRe: I need an ebay program Pin
0x3c013-Jan-10 3:02
0x3c013-Jan-10 3:02 
GeneralRe: I need an ebay program Pin
Dell.Simmons13-Jan-10 5:59
Dell.Simmons13-Jan-10 5:59 
AnswerRe: I need an ebay program Pin
Keith Barrow13-Jan-10 2:36
professionalKeith Barrow13-Jan-10 2:36 
AnswerRe: I need an ebay program Pin
Rajesh R Subramanian13-Jan-10 6:13
professionalRajesh R Subramanian13-Jan-10 6:13 
AnswerRe: I need an ebay program Pin
Dave Kreskowiak13-Jan-10 6:25
mveDave Kreskowiak13-Jan-10 6:25 
QuestionVC# 2008 Pin
AlucardCode13-Jan-10 1:37
AlucardCode13-Jan-10 1:37 
AnswerRe: VC# 2008 Pin
monstale13-Jan-10 2:34
monstale13-Jan-10 2:34 
GeneralRe: VC# 2008 Pin
AlucardCode13-Jan-10 3:19
AlucardCode13-Jan-10 3:19 
AnswerRe: VC# 2008 Pin
DaveyM6913-Jan-10 3:06
professionalDaveyM6913-Jan-10 3:06 
GeneralRe: VC# 2008 Pin
AlucardCode13-Jan-10 3:21
AlucardCode13-Jan-10 3:21 
AnswerRe: VC# 2008 Pin
Rick Shaub13-Jan-10 3:21
Rick Shaub13-Jan-10 3:21 
Questioncombining 2 codes Pin
djsproject13-Jan-10 1:35
djsproject13-Jan-10 1:35 
AnswerRe: combining 2 codes Pin
0x3c013-Jan-10 2:25
0x3c013-Jan-10 2:25 
First of all, you don't need such complex code for image rotation. There's a code snippet here[^] which will do the job just as well. Secondly, your problem is that you need to progress from filepath to image. Image.FromFile will fill your gap here, making the pseudocode something like this:
for each extension in extensions
{
    for each file found with extension
    {
        Image img = Image.FromFile(file);

        img = rotateImage(img);
        //continue work here
    }
}



GeneralRe: combining 2 codes Pin
djsproject16-Jan-10 8:09
djsproject16-Jan-10 8:09 
QuestionSet the parent textbox value from child form Pin
pavanig912-Jan-10 23:37
pavanig912-Jan-10 23:37 
AnswerRe: Set the parent textbox value from child form Pin
Harvey Saayman12-Jan-10 23:42
Harvey Saayman12-Jan-10 23:42 
GeneralRe: Set the parent textbox value from child form Pin
pavanig913-Jan-10 0:52
pavanig913-Jan-10 0:52 
GeneralRe: Set the parent textbox value from child form Pin
Harvey Saayman13-Jan-10 0:55
Harvey Saayman13-Jan-10 0:55 
AnswerRe: Set the parent textbox value from child form Pin
DaveyM6913-Jan-10 0:22
professionalDaveyM6913-Jan-10 0:22 
QuestionDataGridView: SelectRow if EditMode=EditOnEnter Pin
Nigel Mackay12-Jan-10 23:33
Nigel Mackay12-Jan-10 23:33 
AnswerRe: DataGridView: SelectRow if EditMode=EditOnEnter Pin
Herman<T>.Instance13-Jan-10 7:45
Herman<T>.Instance13-Jan-10 7:45 
GeneralRe: DataGridView: SelectRow if EditMode=EditOnEnter Pin
Nigel Mackay13-Jan-10 18:25
Nigel Mackay13-Jan-10 18:25 

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.