Click here to Skip to main content
15,891,976 members
Home / Discussions / C#
   

C#

 
GeneralRe: string process Pin
Antony M Kancidrowski8-Feb-07 2:16
Antony M Kancidrowski8-Feb-07 2:16 
GeneralRe: string process Pin
Mohammad Daba'an8-Feb-07 2:23
Mohammad Daba'an8-Feb-07 2:23 
GeneralRe: string process Pin
aSarafian8-Feb-07 2:29
aSarafian8-Feb-07 2:29 
GeneralRe: string process Pin
Mohammad Daba'an9-Feb-07 20:36
Mohammad Daba'an9-Feb-07 20:36 
GeneralRe: string process Pin
Antony M Kancidrowski8-Feb-07 2:31
Antony M Kancidrowski8-Feb-07 2:31 
GeneralRe: string process Pin
Mohammad Daba'an9-Feb-07 20:36
Mohammad Daba'an9-Feb-07 20:36 
GeneralRe: string process Pin
Mohammad Daba'an9-Feb-07 22:17
Mohammad Daba'an9-Feb-07 22:17 
GeneralSolution Pin
Mohammad Daba'an10-Feb-07 0:24
Mohammad Daba'an10-Feb-07 0:24 
Hey guys, i got the solution 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();
}

enjoy and thanks to all of u Rose | [Rose]

Thanks alot
Hamody

QuestionFetching webpages as IE/Firefox Pin
phimix8-Feb-07 1:53
phimix8-Feb-07 1:53 
AnswerRe: Fetching webpages as IE/Firefox Pin
aSarafian8-Feb-07 2:30
aSarafian8-Feb-07 2:30 
GeneralRe: Fetching webpages as IE/Firefox Pin
phimix8-Feb-07 2:49
phimix8-Feb-07 2:49 
GeneralRe: Fetching webpages as IE/Firefox Pin
Sandeep Akhare8-Feb-07 3:23
Sandeep Akhare8-Feb-07 3:23 
GeneralRe: Fetching webpages as IE/Firefox Pin
Sandeep Akhare8-Feb-07 3:31
Sandeep Akhare8-Feb-07 3:31 
Questionremote again Pin
mihksoft8-Feb-07 1:46
mihksoft8-Feb-07 1:46 
AnswerRe: remote again Pin
Antony M Kancidrowski8-Feb-07 2:10
Antony M Kancidrowski8-Feb-07 2:10 
GeneralRe: remote again Pin
mihksoft8-Feb-07 2:26
mihksoft8-Feb-07 2:26 
GeneralRe: remote again Pin
Antony M Kancidrowski8-Feb-07 2:41
Antony M Kancidrowski8-Feb-07 2:41 
Questionform logic/timing Pin
Planker8-Feb-07 1:35
Planker8-Feb-07 1:35 
AnswerRe: form logic/timing Pin
aSarafian8-Feb-07 1:43
aSarafian8-Feb-07 1:43 
AnswerRe: form logic/timing Pin
Stefan Troschuetz8-Feb-07 1:43
Stefan Troschuetz8-Feb-07 1:43 
GeneralRe: form logic/timing Pin
Planker8-Feb-07 2:11
Planker8-Feb-07 2:11 
QuestionEncode Url?? Pin
tadhg888-Feb-07 1:27
tadhg888-Feb-07 1:27 
AnswerRe: Encode Url?? Pin
Stefan Troschuetz8-Feb-07 1:41
Stefan Troschuetz8-Feb-07 1:41 
GeneralRe: Encode Url?? Pin
tadhg888-Feb-07 3:21
tadhg888-Feb-07 3:21 
AnswerRe: Encode Url?? Pin
Guffa8-Feb-07 2:51
Guffa8-Feb-07 2:51 

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.