Click here to Skip to main content
15,888,177 members
Home / Discussions / C#
   

C#

 
GeneralRe: When to choose Static Method/Variables rather than Instance Method/Variable Pin
Christian Graus19-Sep-06 16:40
protectorChristian Graus19-Sep-06 16:40 
GeneralRe: When to choose Static Method/Variables rather than Instance Method/Variable Pin
Nadia Monalisa19-Sep-06 17:30
Nadia Monalisa19-Sep-06 17:30 
GeneralRe: When to choose Static Method/Variables rather than Instance Method/Variable Pin
Nadia Monalisa2-Oct-06 4:32
Nadia Monalisa2-Oct-06 4:32 
QuestionLeft Function in C# Pin
MyRunner2319-Sep-06 7:34
MyRunner2319-Sep-06 7:34 
AnswerRe: Left Function in C# Pin
Jon Sagara19-Sep-06 7:41
Jon Sagara19-Sep-06 7:41 
AnswerRe: Left Function in C# Pin
Eric Dahlvang19-Sep-06 7:45
Eric Dahlvang19-Sep-06 7:45 
GeneralRe: Left Function in C# Pin
samtam19-Sep-06 22:13
samtam19-Sep-06 22:13 
GeneralRe: Left Function in C# Pin
Eric Dahlvang20-Sep-06 4:33
Eric Dahlvang20-Sep-06 4:33 
There is no "LEFT" function, but you can use Substring to return the left portion of a string:

The following will display: This
String cMyString = "This is my string";
MessageBox.Show(cMyString.Substring(0, 4));


The following will display: This is
MessageBox.Show(cMyString.Substring(0, 7));



--EricDV Sig---------
Some problems are so complex that you have to be highly intelligent and well informed just to be undecided about them.
- Laurence J. Peters

GeneralRe: Left Function in C# Pin
samtam20-Sep-06 20:26
samtam20-Sep-06 20:26 
QuestionHow to capture the URL? Pin
zhoujun19-Sep-06 5:11
zhoujun19-Sep-06 5:11 
QuestionCalculating scientific notation? Pin
Goalie3519-Sep-06 5:10
Goalie3519-Sep-06 5:10 
AnswerRe: Calculating scientific notation? Pin
Stefan Troschuetz19-Sep-06 5:24
Stefan Troschuetz19-Sep-06 5:24 
QuestionSet resolution in Metafiles Pin
cubeccu19-Sep-06 5:07
cubeccu19-Sep-06 5:07 
Questionwriting to string resource Pin
likefood19-Sep-06 4:57
likefood19-Sep-06 4:57 
QuestionProblems with a custom tooltip [modified] Pin
Gags66619-Sep-06 4:36
Gags66619-Sep-06 4:36 
Questionhow we I call a method from other .cs file... Pin
irkahc19-Sep-06 3:23
irkahc19-Sep-06 3:23 
AnswerRe: how we I call a method from other .cs file... Pin
albCode19-Sep-06 4:22
albCode19-Sep-06 4:22 
GeneralRe: how we I call a method from other .cs file... Pin
irkahc19-Sep-06 17:34
irkahc19-Sep-06 17:34 
GeneralRe: how we I call a method from other .cs file... Pin
irkahc19-Sep-06 19:58
irkahc19-Sep-06 19:58 
AnswerRe: how we I call a method from other .cs file... Pin
Christian Graus19-Sep-06 11:30
protectorChristian Graus19-Sep-06 11:30 
Questionhow do you write this vb line in c# Pin
faladrim19-Sep-06 3:03
faladrim19-Sep-06 3:03 
AnswerRe: how do you write this vb line in c# Pin
Ravi Bhavnani19-Sep-06 3:13
professionalRavi Bhavnani19-Sep-06 3:13 
QuestionHow can I start Lotus Notes V5 or V6 with attachements in C#.NET? Pin
MDT Daniel19-Sep-06 2:55
MDT Daniel19-Sep-06 2:55 
AnswerRe: How can I start Lotus Notes V5 or V6 with attachements in C#.NET? Pin
unclepaul19-Sep-06 5:23
unclepaul19-Sep-06 5:23 
GeneralRe: How can I start Lotus Notes V5 or V6 with attachements in C#.NET? Pin
MDT Daniel19-Sep-06 20:10
MDT Daniel19-Sep-06 20:10 

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.