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

C#

 
QuestionProblems with using controls Pin
martinz081512-May-06 2:49
martinz081512-May-06 2:49 
Questionbroswer compatibility problem Pin
Parvathivadde12-May-06 2:09
Parvathivadde12-May-06 2:09 
AnswerRe: broswer compatibility problem Pin
NaNg1524112-May-06 2:14
NaNg1524112-May-06 2:14 
GeneralRe: broswer compatibility problem Pin
Parvathivadde12-May-06 2:24
Parvathivadde12-May-06 2:24 
GeneralRe: broswer compatibility problem Pin
NaNg1524112-May-06 3:09
NaNg1524112-May-06 3:09 
GeneralRe: broswer compatibility problem Pin
Parvathivadde12-May-06 3:15
Parvathivadde12-May-06 3:15 
QuestionNeed help in explicit convertion of char[] to string Pin
Ashraj198212-May-06 2:05
Ashraj198212-May-06 2:05 
AnswerRe: Need help in explicit convertion of char[] to string Pin
NaNg1524112-May-06 2:14
NaNg1524112-May-06 2:14 
there is no explicit\implicit way on converting char[] to string, and overriding will cause a-lot of problems. just use this function (you can change and it's better to change the static in it):

static private string CtoS(char[] charArr)
{
    string tmp = "";
    for (int i = 0; i < charArr.Length; i++)
        tmp = tmp + charArr[i];
    return tmp;
}


NaNg
GeneralRe: Need help in explicit convertion of char[] to string Pin
Ashraj198212-May-06 2:21
Ashraj198212-May-06 2:21 
AnswerRe: Need help in explicit convertion of char[] to string Pin
lmoelleb12-May-06 2:33
lmoelleb12-May-06 2:33 
QuestionBrowserCompatability Pin
Parvathivadde12-May-06 2:02
Parvathivadde12-May-06 2:02 
Questiona question about notifyicon ? Pin
cmpeng3412-May-06 2:02
cmpeng3412-May-06 2:02 
AnswerRe: a question about notifyicon ? Pin
NaNg1524112-May-06 2:09
NaNg1524112-May-06 2:09 
GeneralMessage Closed Pin
12-May-06 2:29
cmpeng3412-May-06 2:29 
GeneralRe: a question about notifyicon ? Pin
NaNg1524112-May-06 3:14
NaNg1524112-May-06 3:14 
GeneralRe: a question about notifyicon ? Pin
engsrini12-May-06 3:30
engsrini12-May-06 3:30 
GeneralRe: a question about notifyicon ? Pin
NaNg1524112-May-06 3:32
NaNg1524112-May-06 3:32 
QuestionCast unmanaged type to managed type Pin
anderslundsgard12-May-06 1:48
anderslundsgard12-May-06 1:48 
Questionimplementing form closing event ? help please ... Pin
cmpeng3412-May-06 1:26
cmpeng3412-May-06 1:26 
AnswerRe: implementing form closing event ? help please ... Pin
engsrini12-May-06 1:34
engsrini12-May-06 1:34 
QuestionNoob question: How to share variables between two forms? Pin
Subterranean12-May-06 1:16
Subterranean12-May-06 1:16 
AnswerRe: Noob question: How to share variables between two forms? Pin
NaNg1524112-May-06 1:20
NaNg1524112-May-06 1:20 
GeneralRe: Noob question: How to share variables between two forms? Pin
NaNg1524112-May-06 1:43
NaNg1524112-May-06 1:43 
GeneralRe: Noob question: How to share variables between two forms? Pin
led mike12-May-06 9:04
led mike12-May-06 9:04 
GeneralRe: Noob question: How to share variables between two forms? Pin
NaNg1524112-May-06 9:14
NaNg1524112-May-06 9:14 

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.