Click here to Skip to main content
15,901,283 members
Home / Discussions / C#
   

C#

 
AnswerRe: Control box doesnt exit application Pin
mfmaneef3-Apr-07 9:05
mfmaneef3-Apr-07 9:05 
GeneralRe: Control box doesnt exit application Pin
Douglas Troy3-Apr-07 9:27
Douglas Troy3-Apr-07 9:27 
QuestionUsing .NET C# UI control from Visual Studio 6 C++ Pin
StephenJB3-Apr-07 8:17
StephenJB3-Apr-07 8:17 
QuestionSaving project to file Pin
sinosoidal3-Apr-07 7:02
sinosoidal3-Apr-07 7:02 
AnswerRe: Saving project to file Pin
Douglas Troy3-Apr-07 7:21
Douglas Troy3-Apr-07 7:21 
GeneralRe: Saving project to file Pin
sinosoidal3-Apr-07 7:25
sinosoidal3-Apr-07 7:25 
GeneralRe: Saving project to file Pin
Douglas Troy3-Apr-07 7:29
Douglas Troy3-Apr-07 7:29 
GeneralRe: Saving project to file Pin
sinosoidal3-Apr-07 23:31
sinosoidal3-Apr-07 23:31 
GeneralRe: Saving project to file Pin
sinosoidal3-Apr-07 23:37
sinosoidal3-Apr-07 23:37 
QuestionImplementing drag and drop funcionality Pin
sinosoidal3-Apr-07 6:56
sinosoidal3-Apr-07 6:56 
AnswerRe: Implementing drag and drop funcionality Pin
Douglas Troy3-Apr-07 7:22
Douglas Troy3-Apr-07 7:22 
GeneralRe: Implementing drag and drop funcionality Pin
sinosoidal3-Apr-07 23:41
sinosoidal3-Apr-07 23:41 
Questionhow to convert unicode to int in C#? Pin
OmarLodhi3-Apr-07 6:55
OmarLodhi3-Apr-07 6:55 
AnswerRe: how to convert unicode to int in C#? Pin
Vikram A Punathambekar3-Apr-07 7:07
Vikram A Punathambekar3-Apr-07 7:07 
AnswerRe: how to convert unicode to int in C#? Pin
Wayne Phipps3-Apr-07 9:32
Wayne Phipps3-Apr-07 9:32 
How many characters in the string? Maybe thats the problem?

Perhaps you need to ittereate through each character of the string in turn, something like:
foreach( char character in unicodeString )
{
     int charValue = Convert.ToInt32( character );
}


Just an idea.

If your still stuck, you should post some of your code.






Regards

Wayne Phipps
____________

Time is the greatest teacher... unfortunately, it kills all of its students
View my Blog

GeneralRe: how to convert unicode to int in C#? Pin
OmarLodhi3-Apr-07 15:34
OmarLodhi3-Apr-07 15:34 
GeneralRe: how to convert unicode to int in C#? Pin
Vikram A Punathambekar3-Apr-07 18:23
Vikram A Punathambekar3-Apr-07 18:23 
GeneralRe: how to convert unicode to int in C#? Pin
OmarLodhi3-Apr-07 21:26
OmarLodhi3-Apr-07 21:26 
Questionhow to use webbrowserControl Pin
pashitech3-Apr-07 6:22
pashitech3-Apr-07 6:22 
AnswerRe: how to use webbrowserControl Pin
Douglas Troy3-Apr-07 6:30
Douglas Troy3-Apr-07 6:30 
QuestionJust problems... Pin
lost in transition 3-Apr-07 5:39
lost in transition 3-Apr-07 5:39 
AnswerRe: Just problems... Pin
Vikram A Punathambekar3-Apr-07 7:09
Vikram A Punathambekar3-Apr-07 7:09 
GeneralRe: Just problems... Pin
lost in transition 3-Apr-07 8:01
lost in transition 3-Apr-07 8:01 
QuestionXml Confusion Pin
Mark F.3-Apr-07 5:24
Mark F.3-Apr-07 5:24 
AnswerRe: Xml Confusion Pin
kubben3-Apr-07 6:03
kubben3-Apr-07 6:03 

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.