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

C#

 
AnswerRe: Error message Pin
Gareth H8-Aug-08 6:22
Gareth H8-Aug-08 6:22 
AnswerRe: Error message Pin
hammerstein058-Aug-08 6:30
hammerstein058-Aug-08 6:30 
GeneralRe: Error message Pin
netJP12L8-Aug-08 6:39
netJP12L8-Aug-08 6:39 
GeneralRe: Error message Pin
astanton19788-Aug-08 6:46
astanton19788-Aug-08 6:46 
AnswerRe: Error message Pin
Wendelius8-Aug-08 6:46
mentorWendelius8-Aug-08 6:46 
GeneralRe: Error message Pin
netJP12L8-Aug-08 7:16
netJP12L8-Aug-08 7:16 
GeneralRe: Error message Pin
Wendelius8-Aug-08 7:28
mentorWendelius8-Aug-08 7:28 
GeneralRe: Error message........Thankssssssssssss Pin
netJP12L8-Aug-08 8:44
netJP12L8-Aug-08 8:44 
GeneralRe: Error message........Thankssssssssssss Pin
Wendelius8-Aug-08 8:46
mentorWendelius8-Aug-08 8:46 
QuestionHow to run DOS attrib commands like +S, +R in my c# project? Pin
Member 28376158-Aug-08 5:20
Member 28376158-Aug-08 5:20 
AnswerRe: How to run DOS attrib commands like +S, +R in my c# project? Pin
Manas Bhardwaj8-Aug-08 5:48
professionalManas Bhardwaj8-Aug-08 5:48 
GeneralRe: How to run DOS attrib commands like +S, +R in my c# project? Pin
Member 28376158-Aug-08 6:21
Member 28376158-Aug-08 6:21 
GeneralRe: How to run DOS attrib commands like +S, +R in my c# project? Pin
Ravi Bhavnani8-Aug-08 6:35
professionalRavi Bhavnani8-Aug-08 6:35 
GeneralRe: How to run DOS attrib commands like +S, +R in my c# project? Pin
Manas Bhardwaj8-Aug-08 6:40
professionalManas Bhardwaj8-Aug-08 6:40 
GeneralRe: How to run DOS attrib commands like +S, +R in my c# project? Pin
Paul Conrad8-Aug-08 8:31
professionalPaul Conrad8-Aug-08 8:31 
GeneralRe: How to run DOS attrib commands like +S, +R in my c# project? Pin
umbrella_yang9-Aug-08 5:33
umbrella_yang9-Aug-08 5:33 
QuestionRead from bmp file Pin
krinaljariwala8-Aug-08 4:51
krinaljariwala8-Aug-08 4:51 
AnswerRe: Read from bmp file Pin
Manas Bhardwaj8-Aug-08 4:55
professionalManas Bhardwaj8-Aug-08 4:55 
krinaljariwala wrote:
I need to read bitmap file which is basically scanned sheet like answers sheet


Do you want to read it as image or extract the text from it?
If latter is the case, this should work:

FileStream fs = File.OpenRead("Holiday.bmp");
           byte[] data = new byte[fs.Length];
           fs.Read(data, 0, data.Length);

           MemoryStream ms = new MemoryStream(data);
           Bitmap bmp = new Bitmap(ms);

GeneralRe: Read from bmp file Pin
krinaljariwala8-Aug-08 5:05
krinaljariwala8-Aug-08 5:05 
GeneralRe: Read from bmp file Pin
SomeGuyThatIsMe8-Aug-08 5:48
SomeGuyThatIsMe8-Aug-08 5:48 
GeneralRe: Read from bmp file Pin
J4amieC8-Aug-08 5:49
J4amieC8-Aug-08 5:49 
Questionc# port forwarding Pin
VrIgHtEr8-Aug-08 4:06
VrIgHtEr8-Aug-08 4:06 
AnswerRe: c# port forwarding Pin
Harvey Saayman8-Aug-08 4:20
Harvey Saayman8-Aug-08 4:20 
GeneralRe: c# port forwarding Pin
VrIgHtEr8-Aug-08 11:12
VrIgHtEr8-Aug-08 11:12 
GeneralRe: c# port forwarding Pin
Harvey Saayman8-Aug-08 20:22
Harvey Saayman8-Aug-08 20:22 

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.