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

C#

 
GeneralRe: simple radio button question Pin
rzvme28-Sep-06 12:12
rzvme28-Sep-06 12:12 
GeneralRe: simple radio button question Pin
Dave Kreskowiak28-Sep-06 12:33
mveDave Kreskowiak28-Sep-06 12:33 
GeneralRe: simple radio button question Pin
Guffa28-Sep-06 21:19
Guffa28-Sep-06 21:19 
QuestionHow to increase string character value Pin
T.Willey28-Sep-06 5:50
T.Willey28-Sep-06 5:50 
AnswerRe: How to increase string character value Pin
User 665828-Sep-06 6:02
User 665828-Sep-06 6:02 
GeneralRe: How to increase string character value Pin
T.Willey28-Sep-06 6:08
T.Willey28-Sep-06 6:08 
AnswerRe: How to increase string character value Pin
Guffa28-Sep-06 6:42
Guffa28-Sep-06 6:42 
AnswerRe: How to increase string character value Pin
Michael Potter28-Sep-06 6:08
Michael Potter28-Sep-06 6:08 
This will convert a full string. You will end up with some punctuation at the end of the alphabit.
string oldStr = "Hello";
string newStr = "";
char[] hold = oldStr.ToCharArray();
for (int i = 0; i < hold.Length; i++)
{
    newStr += (char)(hold[i] + 1);
}
MessageBox.Show(oldStr + Environment.NewLine + newStr);

GeneralRe: How to increase string character value Pin
T.Willey28-Sep-06 6:13
T.Willey28-Sep-06 6:13 
AnswerRe: How to increase string character value Pin
mihoc23-May-12 1:43
mihoc23-May-12 1:43 
QuestionAssembly compatibility Pin
- Pascal -28-Sep-06 5:27
- Pascal -28-Sep-06 5:27 
AnswerRe: Assembly compatibility Pin
Mike Dimmick28-Sep-06 6:33
Mike Dimmick28-Sep-06 6:33 
GeneralRe: Assembly compatibility Pin
- Pascal -14-Nov-07 16:00
- Pascal -14-Nov-07 16:00 
QuestionIs there a C# equivalent to the friend class concept in C++? Pin
nicknotyet28-Sep-06 3:59
nicknotyet28-Sep-06 3:59 
AnswerRe: Is there a C# equivalent to the friend class concept in C++? Pin
Rob Graham28-Sep-06 4:27
Rob Graham28-Sep-06 4:27 
GeneralRe: Is there a C# equivalent to the friend class concept in C++? Pin
nicknotyet28-Sep-06 5:47
nicknotyet28-Sep-06 5:47 
GeneralRe: Is there a C# equivalent to the friend class concept in C++? Pin
User 665828-Sep-06 5:57
User 665828-Sep-06 5:57 
GeneralRe: Is there a C# equivalent to the friend class concept in C++? Pin
nicknotyet28-Sep-06 7:57
nicknotyet28-Sep-06 7:57 
QuestionRetrieve text on MessageBoxButton-button [modified] Pin
jjansen28-Sep-06 3:15
jjansen28-Sep-06 3:15 
AnswerRe: Retrieve text on MessageBoxButton-button Pin
Not Active28-Sep-06 4:07
mentorNot Active28-Sep-06 4:07 
GeneralRe: Retrieve text on MessageBoxButton-button Pin
jjansen28-Sep-06 20:21
jjansen28-Sep-06 20:21 
AnswerRe: Retrieve text on MessageBoxButton-button Pin
AB777128-Sep-06 4:09
AB777128-Sep-06 4:09 
AnswerRe: Retrieve text on MessageBoxButton-button Pin
Nader Elshehabi28-Sep-06 4:13
Nader Elshehabi28-Sep-06 4:13 
GeneralRe: Retrieve text on MessageBoxButton-button Pin
jjansen28-Sep-06 20:24
jjansen28-Sep-06 20:24 
GeneralRe: Retrieve text on MessageBoxButton-button Pin
Nader Elshehabi28-Sep-06 23:18
Nader Elshehabi28-Sep-06 23:18 

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.