Click here to Skip to main content
15,913,610 members
Home / Discussions / C#
   

C#

 
GeneralRe: ص Pin
sima37-Feb-10 20:24
sima37-Feb-10 20:24 
QuestionCrystal Reports [Solved] Pin
Wamuti7-Feb-10 20:07
Wamuti7-Feb-10 20:07 
AnswerRe: Crystal Reports Pin
Not Active7-Feb-10 20:31
mentorNot Active7-Feb-10 20:31 
GeneralRe: Crystal Reports Pin
Wamuti7-Feb-10 20:36
Wamuti7-Feb-10 20:36 
Questioncast string to control.Property Pin
jojoba20107-Feb-10 19:53
jojoba20107-Feb-10 19:53 
AnswerRe: cast string to control.Property Pin
Not Active7-Feb-10 20:05
mentorNot Active7-Feb-10 20:05 
QuestionRe: cast string to control.Property Pin
jojoba20107-Feb-10 20:17
jojoba20107-Feb-10 20:17 
AnswerRe: cast string to control.Property Pin
Shakeel Iqbal7-Feb-10 20:40
Shakeel Iqbal7-Feb-10 20:40 
QuestionRe: cast string to control.Property Pin
jojoba20107-Feb-10 20:51
jojoba20107-Feb-10 20:51 
AnswerRe: cast string to control.Property Pin
Dave Kreskowiak8-Feb-10 2:07
mveDave Kreskowiak8-Feb-10 2:07 
QuestionBackup & Restore Pin
Sivaooty7-Feb-10 19:51
Sivaooty7-Feb-10 19:51 
AnswerRe: Backup & Restore Pin
Eddy Vluggen7-Feb-10 20:53
professionalEddy Vluggen7-Feb-10 20:53 
QuestionHOOKING WINSOCK FUNCTIONS in C#? Pin
ritz12347-Feb-10 19:36
ritz12347-Feb-10 19:36 
Questionhow to set the connection time out for a tcp client Pin
prasadbuddhika7-Feb-10 19:01
prasadbuddhika7-Feb-10 19:01 
AnswerRe: how to set the connection time out for a tcp client Pin
Jimmanuel8-Feb-10 7:05
Jimmanuel8-Feb-10 7:05 
QuestionMessage Removed Pin
7-Feb-10 18:43
sima37-Feb-10 18:43 
Questionhow to close a tcp connection in c# Pin
prasadbuddhika7-Feb-10 18:39
prasadbuddhika7-Feb-10 18:39 
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);
}

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.