Click here to Skip to main content
15,920,896 members
Home / Discussions / C#
   

C#

 
GeneralRe: Sorry - spelling mistake.... Pin
Yanshof6-Nov-07 20:12
Yanshof6-Nov-07 20:12 
GeneralRe: Sorry - spelling mistake.... Pin
Christian Wikander6-Nov-07 20:26
Christian Wikander6-Nov-07 20:26 
GeneralRe: Sorry - spelling mistake.... Pin
Yanshof6-Nov-07 20:32
Yanshof6-Nov-07 20:32 
GeneralRe: Sorry - spelling mistake.... Pin
Pete O'Hanlon6-Nov-07 21:53
mvePete O'Hanlon6-Nov-07 21:53 
GeneralRe: Sorry - spelling mistake.... Pin
Yanshof6-Nov-07 21:55
Yanshof6-Nov-07 21:55 
GeneralRe: Sorry - spelling mistake.... Pin
Michael Sync9-Nov-07 19:55
Michael Sync9-Nov-07 19:55 
QuestionHex to ascii Pin
danzar6-Nov-07 18:54
danzar6-Nov-07 18:54 
AnswerRe: Hex to ascii Pin
Michael Sync6-Nov-07 18:59
Michael Sync6-Nov-07 18:59 
Ref : http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=206450&SiteID=1[^]

private string HexAsciiConvert(string hex)<br />
{<br />
StringBuilder sb = new StringBuilder();<br />
for (int i = 0; i <= hex.Length - 2; i += 2)<br />
{<br />
sb.Append(Convert.ToString(Convert.ToChar(Int32.Parse(hex.Substring(i, 2),<br />
System.Globalization.NumberStyles.HexNumber))));<br />
}<br />
return sb.ToString();<br />
}


Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)

GeneralRe: Hex to ascii Pin
danzar6-Nov-07 19:18
danzar6-Nov-07 19:18 
QuestionPut Dlls in Directory other than the one having exe Pin
Sukhjinder_K6-Nov-07 18:12
Sukhjinder_K6-Nov-07 18:12 
AnswerRe: Put Dlls in Directory other than the one having exe Pin
mav.northwind6-Nov-07 19:16
mav.northwind6-Nov-07 19:16 
Questioncan't show the visualization of media player Pin
whale846-Nov-07 17:59
whale846-Nov-07 17:59 
QuestionC# MS Access and Oracle Pin
kurisutofuJP6-Nov-07 17:24
kurisutofuJP6-Nov-07 17:24 
AnswerRe: C# MS Access and Oracle Pin
Paul Conrad6-Nov-07 18:12
professionalPaul Conrad6-Nov-07 18:12 
AnswerRe: C# MS Access and Oracle Pin
kurisutofuJP6-Nov-07 18:27
kurisutofuJP6-Nov-07 18:27 
GeneralRe: C# MS Access and Oracle Pin
Paul Conrad7-Nov-07 12:01
professionalPaul Conrad7-Nov-07 12:01 
QuestionLabel Visibility under ButtonClick EventHandler Pin
Rahul836-Nov-07 17:20
Rahul836-Nov-07 17:20 
AnswerRe: Label Visibility under ButtonClick EventHandler Pin
mav.northwind6-Nov-07 19:20
mav.northwind6-Nov-07 19:20 
AnswerRe: Urgent.................. Pin
Paul Conrad6-Nov-07 18:12
professionalPaul Conrad6-Nov-07 18:12 
QuestionData in a Directory-Like Structure Pin
Spyder_Snyper6-Nov-07 13:16
Spyder_Snyper6-Nov-07 13:16 
AnswerRe: Data in a Directory-Like Structure Pin
Michael Sync6-Nov-07 14:23
Michael Sync6-Nov-07 14:23 
GeneralRe: Data in a Directory-Like Structure Pin
Spyder_Snyper9-Nov-07 14:54
Spyder_Snyper9-Nov-07 14:54 
GeneralRe: Data in a Directory-Like Structure Pin
Michael Sync9-Nov-07 16:08
Michael Sync9-Nov-07 16:08 
QuestionGraphics over WinControls Pin
MasterSharp6-Nov-07 12:13
MasterSharp6-Nov-07 12:13 
AnswerRe: Graphics over WinControls Pin
Christian Graus6-Nov-07 12:48
protectorChristian Graus6-Nov-07 12:48 

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.