Вниз
Скачать: CL | DM;

Запуск word   Найти похожие ветки 

 
jenbond ©   (2002-01-24 10:08) [0]

Подскажите как попроще реализовать запуск Word и сразуже предачу в него текста с активной формы!


 
MetallAdm ©   (2002-01-24 11:18) [1]

А как енто проше ?!!

implementation

uses OleAuto;
var
V : Variant ;
..
V := 0; // at some point just to initialise

if V = 0 then
begin
V := CreateOLEObject("Word.Application");
V.WordBasic.AppShow;
end;

V.WordBasic.Fileopen("Your Word Doc name");
V.WordBasic.EditBookmark("Title",0,0,0,1);
V.WordBasic.Insert(Title);
....

Можно Так а можно и так ...


var
Word: Variant;
begin
Word := CreateOleObject("Word.Basic");
with Word do
begin {Pure WordBASIC commands follow...}
FileNew("Normal");
Insert("This is the first line"#13);
Insert("This is the second line"#13);
FileSaveAs("c:\temp\test.txt", 3);
end;
end;






Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.44 MB
Время: 0.008 c
3-18699
Jan
2002-01-09 14:40
2002.02.07
Файл *.qrp


1-18884
Лана Розанова
2002-01-23 16:14
2002.02.07
RichEdit


1-18854
Dmitry S. Negriy
2002-01-22 16:07
2002.02.07
Прикол: TMemoryStream.Memory^ = (no value), хотя остальное видит


6-18946
ReY
2001-11-13 11:17
2002.02.07
Как программно расшарить диск.... и обратно.


1-18869
Ramid
2002-01-21 17:10
2002.02.07
Какое событие проиходит когда кликаешь (передвигаешь) ScrollBar на TStringGrid?




   Наверх