Click here to Skip to main content
15,894,405 members
Home / Discussions / C#
   

C#

 
GeneralRe: Problem when loading dll file in my project: Unable to load DLL “…” The specified module could not be found. (Exception from HRESULT: 0x8007007E) Pin
taibc12-Dec-12 23:48
taibc12-Dec-12 23:48 
AnswerRe: Problem when loading dll file in my project: Unable to load DLL “…” The specified module could not be found. (Exception from HRESULT: 0x8007007E) Pin
Mycroft Holmes12-Dec-12 22:24
professionalMycroft Holmes12-Dec-12 22:24 
GeneralRe: Problem when loading dll file in my project: Unable to load DLL “…” The specified module could not be found. (Exception from HRESULT: 0x8007007E) Pin
taibc12-Dec-12 23:49
taibc12-Dec-12 23:49 
QuestionDescrypt a file - PGP Pin
jbradshaw12-Dec-12 9:10
jbradshaw12-Dec-12 9:10 
AnswerRe: Descrypt a file - PGP Pin
Matt U.12-Dec-12 9:13
Matt U.12-Dec-12 9:13 
GeneralRe: Descrypt a file - PGP Pin
jbradshaw12-Dec-12 9:48
jbradshaw12-Dec-12 9:48 
GeneralRe: Descrypt a file - PGP Pin
Garth J Lancaster12-Dec-12 22:48
professionalGarth J Lancaster12-Dec-12 22:48 
QuestionMVVM. Buttons and thair content Pin
boryborawski12-Dec-12 9:00
boryborawski12-Dec-12 9:00 
AnswerRe: MVVM. Buttons and thair content Pin
SledgeHammer0112-Dec-12 9:17
SledgeHammer0112-Dec-12 9:17 
GeneralRe: MVVM. Buttons and thair content Pin
boryborawski12-Dec-12 9:40
boryborawski12-Dec-12 9:40 
GeneralRe: MVVM. Buttons and thair content Pin
SledgeHammer0112-Dec-12 11:30
SledgeHammer0112-Dec-12 11:30 
GeneralRe: MVVM. Buttons and thair content Pin
boryborawski12-Dec-12 13:22
boryborawski12-Dec-12 13:22 
QuestionWeb scraping Pin
Kalenzo12-Dec-12 7:12
Kalenzo12-Dec-12 7:12 
AnswerRe: Web scraping Pin
Matt U.12-Dec-12 7:20
Matt U.12-Dec-12 7:20 
QuestionCreating an instance to be used as an Object refference Pin
bikerben12-Dec-12 6:35
bikerben12-Dec-12 6:35 
AnswerRe: Creating an instance to be used as an Object refference Pin
Matt U.12-Dec-12 6:49
Matt U.12-Dec-12 6:49 
AnswerRe: Creating an instance to be used as an Object refference Pin
DaveyM6912-Dec-12 8:02
professionalDaveyM6912-Dec-12 8:02 
AnswerRe: Creating an instance to be used as an Object refference Pin
OriginalGriff12-Dec-12 8:11
mveOriginalGriff12-Dec-12 8:11 
To add to what the others have said: get rid of the semicolon.
C#
// Define File Type
foreach (blah blah in blahs);
    if (myCondition)
Becomes
C#
// Define File Type
foreach (blah blah in blahs)
    if (myCondition)

With it present, the if condition is executed outside the loop, not in as the indentation suggests.
If you get an email telling you that you can catch Swine Flu from tinned pork then just delete it. It's Spam.

GeneralRe: Creating an instance to be used as an Object refference Pin
Killzone DeathMan13-Dec-12 0:02
Killzone DeathMan13-Dec-12 0:02 
AnswerRe: Creating an instance to be used as an Object refference Pin
V.12-Dec-12 21:30
professionalV.12-Dec-12 21:30 
GeneralRe: Creating an instance to be used as an Object refference Pin
bikerben18-Dec-12 6:19
bikerben18-Dec-12 6:19 
GeneralRe: Creating an instance to be used as an Object refference Pin
V.18-Dec-12 7:28
professionalV.18-Dec-12 7:28 
QuestionProblems with File Pin
tiwal12-Dec-12 4:49
tiwal12-Dec-12 4:49 
QuestionRe: Problems with File Pin
Eddy Vluggen12-Dec-12 5:00
professionalEddy Vluggen12-Dec-12 5:00 
AnswerRe: Problems with File Pin
tiwal12-Dec-12 5:12
tiwal12-Dec-12 5:12 

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.