Click here to Skip to main content
15,919,028 members
Home / Discussions / C#
   

C#

 
AnswerRe: Tristate checkboxes in TreeView? Pin
Joe Woodbury21-Feb-06 10:41
professionalJoe Woodbury21-Feb-06 10:41 
AnswerRe: Tristate checkboxes in TreeView? Pin
Joel Lucsy22-Feb-06 13:21
Joel Lucsy22-Feb-06 13:21 
QuestionVB to C# codes Pin
superPaul10121-Feb-06 8:34
superPaul10121-Feb-06 8:34 
AnswerRe: VB to C# codes Pin
Wjousts21-Feb-06 8:38
Wjousts21-Feb-06 8:38 
GeneralRe: VB to C# codes Pin
superPaul10121-Feb-06 8:41
superPaul10121-Feb-06 8:41 
GeneralRe: VB to C# codes Pin
Wjousts21-Feb-06 8:46
Wjousts21-Feb-06 8:46 
GeneralRe: VB to C# codes Pin
superPaul10121-Feb-06 8:50
superPaul10121-Feb-06 8:50 
AnswerRe: VB to C# codes Pin
Dave Doknjas21-Feb-06 15:11
Dave Doknjas21-Feb-06 15:11 
Our Instant C# VB to C# converter produces:

public string Get_Key(string KeyPath, string KeyName, string host)
{
byte[] RKey = null;
int ilByte = 0;
try
{
byte[] Key = Get_Reg(KeyPath, KeyName, host);
byte[] tempReDim1 = new byte[15];
if (RKey != null)
System.Array.Copy(RKey, tempReDim1, System.Math.Min(RKey.Length, tempReDim1.Length));
RKey = tempReDim1;
for (ilByte = 52; ilByte <= 66; ilByte++)
{
RKey[ilByte - 52] = Key[ilByte];
}
}
catch (Exception ex)
{
return "";
//yes - silly, but this is what you're original code does
//(the statement is never executed)
return null;
}

return "";
}


David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: C# to C++ converter and VB to C++ converter
Instant J#: VB to J# converter
Clear VB: Cleans up VB.NET code
Clear C#: Cleans up C# code
QuestionWeird IComparer behavor in DataGridView Pin
Wjousts21-Feb-06 8:25
Wjousts21-Feb-06 8:25 
QuestionApp in Taskbar like Media Player Pin
DeepToot21-Feb-06 7:21
DeepToot21-Feb-06 7:21 
AnswerRe: App in Taskbar like Media Player Pin
hard.disk21-Feb-06 8:01
hard.disk21-Feb-06 8:01 
GeneralRe: App in Taskbar like Media Player Pin
DeepToot21-Feb-06 8:04
DeepToot21-Feb-06 8:04 
QuestionToolstripLabel rendering Pin
Ravi Bhavnani21-Feb-06 7:14
professionalRavi Bhavnani21-Feb-06 7:14 
QuestionGetting the Serial Key Pin
superPaul10121-Feb-06 7:10
superPaul10121-Feb-06 7:10 
QuestionHow to register ActiveX contorl Pin
papa198021-Feb-06 6:10
papa198021-Feb-06 6:10 
QuestionExtracting information from URLs Pin
hasanali0021-Feb-06 6:09
hasanali0021-Feb-06 6:09 
AnswerRe: Extracting information from URLs Pin
Wjousts21-Feb-06 8:08
Wjousts21-Feb-06 8:08 
QuestionAdd IMessageFilter to COM Pin
jerryyag21-Feb-06 5:42
jerryyag21-Feb-06 5:42 
QuestionHow do I create a videoplayer? Pin
ChevyVanDude21-Feb-06 5:02
ChevyVanDude21-Feb-06 5:02 
QuestionMultithreading problem Pin
Le centriste21-Feb-06 4:50
Le centriste21-Feb-06 4:50 
AnswerRe: Multithreading problem Pin
Alvaro Mendez21-Feb-06 6:14
Alvaro Mendez21-Feb-06 6:14 
AnswerRe: Multithreading problem Pin
Judah Gabriel Himango21-Feb-06 6:21
sponsorJudah Gabriel Himango21-Feb-06 6:21 
GeneralRe: Multithreading problem Pin
Le centriste21-Feb-06 6:35
Le centriste21-Feb-06 6:35 
GeneralRe: Multithreading problem Pin
Judah Gabriel Himango21-Feb-06 6:56
sponsorJudah Gabriel Himango21-Feb-06 6:56 
GeneralRe: Multithreading problem Pin
Le centriste21-Feb-06 7:10
Le centriste21-Feb-06 7:10 

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.