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

C#

 
GeneralRe: SendKey Method Pin
M Riaz Bashir6-Dec-09 23:55
M Riaz Bashir6-Dec-09 23:55 
QuestionOnGotFocus Pin
Tagamoga6-Dec-09 22:56
Tagamoga6-Dec-09 22:56 
AnswerRe: OnGotFocus Pin
Shameel6-Dec-09 23:08
professionalShameel6-Dec-09 23:08 
GeneralRe: OnGotFocus Pin
Tagamoga6-Dec-09 23:17
Tagamoga6-Dec-09 23:17 
GeneralRe: OnGotFocus Pin
Shameel7-Dec-09 6:53
professionalShameel7-Dec-09 6:53 
Questiondatabase connection problem Pin
Erdinc276-Dec-09 21:48
Erdinc276-Dec-09 21:48 
AnswerRe: database connection problem Pin
lalit146-Dec-09 22:21
lalit146-Dec-09 22:21 
GeneralRe: database connection problem Pin
Erdinc276-Dec-09 22:42
Erdinc276-Dec-09 22:42 
AnswerRe: database connection problem Pin
puri keemti6-Dec-09 22:27
puri keemti6-Dec-09 22:27 
GeneralRe: database connection problem Pin
MNantu6-Dec-09 22:43
MNantu6-Dec-09 22:43 
AnswerRe: database connection problem Pin
MNantu6-Dec-09 22:36
MNantu6-Dec-09 22:36 
GeneralRe: database connection problem Pin
Erdinc276-Dec-09 23:15
Erdinc276-Dec-09 23:15 
GeneralRe: database connection problem Pin
MNantu6-Dec-09 23:20
MNantu6-Dec-09 23:20 
GeneralRe: database connection problem Pin
Erdinc276-Dec-09 23:43
Erdinc276-Dec-09 23:43 
GeneralRe: database connection problem Pin
lalit147-Dec-09 0:01
lalit147-Dec-09 0:01 
GeneralRe: database connection problem Pin
lalit147-Dec-09 0:10
lalit147-Dec-09 0:10 
GeneralRe: database connection problem Pin
Erdinc277-Dec-09 0:14
Erdinc277-Dec-09 0:14 
GeneralRe: database connection problem Pin
MNantu7-Dec-09 0:40
MNantu7-Dec-09 0:40 
GeneralRe: database connection problem Pin
Erdinc277-Dec-09 1:19
Erdinc277-Dec-09 1:19 
QuestionConverting BitArray to string Pin
Joe Rozario6-Dec-09 21:37
Joe Rozario6-Dec-09 21:37 
AnswerRe: Converting BitArray to string Pin
dan!sh 6-Dec-09 21:45
professional dan!sh 6-Dec-09 21:45 
To convert a byte array into string, you can make use of GetString method of the various encoding classes available. But be sure that you don't have character which cannot be displayed correct in the encoding you select. Here is an example:

System.Text.UTF8Encoding encoding = new UTF8Encoding();
string str = enc.GetString(byteArray);


50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!

GeneralRe: Converting BitArray to string Pin
Joe Rozario6-Dec-09 21:55
Joe Rozario6-Dec-09 21:55 
AnswerRe: Converting BitArray to string Pin
shiplu_20506-Dec-09 22:27
shiplu_20506-Dec-09 22:27 
GeneralRe: Converting BitArray to string Pin
Joe Rozario6-Dec-09 22:32
Joe Rozario6-Dec-09 22:32 
AnswerRe: Converting BitArray to string Pin
OriginalGriff6-Dec-09 23:17
mveOriginalGriff6-Dec-09 23:17 

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.