| Installation and first use. | |||
|
I have a problem with Matriks Doc and Office XP.
Problem is solved with Matriks Doc version 3. Why are the import dialogbox and the document viewing windows shown behind the Financial/Attain Application? I've got a Windows 2000, XP and Office 2000/XP. Why do I get an error when creating Word/Excel documents? Why do I get a message saying "License date has expired"?
1. You could be running on the demo license. The demo license expires at a fixed date or after a 60 working days. You should purchase a retail license on order@matriks.com Why do I get a message saying "Financial license does not match Matriks Doc license" ? Why can't I open the Financials Main Menu after I've imported the Matriks Doc objects ?
Why do I get an ole automation error message when opening the document form ?
Why do I get a file error message when I try to save or edit a document ? Where's my document that I've just created, when I now click view or edit ?
Why do I get a "Document Nos..." error message when I try to create a new document ? Why do I get a document description error message when I try to create a new document ? Why can't I insert new fields when I make a new template ? When I use a new template the fieldnames are not replaced with any values ? I've got a Windows NT4. Why is the dialog box empty when I try to create a new document ?
|
|||
|
|||
|
How do I make a Document/Mail campaign to all my customers using Matriks Doc ? How about security, can I make sure it is not possible to delete a document ?
Why can I not choose Outlook in the list of Active Documents ?
Does Matriks Doc also work with AutoCAD ? |
|||
|
|||
|
Is it possible to extend templates with new custom fields from an existing template table ? Is it possible to make templates with reference to more than one table ? Is it possible to make templates with reference to new custom tables ? |
|||
|
|||
|
Used Functions. function NewOleDocument: Boolean Creates a new ole document in MD memory. function Load(const id: String): Boolean Loads a MD document object from path + filename into MD memory. function Save(const Id: String): Boolean Save MD document object to path + name from MD memory. function Import(const FileNamePath: String; ShowDialog: Boolean): Boolean Import some document file (word, excel, etc.) from a path + name into MD memory. ShowDialog=True shows a file dialog box. function Export(const FilePath: String; ShowDialog: Boolean): Boolean Export document to a path from MD memory. ShowDialog=True shows a file dialog box. function Show(ShowDesign: Boolean; ReplaceValues: Boolean; ViewOnly: Boolean): Boolean Show a document, previously loaded with into the MD memory with Import, Load or NewOleDocument function. ShowDesign=True shows template fields list. Requires populated internal field list. ReplaceValues=True replaces template fields with values. Requires populated internal field list ViewOnly=True forces view only mode. Changes are not saved. procedure Close Close (visually) currently open MD document. function Print: Boolean Print a MD document. function ReplaceAndPrint: Boolean Aggregate function optimised for instantiating templates and printing them. Requires fieldnames, fieldvalues and document in MD memory to be present. Currently this function is only used in some thirdparty solutions. procedure AddField(const Name: String; const Value: String) Add a fieldname and optionally a value to internal MD fieldname/value list. Used extensively in matriksdoclinks codeunit. procedure ClearFields Clears/Resets internal MD fieldname/value list function Importable(const FileNamePath: String): Integer Tests if a document at filepath + name can be imported. procedure Clear Clear MD component, reset all states, clear document memory. |
|||
property No: String Document number has to be set prior to most MD storage method invocations. property Description: String Document description has to be set prior to most MD storage method invocations. property User: String User creating/editing document has to be set prior to most MD storage method invocations. property State: Integer Internal MD document state: State = 1 MD is in a reset state (After clear) State = 2 MD has a document in internal memory (After Load, Import, NewOleDocument) State = 3 MD is currently showing a document (After Show) |