Click here to Skip to main content
15,886,518 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to get the select value in a multiple dropdownlist Pin
Jibesh14-Jan-13 14:33
professionalJibesh14-Jan-13 14:33 
AnswerRe: How to get the select value in a multiple dropdownlist Pin
micke.andersson28-Jan-13 3:54
micke.andersson28-Jan-13 3:54 
QuestionAdding a reference to a project Pin
PozzaVecia14-Jan-13 11:33
PozzaVecia14-Jan-13 11:33 
AnswerRe: Adding a reference to a project Pin
Richard MacCutchan14-Jan-13 22:21
mveRichard MacCutchan14-Jan-13 22:21 
QuestionHow can i save data from word table to SQL database C# Pin
Nkeshe14-Jan-13 2:16
Nkeshe14-Jan-13 2:16 
AnswerRe: How can i save data from word table to SQL database C# Pin
Eddy Vluggen14-Jan-13 3:15
professionalEddy Vluggen14-Jan-13 3:15 
QuestionReading jpeg image from a binary data Pin
coolprasadhegde14-Jan-13 0:44
coolprasadhegde14-Jan-13 0:44 
AnswerRe: Reading jpeg image from a binary data Pin
OriginalGriff14-Jan-13 0:53
mveOriginalGriff14-Jan-13 0:53 
Assuming that the data is a Jpeg file, just stored as binary:
C#
byte[] bytes = File.ReadAllBytes(path);
MemoryStream ms = new MemoryStream(bytes);
Image returnImage = Image.FromStream(ms);

If you get an email telling you that you can catch Swine Flu from tinned pork then just delete it. It's Spam.

GeneralRe: Reading jpeg image from a binary data Pin
coolprasadhegde14-Jan-13 20:38
coolprasadhegde14-Jan-13 20:38 
GeneralRe: Reading jpeg image from a binary data Pin
OriginalGriff14-Jan-13 21:03
mveOriginalGriff14-Jan-13 21:03 
QuestionCapturing windows messages Pin
Dainer Mesa Lima13-Jan-13 19:45
Dainer Mesa Lima13-Jan-13 19:45 
AnswerRe: Capturing windows messages Pin
Sandeep Mewara13-Jan-13 20:23
mveSandeep Mewara13-Jan-13 20:23 
AnswerRe: Capturing windows messages Pin
Pete O'Hanlon13-Jan-13 23:29
mvePete O'Hanlon13-Jan-13 23:29 
QuestionSqlConnection vs IDbConnection Pin
levanduyet_vn13-Jan-13 15:40
levanduyet_vn13-Jan-13 15:40 
AnswerRe: SqlConnection vs IDbConnection Pin
PIEBALDconsult13-Jan-13 15:56
mvePIEBALDconsult13-Jan-13 15:56 
AnswerRe: SqlConnection vs IDbConnection Pin
Simon_Whale14-Jan-13 0:01
Simon_Whale14-Jan-13 0:01 
QuestionLINQ with List Pin
Member 873185913-Jan-13 9:48
Member 873185913-Jan-13 9:48 
AnswerRe: LINQ with List Pin
J4amieC13-Jan-13 21:47
J4amieC13-Jan-13 21:47 
AnswerRe: LINQ with List Pin
Simon_Whale14-Jan-13 1:17
Simon_Whale14-Jan-13 1:17 
GeneralRe: LINQ with List Pin
Member 875312115-Jan-13 6:35
Member 875312115-Jan-13 6:35 
AnswerRe: LINQ with List Pin
Member 873185921-Jan-13 6:36
Member 873185921-Jan-13 6:36 
Questionhow i get data from datatable Pin
a1_shay13-Jan-13 6:58
a1_shay13-Jan-13 6:58 
AnswerRe: how i get data from datatable Pin
PIEBALDconsult13-Jan-13 13:38
mvePIEBALDconsult13-Jan-13 13:38 
GeneralRe: how i get data from datatable Pin
a1_shay13-Jan-13 20:29
a1_shay13-Jan-13 20:29 
GeneralRe: how i get data from datatable Pin
Mycroft Holmes13-Jan-13 21:06
professionalMycroft Holmes13-Jan-13 21:06 

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.