Click here to Skip to main content
16,014,294 members
Home / Discussions / C#
   

C#

 
GeneralRe: Image Encryption Pin
Danial C5-Apr-12 0:33
Danial C5-Apr-12 0:33 
GeneralRe: Image Encryption Pin
Pete O'Hanlon5-Apr-12 0:46
mvePete O'Hanlon5-Apr-12 0:46 
GeneralRe: Image Encryption Pin
Danial C5-Apr-12 1:31
Danial C5-Apr-12 1:31 
GeneralRe: Image Encryption Pin
Dave Kreskowiak5-Apr-12 3:50
mveDave Kreskowiak5-Apr-12 3:50 
Questionillegal characters in path - system.argumentException Pin
ausia195-Apr-12 0:16
ausia195-Apr-12 0:16 
AnswerRe: illegal characters in path - system.argumentException Pin
Pete O'Hanlon5-Apr-12 0:47
mvePete O'Hanlon5-Apr-12 0:47 
GeneralRe: illegal characters in path - system.argumentException Pin
ausia195-Apr-12 1:02
ausia195-Apr-12 1:02 
AnswerRe: illegal characters in path - system.argumentException Pin
Luc Pattyn5-Apr-12 1:21
sitebuilderLuc Pattyn5-Apr-12 1:21 
ausia19 wrote:
stored it as '@"f:/pick_up"

that is a big no no.

If
string myString=@"f:/pick_up";
Console.WriteLine(myString);

then myString will hold exactly 10 characters, starting with f and ending with p.

It's those 10 characters you would type after "dir" in a command window to display the content of the folder. The special characters @ and " are NOT part of the string, they only exist in your source code to tell the compiler what the value of myString really has to be.

And it is exactly those 10 characters you should store in your database.

I suggest you open an introductory book to C# and start studying the very first chapters ASAP.

Smile | :)
Luc Pattyn [My Articles] Nil Volentibus Arduum


modified 5-Apr-12 8:02am.

GeneralRe: illegal characters in path - system.argumentException Pin
V.5-Apr-12 1:32
professionalV.5-Apr-12 1:32 
GeneralRe: illegal characters in path - system.argumentException Pin
ausia195-Apr-12 5:42
ausia195-Apr-12 5:42 
GeneralRe: illegal characters in path - system.argumentException Pin
Pete O'Hanlon5-Apr-12 5:48
mvePete O'Hanlon5-Apr-12 5:48 
GeneralRe: illegal characters in path - system.argumentException Pin
ausia195-Apr-12 6:03
ausia195-Apr-12 6:03 
GeneralRe: illegal characters in path - system.argumentException Pin
ausia195-Apr-12 6:03
ausia195-Apr-12 6:03 
GeneralRe: illegal characters in path - system.argumentException Pin
V.5-Apr-12 6:21
professionalV.5-Apr-12 6:21 
AnswerRe: illegal characters in path - system.argumentException Pin
Eddy Vluggen5-Apr-12 1:15
professionalEddy Vluggen5-Apr-12 1:15 
QuestionPopulate ComboBox with DayOfWeek enum? Pin
kbalias5-Apr-12 0:06
kbalias5-Apr-12 0:06 
AnswerRe: Populate ComboBox with DayOfWeek enum? Pin
Pete O'Hanlon5-Apr-12 0:16
mvePete O'Hanlon5-Apr-12 0:16 
GeneralRe: Populate ComboBox with DayOfWeek enum? Pin
kbalias5-Apr-12 0:26
kbalias5-Apr-12 0:26 
GeneralRe: Populate ComboBox with DayOfWeek enum? Pin
Pete O'Hanlon5-Apr-12 0:27
mvePete O'Hanlon5-Apr-12 0:27 
QuestionPLSSS TELL ME DECLERING LIST IN C# AS FOOLOWS IS WRONG OR RIGHT? Pin
ashok01434-Apr-12 23:10
ashok01434-Apr-12 23:10 
AnswerRe: PLSSS TELL ME DECLERING LIST IN C# AS FOOLOWS IS WRONG OR RIGHT? Pin
Pete O'Hanlon4-Apr-12 23:27
mvePete O'Hanlon4-Apr-12 23:27 
AnswerRe: PLSSS TELL ME DECLERING LIST IN C# AS FOOLOWS IS WRONG OR RIGHT? Pin
OriginalGriff4-Apr-12 23:28
mveOriginalGriff4-Apr-12 23:28 
GeneralRe: PLSSS TELL ME DECLERING LIST IN C# AS FOOLOWS IS WRONG OR RIGHT? Pin
Shameel5-Apr-12 4:58
professionalShameel5-Apr-12 4:58 
GeneralRe: PLSSS TELL ME DECLERING LIST IN C# AS FOOLOWS IS WRONG OR RIGHT? Pin
OriginalGriff5-Apr-12 5:55
mveOriginalGriff5-Apr-12 5:55 
QuestionVKontakte API request Pin
tfile1014-Apr-12 22:07
tfile1014-Apr-12 22:07 

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.