Click here to Skip to main content
15,881,248 members
Home / Discussions / C#
   

C#

 
AnswerRe: Region Pin
Giorgi Dalakishvili4-Sep-07 23:14
mentorGiorgi Dalakishvili4-Sep-07 23:14 
AnswerRe: Region Pin
hotcodeking5-Sep-07 1:48
hotcodeking5-Sep-07 1:48 
Questionexporting data to excel Pin
lourensG4-Sep-07 23:01
lourensG4-Sep-07 23:01 
AnswerRe: exporting data to excel Pin
Giorgi Dalakishvili4-Sep-07 23:16
mentorGiorgi Dalakishvili4-Sep-07 23:16 
GeneralRe: exporting data to excel Pin
lourensG4-Sep-07 23:42
lourensG4-Sep-07 23:42 
GeneralRe: exporting data to excel Pin
Giorgi Dalakishvili4-Sep-07 23:51
mentorGiorgi Dalakishvili4-Sep-07 23:51 
GeneralRe: exporting data to excel Pin
lourensG5-Sep-07 0:04
lourensG5-Sep-07 0:04 
GeneralRe: exporting data to excel Pin
Giorgi Dalakishvili5-Sep-07 0:13
mentorGiorgi Dalakishvili5-Sep-07 0:13 
You can use that article to generate xml file and then convert it to xls using this piece of code:
 <br />
private void savetoexcelformat(string currentpath, string pathtosave)<br />
{<br />
object missing = System.Reflection.Missing.Value;<br />
<br />
Excel.Application app = new Excel.Application();<br />
app.Visible = false;<br />
<br />
app.Workbooks.OpenXML(currentpath, missing,missing).SaveAs(pathtosave, Excel.XlFileFormat.xlWorkbookNormal, missing, missing,<br />
missing, missing, Excel.XlSaveAsAccessMode.xlNoChange, missing, missing, missing, missing, missing);<br />
app.Quit();<br />
<br />
}


#region signature
my articles
#endregion

GeneralRe: exporting data to excel Pin
lourensG5-Sep-07 0:16
lourensG5-Sep-07 0:16 
QuestiontxtBox_Leave Pin
Assaf824-Sep-07 22:56
Assaf824-Sep-07 22:56 
AnswerRe: txtBox_Leave Pin
I.explore.code5-Sep-07 0:05
I.explore.code5-Sep-07 0:05 
Questionhow to assign a Shortcut key for an Application ONLY in C#? Pin
pdoy07084-Sep-07 22:21
pdoy07084-Sep-07 22:21 
AnswerRe: Shortcut key for an Application ONLY? Pin
Giorgi Dalakishvili4-Sep-07 22:28
mentorGiorgi Dalakishvili4-Sep-07 22:28 
GeneralRe: Shortcut key for an Application ONLY? Pin
pdoy07084-Sep-07 22:34
pdoy07084-Sep-07 22:34 
GeneralRe: Shortcut key for an Application ONLY? Pin
Giorgi Dalakishvili4-Sep-07 22:44
mentorGiorgi Dalakishvili4-Sep-07 22:44 
GeneralRe: Shortcut key for an Application ONLY? Pin
pdoy07084-Sep-07 23:20
pdoy07084-Sep-07 23:20 
GeneralRe: Shortcut key for an Application ONLY? Pin
Giorgi Dalakishvili4-Sep-07 23:36
mentorGiorgi Dalakishvili4-Sep-07 23:36 
GeneralRe: Shortcut key for an Application ONLY? Pin
pdoy07084-Sep-07 22:59
pdoy07084-Sep-07 22:59 
GeneralRe: Shortcut key for an Application ONLY? Pin
Giorgi Dalakishvili4-Sep-07 23:11
mentorGiorgi Dalakishvili4-Sep-07 23:11 
GeneralRe: Shortcut key for an Application ONLY? Pin
pdoy07084-Sep-07 23:53
pdoy07084-Sep-07 23:53 
GeneralRe: Shortcut key for an Application ONLY? Pin
Giorgi Dalakishvili4-Sep-07 23:59
mentorGiorgi Dalakishvili4-Sep-07 23:59 
GeneralRe: Shortcut key for an Application ONLY? Pin
pdoy07085-Sep-07 0:26
pdoy07085-Sep-07 0:26 
GeneralRe: Shortcut key for an Application ONLY? Pin
Giorgi Dalakishvili5-Sep-07 0:28
mentorGiorgi Dalakishvili5-Sep-07 0:28 
GeneralRe: Shortcut key for an Application ONLY? Pin
pdoy07085-Sep-07 0:24
pdoy07085-Sep-07 0:24 
AnswerRe: how to assign a Shortcut key for an Application ONLY in C#? Pin
Luc Pattyn5-Sep-07 0:09
sitebuilderLuc Pattyn5-Sep-07 0:09 

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.