Click here to Skip to main content
15,887,596 members
Home / Discussions / C#
   

C#

 
QuestionWrite to Ms word document ??? Pin
TALHAKOSEN13-Oct-08 10:01
TALHAKOSEN13-Oct-08 10:01 
GeneralRe: Write to Ms word document ??? Pin
led mike13-Oct-08 10:10
led mike13-Oct-08 10:10 
AnswerRe: Write to Ms word document ??? Pin
#realJSOP13-Oct-08 10:53
mve#realJSOP13-Oct-08 10:53 
GeneralRe: Write to Ms word document ??? Pin
Pete O'Hanlon13-Oct-08 11:15
mvePete O'Hanlon13-Oct-08 11:15 
JokeRe: Write to Ms word document ??? Pin
Paul Conrad13-Oct-08 12:02
professionalPaul Conrad13-Oct-08 12:02 
AnswerRe: Write to Ms word document ??? Pin
Priya Prk13-Oct-08 12:11
Priya Prk13-Oct-08 12:11 
GeneralRe: Write to Ms word document ??? Pin
TALHAKOSEN13-Oct-08 20:16
TALHAKOSEN13-Oct-08 20:16 
GeneralSolution Pin
TALHAKOSEN14-Oct-08 0:51
TALHAKOSEN14-Oct-08 0:51 
I found the solution, maybe somebody need it...

to write as html on c# first take clipboard as html then use stringbuilder

Object m = System.Reflection.Missing.Value;
DataObject clipDO = new DataObject();
clipDO.SetData(DataFormats.Html, HtmlClipboardData(strHTML));
Clipboard.SetDataObject(clipDO, true); // Save to clipbaord

object typeHtml = (object)Word.WdPasteDataType.wdPasteHTML;
s.PasteSpecial(ref m, ref m, ref m, ref m, ref typeHtml, ref m, ref m);

http://www.codeproject.com/script/Membership/Profiles.aspx?mid=252028

knowledge is valuable when it is shared !!!)
and nobody has a right to make fun with anyone!!
thx all

thanks for everything i have...

GeneralRe: Solution Pin
nadinechemali19-Dec-10 21:52
nadinechemali19-Dec-10 21:52 
QuestionCOM Send Receive Pin
mehrdadc4813-Oct-08 8:54
mehrdadc4813-Oct-08 8:54 
AnswerRe: COM Send Receive Pin
Giorgi Dalakishvili13-Oct-08 9:21
mentorGiorgi Dalakishvili13-Oct-08 9:21 
QuestionData transfer between two computer over the internet Pin
Majid_grok13-Oct-08 8:36
Majid_grok13-Oct-08 8:36 
AnswerRe: Data transfer between two computer over the internet Pin
Wes Aday13-Oct-08 8:40
professionalWes Aday13-Oct-08 8:40 
GeneralRe: Data transfer between two computer over the internet Pin
Jammer13-Oct-08 8:55
Jammer13-Oct-08 8:55 
GeneralRe: Data transfer between two computer over the internet Pin
Wes Aday13-Oct-08 8:59
professionalWes Aday13-Oct-08 8:59 
GeneralRe: Data transfer between two computer over the internet Pin
Wendelius13-Oct-08 9:11
mentorWendelius13-Oct-08 9:11 
AnswerRe: Data transfer between two computer over the internet Pin
Pedram Behroozi13-Oct-08 11:06
Pedram Behroozi13-Oct-08 11:06 
AnswerRe: Data transfer between two computer over the internet Pin
Ashfield13-Oct-08 22:56
Ashfield13-Oct-08 22:56 
QuestionThe Switch Statement Pin
Jammer13-Oct-08 8:15
Jammer13-Oct-08 8:15 
AnswerRe: The Switch Statement Pin
Anthony Mushrow13-Oct-08 8:22
professionalAnthony Mushrow13-Oct-08 8:22 
GeneralRe: The Switch Statement Pin
Jammer13-Oct-08 8:28
Jammer13-Oct-08 8:28 
AnswerRe: The Switch Statement Pin
Pete O'Hanlon13-Oct-08 8:31
mvePete O'Hanlon13-Oct-08 8:31 
GeneralRe: The Switch Statement Pin
Jammer13-Oct-08 8:44
Jammer13-Oct-08 8:44 
GeneralRe: The Switch Statement Pin
Jakob Olsen14-Oct-08 1:05
Jakob Olsen14-Oct-08 1:05 
AnswerRe: The Switch Statement Pin
Mark Salsbery13-Oct-08 8:34
Mark Salsbery13-Oct-08 8:34 

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.