Вниз
Скачать: 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.01 c
3-18739
anod
2002-01-10 13:16
2002.02.07
Хм... Фильтр


1-18790
User_OKA
2002-01-23 14:57
2002.02.07
VarArrayCreate


3-18716
dim
2002-01-10 10:16
2002.02.07
Declare variable N integer;


6-18929
Aleksey2001
2001-11-16 09:17
2002.02.07
Интересует работа в delphi с сетями


1-18866
Smok_er
2002-01-22 04:49
2002.02.07
Как вызвать процедуру после полного отображения главной формы?




   Наверх