BorlandTalk.com Forum Index BorlandTalk.com
Borland discussion newsgroups
 
Archives   FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Wordautomations and *.dot-files

 
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> Delphi OLE Automation
View previous topic :: View next topic  
Author Message
Thomas Pfister
Guest





PostPosted: Sat Jan 15, 2005 11:03 pm    Post subject: Wordautomations and *.dot-files Reply with quote



Hello,

how can I define the correct *.dot-file from a folder (not in the
default-dot-folder)
before I start the word-session with an empty doc (based on the dot-file)
and use the document

thanks for any hint

:-) thomas


Back to top
Mario Porcher
Guest





PostPosted: Thu Jan 20, 2005 12:43 am    Post subject: Re: Wordautomations and *.dot-files Reply with quote



/////////
public
// Word variablen
typewd:olevariant;
noreset:olevariant;
Template:olevariant;
NewTemplate:olevariant;
visible:olevariant;
documenttyp:olevariant;
ItemIndex:OleVariant;
wdFormLetters:olevariant;
ConfirmConversions:olevariant;
Start:olevariant;
end_:olevariant;
Name:widestring;
Format:olevariant;
ReadOnly:olevariant;
LinkToSource:olevariant;
AddToRecentFiles:olevariant;
PasswordDocument:olevariant;
PasswordTemplate:olevariant;
WritePasswordDocument:olevariant;
WritePasswordTemplate:olevariant;
Revert:olevariant;
Connection:olevariant;
SQLStatement:olevariant;
SQLStatement1:olevariant;
LockComments:olevariant;
password:olevariant;
ReadOnlyRecommended:olevariant;
EmbedTrueTypeFonts:olevariant;
SaveNativePictureFormat:olevariant;
SaveFormsData:olevariant;
SaveAsAOCELetter:olevariant;
barid:olevariant;
FileFormat:olevariant;
WritePassword:olevariant;
DocumentType:olevariant;
encoding:olevariant;
test:range;
messageoff:integer;
filename:olevariant;
Unit_:olevariant;
Count:olevariant;
Extend:olevariant;
namex:olevariant;
what:olevariant;
wich:olevariant;
savechanges:olevariant;
originalformat:olevariant;
routedocument:olevariant;
openexclusive:olevariant;
subtype:olevariant;
insertlinebreaks:olevariant;
allowsubstitutions:olevariant;
lineending:olevariant;
addbidimarks:olevariant;
range:olevariant;
link:olevariant;
attachement:olevariant;
was:olevariant;
welche:olevariant;
zahl:olevariant;
bookmarkname:olevariant;
//// Comandobar
HSItem : OleVariant;
// MyMakro : _VBComponent;
BarName : Variant;
BarPosition: Variant;
MenuBar : Variant;
Temp : Variant;
//MyMakro : _VBComponent;
//MyForm : _VBComponent;
// cbAnzahl,
tbAnzahl,i : integer;
createTB : Boolean;
HSBar: CommandBar;


/////////////-> Start Word with your dot <-
WordApplication1.Connect;
wordApplication1.Visible:= true;
///// ------------------set path ( wordmenue -> extras/options/saveoptions
wordapplication1.Options.Set_DefaultFilePath (2,txtdir);
wordapplication1.Options.Set_DefaultFilePath (0,vorlpath1);
wordapplication1.Options.Set_DefaultFilePath (7,HSDIR+'textdaten');
////--------------------
wordapplication1.Options.SaveInterval:= 0;
wordapplication1.Options.AllowFastSave:= False;
wordapplication1.Options.BackgroundSave:= True;
wordapplication1.Options.CreateBackup:= False;
wordapplication1.Options.SavePropertiesPrompt:= False;
wordapplication1.Options.SaveNormalPrompt:= False;
wordapplication1.Options.OptimizeForWord97byDefault:= False;
--------
NewTemplate:=false;
DocumentType:=0;
--------- your dot ------
template:= 'c:aaaaa.dot'
----------
wordapplication1.Documents.add
(template,NewTemplate,DocumentType,visible);


"Thomas Pfister" <thomas (AT) spam-mail (DOT) de> schrieb im Newsbeitrag
news:41e9a024$1 (AT) newsgroups (DOT) borland.com...
Quote:
Hello,

how can I define the correct *.dot-file from a folder (not in the
default-dot-folder)
before I start the word-session with an empty doc (based on the dot-file)
and use the document

