Click here to Skip to main content
15,917,859 members
Home / Discussions / C#
   

C#

 
GeneralRe: Another Async Question Pin
Kevin Marois8-Apr-15 8:30
professionalKevin Marois8-Apr-15 8:30 
GeneralRe: Another Async Question Pin
Mycroft Holmes8-Apr-15 14:22
professionalMycroft Holmes8-Apr-15 14:22 
Question{0} Pin
Member 115906308-Apr-15 3:04
Member 115906308-Apr-15 3:04 
AnswerRe: {0} Pin
harold aptroot8-Apr-15 3:35
harold aptroot8-Apr-15 3:35 
AnswerRe: {0} Pin
Sascha Lefèvre8-Apr-15 3:49
professionalSascha Lefèvre8-Apr-15 3:49 
Questionconverting given hex value into rgb Pin
Member 115353748-Apr-15 1:25
Member 115353748-Apr-15 1:25 
GeneralRe: converting given hex value into rgb Pin
harold aptroot8-Apr-15 1:44
harold aptroot8-Apr-15 1:44 
AnswerRe: converting given hex value into rgb Pin
OriginalGriff8-Apr-15 4:38
mveOriginalGriff8-Apr-15 4:38 
JokeRe: converting given hex value into rgb Pin
Richard Deeming8-Apr-15 8:04
mveRichard Deeming8-Apr-15 8:04 
GeneralRe: converting given hex value into rgb Pin
OriginalGriff8-Apr-15 8:17
mveOriginalGriff8-Apr-15 8:17 
Questionsharing files on single pc in .net Pin
Member 115353748-Apr-15 1:23
Member 115353748-Apr-15 1:23 
QuestionRe: sharing files on single pc in .net Pin
Richard MacCutchan8-Apr-15 2:41
mveRichard MacCutchan8-Apr-15 2:41 
AnswerRe: sharing files on single pc in .net Pin
User 418025417-Jul-15 9:54
User 418025417-Jul-15 9:54 
Questioncode for androide xml analyser Pin
Member 115824057-Apr-15 22:29
Member 115824057-Apr-15 22:29 
QuestionRe: code for androide xml analyser Pin
Stefto7-Apr-15 22:56
professionalStefto7-Apr-15 22:56 
AnswerRe: code for androide xml analyser Pin
Simon_Whale7-Apr-15 23:19
Simon_Whale7-Apr-15 23:19 
QuestionAudio Visualisation For RGB STRIP Via C# Pin
Marek Gamelaster Kraus7-Apr-15 9:00
Marek Gamelaster Kraus7-Apr-15 9:00 
AnswerRe: Audio Visualisation For RGB STRIP Via C# Pin
V.7-Apr-15 20:03
professionalV.7-Apr-15 20:03 
GeneralRe: Audio Visualisation For RGB STRIP Via C# Pin
Marek Gamelaster Kraus8-Apr-15 3:11
Marek Gamelaster Kraus8-Apr-15 3:11 
QuestionEmpty path name is not legal - image upload Pin
DPaul19947-Apr-15 6:49
DPaul19947-Apr-15 6:49 
AnswerRe: Empty path name is not legal - image upload Pin
Eddy Vluggen7-Apr-15 8:03
professionalEddy Vluggen7-Apr-15 8:03 
AnswerRe: Empty path name is not legal - image upload Pin
OriginalGriff7-Apr-15 8:05
mveOriginalGriff7-Apr-15 8:05 
Start by assuming TextBox5 contains no text, and your error should appear - so the most likely thing is that your user pressed Cancel instead of selecting an image, or that code was never called. So check - if it's empty, don't continue.

But...there are other problems here, from the trivial:
Why do you think you have call ToString on a string? What do you expect that to do?
C#
string picLoc = dlg.FileName.ToString();


To the very serious: Do not concatenate strings to build a SQL command. It leaves you wide open to accidental or deliberate SQL Injection attack which can destroy your entire database. Use Parametrized queries instead.
You are clearly aware of the existence of parameterized queries and how to use them, but you leave your code wide open to anyone with a keyboard and your application anyway? Why? Do you not like your data?
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

GeneralRe: Empty path name is not legal - image upload Pin
DPaul19947-Apr-15 8:49
DPaul19947-Apr-15 8:49 
GeneralRe: Empty path name is not legal - image upload Pin
OriginalGriff8-Apr-15 0:18
mveOriginalGriff8-Apr-15 0:18 
GeneralRe: Empty path name is not legal - image upload Pin
DPaul19949-Apr-15 4:09
DPaul19949-Apr-15 4:09 

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.