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

C#

 
AnswerRe: how to close a tcp connection in c# Pin
Dave Kreskowiak8-Feb-10 2:05
mveDave Kreskowiak8-Feb-10 2:05 
Questionب Pin
sima37-Feb-10 18:23
sima37-Feb-10 18:23 
AnswerIgnore Pin
Not Active7-Feb-10 18:32
mentorNot Active7-Feb-10 18:32 
GeneralRe: Ignore Pin
sima37-Feb-10 18:42
sima37-Feb-10 18:42 
Questionit appears the tab control doesn't have a click event so how can i make one ? Pin
tonyonlinux7-Feb-10 18:14
tonyonlinux7-Feb-10 18:14 
AnswerRe: it appears the tab control doesn't have a click event so how can i make one ? Pin
Not Active7-Feb-10 18:18
mentorNot Active7-Feb-10 18:18 
QuestionByte Array to uint (Hex Decimal Value) Little help [I Solved It] Pin
xEvOx7-Feb-10 17:23
xEvOx7-Feb-10 17:23 
AnswerRe: Byte Array to uint (Hex Decimal Value) Little help Pin
xEvOx7-Feb-10 17:58
xEvOx7-Feb-10 17:58 
I solved it , Here is the code :
(new Class) 
public static string HexToAscii(byte[] hex)
            {
                string ascii = "";
                for (int i = 0; i < hex.Length; i++)
                {
                    string temp = hex[i].ToString("X");
                    if (temp.Length == 1)
                        temp = "0" + temp;
                    ascii += temp;
                }
                return ascii;
            }

public static uint BytetoUint(byte[] Data)
{
   string Array = Conversions.HexToAscii(Data);
   int i = int.Parse(Array, NumberStyles.HexNumber);
   return Convert.ToUInt32(i);
}

GeneralRe: Byte Array to uint (Hex Decimal Value) Little help Pin
Luc Pattyn8-Feb-10 1:20
sitebuilderLuc Pattyn8-Feb-10 1:20 
QuestionClearing out controls all at one time in winform [Solved] Pin
tonyonlinux7-Feb-10 17:04
tonyonlinux7-Feb-10 17:04 
AnswerRe: Clearing out controls all at one time in winform Pin
Luc Pattyn7-Feb-10 17:09
sitebuilderLuc Pattyn7-Feb-10 17:09 
AnswerRe: Clearing out controls all at one time in winform Pin
Not Active7-Feb-10 17:11
mentorNot Active7-Feb-10 17:11 
GeneralRe: Clearing out controls all at one time in winform Pin
tonyonlinux7-Feb-10 17:58
tonyonlinux7-Feb-10 17:58 
QuestionVB6 to c#. Pin
A.Machan Kachan7-Feb-10 15:29
A.Machan Kachan7-Feb-10 15:29 
AnswerRe: VB6 to c#. Pin
Not Active7-Feb-10 16:56
mentorNot Active7-Feb-10 16:56 
AnswerRe: VB6 to c#. Pin
Mycroft Holmes7-Feb-10 19:08
professionalMycroft Holmes7-Feb-10 19:08 
Question64-bit Registry from 64-bit Application Pin
Steve Harp7-Feb-10 12:09
Steve Harp7-Feb-10 12:09 
Questionform resizing Pin
Karrottop7-Feb-10 9:49
Karrottop7-Feb-10 9:49 
AnswerRe: form resizing Pin
Hesham Amin7-Feb-10 10:01
Hesham Amin7-Feb-10 10:01 
GeneralRe: form resizing Pin
Karrottop7-Feb-10 10:47
Karrottop7-Feb-10 10:47 
GeneralRe: form resizing Pin
DaveyM697-Feb-10 11:34
professionalDaveyM697-Feb-10 11:34 
GeneralRe: form resizing Pin
Mycroft Holmes7-Feb-10 19:11
professionalMycroft Holmes7-Feb-10 19:11 
GeneralRe: form resizing Pin
Hesham Amin7-Feb-10 20:25
Hesham Amin7-Feb-10 20:25 
QuestionC# Pin
r.kh7-Feb-10 9:22
r.kh7-Feb-10 9:22 
AnswerRe: C# Pin
Alex Manolescu7-Feb-10 10:46
Alex Manolescu7-Feb-10 10:46 

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.