thanks for any hint

:-) thomas





Back to top
Thomas Pfister
Guest





PostPosted: Thu Jan 20, 2005 6:01 am    Post subject: Re: Wordautomations and *.dot-files Reply with quote



Mario,

thanks for the code; I'll try it today

Gruss


:-) thomas


"Mario Porcher" <m.porcher (AT) web (DOT) de> schrieb im Newsbeitrag
news:41eefc55 (AT) newsgroups (DOT) borland.com...
Quote:
/////////
public
// Word variablen
typewd:olevariant;
noreset:olevariant;
Template:olevariant;
NewTemplate:olevariant;
visible:olevariant;
documenttyp:olevariant;
ItemIndex:OleVariant;
wdFormLetters:olevariant;
ConfirmConversions:olevariant;
Start:olevariant;
end_:olevariant;
Name:widestring;
Format:olevariant;
ReadOnly:olevariant;
LinkToSource:olevariant;
AddToRecentFiles:olevariant;
PasswordDocument:olevariant;
PasswordTemplate:olevariant;
WritePasswordDocument:olevariant;
WritePasswordTemplate:olevariant;
Revert:olevariant;
Connection:olevariant;
SQLStatement:olevariant;
SQLStatement1:olevariant;
LockComments:olevariant;
password:olevariant;
ReadOnlyRecommended:olevariant;
EmbedTrueTypeFonts:olevariant;
SaveNativePictureFormat:olevariant;
SaveFormsData:olevariant;
SaveAsAOCELetter:olevariant;
barid:olevariant;
FileFormat:olevariant;
WritePassword:olevariant;
DocumentType:olevariant;
encoding:olevariant;
test:range;
messageoff:integer;
filename:olevariant;
Unit_:olevariant;
Count:olevariant;
Extend:olevariant;
namex:olevariant;
what:olevariant;
wich:olevariant;
savechanges:olevariant;
originalformat:olevariant;
routedocument:olevariant;
openexclusive:olevariant;
subtype:olevariant;
insertlinebreaks:olevariant;
allowsubstitutions:olevariant;
lineending:olevariant;
addbidimarks:olevariant;
range:olevariant;
link:olevariant;
attachement:olevariant;
was:olevariant;
welche:olevariant;
zahl:olevariant;
bookmarkname:olevariant;
//// Comandobar
HSItem : OleVariant;
// MyMakro : _VBComponent;
BarName : Variant;
BarPosition: Variant;
MenuBar : Variant;
Temp : Variant;
//MyMakro : _VBComponent;
//MyForm : _VBComponent;
// cbAnzahl,
tbAnzahl,i : integer;
createTB : Boolean;
HSBar: CommandBar;


/////////////-> Start Word with your dot <-
WordApplication1.Connect;
wordApplication1.Visible:= true;
///// ------------------set path ( wordmenue -> extras/options/saveoptions
wordapplication1.Options.Set_DefaultFilePath (2,txtdir);
wordapplication1.Options.Set_DefaultFilePath (0,vorlpath1);
wordapplication1.Options.Set_DefaultFilePath
(7,HSDIR+'textdaten');
////--------------------
wordapplication1.Options.SaveInterval:= 0;
wordapplication1.Options.AllowFastSave:= False;
wordapplication1.Options.BackgroundSave:= True;
wordapplication1.Options.CreateBackup:= False;
wordapplication1.Options.SavePropertiesPrompt:= False;
wordapplication1.Options.SaveNormalPrompt:= False;
wordapplication1.Options.OptimizeForWord97byDefault:= False;
--------
NewTemplate:=false;
DocumentType:=0;
--------- your dot ------
template:= 'c:aaaaa.dot'
----------
wordapplication1.Documents.add
(template,NewTemplate,DocumentType,visible);


"Thomas Pfister" <thomas (AT) spam-mail (DOT) de> schrieb im Newsbeitrag
news:41e9a024$1 (AT) newsgroups (DOT) borland.com...
Hello,

how can I define the correct *.dot-file from a folder (not in the
default-dot-folder)
before I start the word-session with an empty doc (based on the
dot-file)
and use the document

thanks for any hint

:-) thomas







Back to top
Display posts from previous:   
Post new topic   Reply to topic    BorlandTalk.com Forum Index -> Delphi OLE Automation All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2006 phpBB Group
SEO toolkit © 2004-2006 webmedic.