Click here to Skip to main content
15,900,258 members
Home / Discussions / C#
   

C#

 
AnswerRe: Windows Service Pin
Dave Kreskowiak10-Feb-07 4:09
mveDave Kreskowiak10-Feb-07 4:09 
GeneralRe: Windows Service Pin
Syed Shahid Hussain11-Feb-07 17:32
Syed Shahid Hussain11-Feb-07 17:32 
GeneralRe: Windows Service Pin
Dave Kreskowiak12-Feb-07 2:22
mveDave Kreskowiak12-Feb-07 2:22 
GeneralRe: Windows Service Pin
Syed Shahid Hussain12-Feb-07 17:22
Syed Shahid Hussain12-Feb-07 17:22 
QuestionDistance CAlculator Pin
Shriya Kapoor10-Feb-07 0:09
Shriya Kapoor10-Feb-07 0:09 
AnswerRe: Distance CAlculator Pin
Colin Angus Mackay10-Feb-07 0:27
Colin Angus Mackay10-Feb-07 0:27 
Questionconverting from hexadecimal to char Pin
Mohammad Daba'an10-Feb-07 0:01
Mohammad Daba'an10-Feb-07 0:01 
AnswerSolution Pin
Mohammad Daba'an10-Feb-07 0:23
Mohammad Daba'an10-Feb-07 0:23 
Hey guys, i got the solutution which is:


private string HexAsciiConvert(string hex)
{

StringBuilder sb = new StringBuilder();

for (int i = 0; i <= hex.Length - 4; i += 4)
{

sb.Append(Convert.ToString(Convert.ToChar(Int32.Parse(hex.Substring(i, 4), System.Globalization.NumberStyles.HexNumber))));

}
return sb.ToString();
}

Thanks alot
Hamody

Questiondistance calculate Pin
Shriya Kapoor9-Feb-07 23:24
Shriya Kapoor9-Feb-07 23:24 
AnswerRe: distance calculate Pin
Christian Graus9-Feb-07 23:43
protectorChristian Graus9-Feb-07 23:43 
Questionoperating system Pin
debnathrubs9-Feb-07 22:09
debnathrubs9-Feb-07 22:09 
AnswerRe: operating system Pin
Christian Graus9-Feb-07 22:19
protectorChristian Graus9-Feb-07 22:19 
GeneralRe: operating system Pin
debnathrubs9-Feb-07 22:55
debnathrubs9-Feb-07 22:55 
GeneralRe: operating system Pin
Christian Graus9-Feb-07 23:17
protectorChristian Graus9-Feb-07 23:17 
GeneralRe: operating system Pin
debnathrubs9-Feb-07 23:24
debnathrubs9-Feb-07 23:24 
GeneralRe: operating system Pin
Colin Angus Mackay10-Feb-07 0:25
Colin Angus Mackay10-Feb-07 0:25 
GeneralRe: operating system Pin
Dave Kreskowiak10-Feb-07 4:04
mveDave Kreskowiak10-Feb-07 4:04 
QuestionDifferent speeds using Pointers Pin
AlexZieg719-Feb-07 21:09
AlexZieg719-Feb-07 21:09 
QuestionMethods and Calling Methods Pin
JMOdom9-Feb-07 20:33
JMOdom9-Feb-07 20:33 
AnswerRe: Methods and Calling Methods Pin
Christian Graus9-Feb-07 21:00
protectorChristian Graus9-Feb-07 21:00 
GeneralRe: Methods and Calling Methods Pin
chris.hagelstein5-Apr-10 8:07
chris.hagelstein5-Apr-10 8:07 
QuestionAccessing dbf database tables instead of database Pin
kalyan_24169-Feb-07 19:36
kalyan_24169-Feb-07 19:36 
QuestionResponse.Redirect Failedon login Pin
dabuskol9-Feb-07 18:14
dabuskol9-Feb-07 18:14 
QuestionException has been thrown by the target of an invocation Pin
Kasic Slobodan9-Feb-07 16:44
Kasic Slobodan9-Feb-07 16:44 
AnswerRe: Exception has been thrown by the target of an invocation Pin
Stefan Troschuetz9-Feb-07 21:35
Stefan Troschuetz9-Feb-07 21:35 

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.