Click here to Skip to main content
15,793,535 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to use windows service in another project? Pin
J4amieC29-Jun-09 5:21
J4amieC29-Jun-09 5:21 
GeneralRe: how to use windows service in another project? Pin
Vikram A Punathambekar29-Jun-09 6:35
Vikram A Punathambekar29-Jun-09 6:35 
GeneralRe: how to use windows service in another project? Pin
J4amieC29-Jun-09 6:46
J4amieC29-Jun-09 6:46 
AnswerRe: how to use windows service in another project? Pin
Vikram A Punathambekar29-Jun-09 4:07
Vikram A Punathambekar29-Jun-09 4:07 
Generalcan you please check this code? Pin
Narendra Reddy Vajrala29-Jun-09 4:14
Narendra Reddy Vajrala29-Jun-09 4:14 
GeneralRe: can you please check this code? Pin
J4amieC29-Jun-09 5:20
J4amieC29-Jun-09 5:20 
Questioncreating excel workbooks from a given template in a particular folder Pin
Krishna Aditya29-Jun-09 2:07
Krishna Aditya29-Jun-09 2:07 
AnswerRe: creating excel workbooks from a given template in a particular folder [modified] Pin
padmanabhan N29-Jun-09 2:31
padmanabhan N29-Jun-09 2:31 
Krishna Aditya wrote:
I have a template in location " c:\excel_temp\template1.xls". This template is a user defined template.

I have to use this template in a browsed location. ( if user selects "d:\temp\" folder, then I have to import the template in " c:\excel_temp" to "d:\temp" folder).


for this you can use:
string source = "c:\excel_temp\template1.xls";
string Destination = "d:\temp\Temp.xls";
if (File.Exists(Destination))
{
File.Copy(source, Destination, true);
}

//refer : Word automation (Part 1)[^]

Padmanabhan
My Articles:
Articles[^]
My latest Article:
Word Automation[^]

modified on Monday, June 29, 2009 7:37 AM

QuestionDatagridview Column Header ReadOnly Pin
rhtbhegade28-Jun-09 22:43
rhtbhegade28-Jun-09 22:43 
AnswerRe: Datagridview Column Header ReadOnly Pin
stancrm28-Jun-09 22:52
stancrm28-Jun-09 22:52 
GeneralRe: Datagridview Column Header ReadOnly Pin
rhtbhegade29-Jun-09 2:48
rhtbhegade29-Jun-09 2:48 
GeneralRe: Datagridview Column Header ReadOnly Pin
stancrm29-Jun-09 3:20
stancrm29-Jun-09 3:20 
GeneralRe: Datagridview Column Header ReadOnly Pin
rhtbhegade29-Jun-09 3:56
rhtbhegade29-Jun-09 3:56 
AnswerRe: Datagridview Column Header ReadOnly Pin
padmanabhan N28-Jun-09 23:09
padmanabhan N28-Jun-09 23:09 
QuestionRe: Datagridview Column Header ReadOnly Pin
KIDYA29-Jun-09 2:40
KIDYA29-Jun-09 2:40 
AnswerRe: Datagridview Column Header ReadOnly Pin
padmanabhan N29-Jun-09 3:04
padmanabhan N29-Jun-09 3:04 
QuestionRecive data from sensor circuit Pin
sebogawa28-Jun-09 22:38
sebogawa28-Jun-09 22:38 
AnswerRe: Recive data from sensor circuit Pin
Christian Graus28-Jun-09 22:48
protectorChristian Graus28-Jun-09 22:48 
AnswerRe: Recive data from sensor circuit Pin
DaveyM6928-Jun-09 23:10
professionalDaveyM6928-Jun-09 23:10 
AnswerRe: Recive data from sensor circuit Pin
OriginalGriff28-Jun-09 23:23
mvaOriginalGriff28-Jun-09 23:23 
GeneralRe: Recive data from sensor circuit Pin
sebogawa28-Jun-09 23:27
sebogawa28-Jun-09 23:27 
QuestionFormat a float value in sql query Pin
arun_pk28-Jun-09 22:14
arun_pk28-Jun-09 22:14 
AnswerRe: Format a float value in sql query Pin
Christian Graus28-Jun-09 22:18
protectorChristian Graus28-Jun-09 22:18 
AnswerRe: Format a float value in sql query Pin
OriginalGriff28-Jun-09 22:20
mvaOriginalGriff28-Jun-09 22:20 
AnswerRe: Format a float value in sql query Pin
PIEBALDconsult29-Jun-09 6:33
professionalPIEBALDconsult29-Jun-09 6:33 

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.