Click here to Skip to main content
15,911,789 members
Home / Discussions / C#
   

C#

 
GeneralRe: Help Needed!! Problem in starting an exe file Pin
ArchaBhandare8-Feb-07 22:27
ArchaBhandare8-Feb-07 22:27 
GeneralRe: Help Needed!! Problem in starting an exe file Pin
coolestCoder8-Feb-07 22:22
coolestCoder8-Feb-07 22:22 
QuestionUpdate Datagrid view for 2 tables Pin
idreesbadshah8-Feb-07 19:49
idreesbadshah8-Feb-07 19:49 
QuestionPLEASE HELP! - How do I change IE settings from my application? Pin
peshkunta8-Feb-07 19:47
peshkunta8-Feb-07 19:47 
AnswerRe: PLEASE HELP! - How do I change IE settings from my application? Pin
Christian Graus8-Feb-07 20:05
protectorChristian Graus8-Feb-07 20:05 
AnswerRe: PLEASE HELP! - How do I change IE settings from my application? Pin
Sandeep Akhare8-Feb-07 20:36
Sandeep Akhare8-Feb-07 20:36 
AnswerRe: PLEASE HELP! - How do I change IE settings from my application? Pin
Pete O'Hanlon8-Feb-07 22:42
mvePete O'Hanlon8-Feb-07 22:42 
GeneralRe: PLEASE HELP! - How do I change IE settings from my application? Pin
peshkunta9-Feb-07 3:29
peshkunta9-Feb-07 3:29 
GeneralRe: PLEASE HELP! - How do I change IE settings from my application? Pin
Andy *M*30-Apr-07 0:10
Andy *M*30-Apr-07 0:10 
QuestionMy porgram doesn't work in other computer Pin
kjhuut8-Feb-07 19:11
kjhuut8-Feb-07 19:11 
AnswerRe: My porgram doesn't work in other computer Pin
mav.northwind8-Feb-07 19:16
mav.northwind8-Feb-07 19:16 
AnswerRe: My porgram doesn't work in other computer Pin
peshkunta8-Feb-07 19:58
peshkunta8-Feb-07 19:58 
AnswerRe: My porgram doesn't work in other computer Pin
phantanagu8-Feb-07 22:48
phantanagu8-Feb-07 22:48 
QuestionLink button disappears when click on it. Pin
babutkchn8-Feb-07 18:04
babutkchn8-Feb-07 18:04 
AnswerRe: Link button disappears when click on it. Pin
gauthee8-Feb-07 19:29
gauthee8-Feb-07 19:29 
QuestionOpen Excel File Stored in Access Database Pin
Shaurya_Rastogi8-Feb-07 17:18
Shaurya_Rastogi8-Feb-07 17:18 
I need to open an Excel file that has been stored in the Access Database using the insert Object functionality of MS Access manually.

What i am aware of is that i cant just read the field containing the Excel File into a Byte Array and pass it to the Excel object in C#,as the file is wrapped in the OLE Wrapper used by Access while inserting the file in database.

I have tried locating the Header of Excel file from the byte array and read the file from there on but it is not working.

while (true)
{
if (0xE11AB1A1E011CFD0 == BitConverter.ToUInt64(byStream, i))
break;
i++;
}
output.Write(byStream, i, byStream.Length - i-1);

byStream is a byte array into which i have read the Excel file from Database.
I am locating the Excel file header in the byte stream and am writing the byte array to a file from that location.But on opening the written file it dosent work.
Similar approach had worked in case of Images but now in this case.

Can some one please tell me as to how i can open the Excel File.

Questionsprogress Pin
picasso28-Feb-07 17:12
picasso28-Feb-07 17:12 
AnswerRe: sprogress Pin
peshkunta8-Feb-07 20:04
peshkunta8-Feb-07 20:04 
GeneralRe: sprogress Pin
picasso29-Feb-07 16:04
picasso29-Feb-07 16:04 
Questionthe left/right key will affect the ComboBox field, cause ComboBox value changed , how could I solve this Pin
cchmark8-Feb-07 15:53
cchmark8-Feb-07 15:53 
AnswerRe: the left/right key will affect the ComboBox field, cause ComboBox value changed , how could I solve this Pin
Christian Graus8-Feb-07 16:41
protectorChristian Graus8-Feb-07 16:41 
GeneralRe: the left/right key will affect the ComboBox field, cause ComboBox value changed , how could I solve this Pin
cchmark8-Feb-07 18:14
cchmark8-Feb-07 18:14 
QuestionMulticast Delegate Pin
TheCatsPajamas8-Feb-07 15:48
TheCatsPajamas8-Feb-07 15:48 
AnswerRe: Multicast Delegate Pin
Luc Pattyn8-Feb-07 15:54
sitebuilderLuc Pattyn8-Feb-07 15:54 
GeneralRe: Multicast Delegate Pin
TheCatsPajamas8-Feb-07 17:59
TheCatsPajamas8-Feb-07 17:59 

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.