![]() |
|
|
|
If you are having a problem creating a link to a document using the Application button within the Vision guideline. Just make sure of one important rule that the file and folder path doesn't include any spaces.
For
example:
This file must
also reside in a folder that can be accessed from every
computer in the surgery. Therefore it is best to put it on a
shared drive like the O: or P: or G: or H: etc... and make
sure the folder(s) name has no spaces either. My
folder will be called "GuidelineDocs" which I will put
directly on the O: drive. The first thing I need to do is tell it where Microsoft Word is located, know as WINWORD.exe This is
normally C:\Program Files\Microsoft Office\Office10 (for
2000) Office11 (for 2003) Office12 (for 2007) in this folder
you will find WINWORD.exe Now scroll to the end of the line and type your folder path, so that the whole command line reads: C:\Program
Files\Microsoft Office\Office10\WINWORD.exe O:\GuidelineDocs\BradleysDocument.doc Type a description for your document (which can be as long as you like) remove the tick if you want a button or leave it to display an icon and click OK That's it. Creating a Hyperlink to a document in a guidelineAlternatively, you can create a hyperlink in a Vision Guideline TEXT file (located on the toolbar, when in Maintain mode) directly to the document. You can see examples of this in the QOF guidelines. Open any guideline and click the References header to expand the contents, here you will see a hyperlink to a MS Word and PDF document. Put the guideline into Maintain mode and double click the line to open the text file, so that you can see how it was written. It must include all these tags: (which are those enclosed in < >) <HTML><HEAD><TITLE>...type a title name
here...</TITLE></HEAD>
</BODY> </HTML>
Each tag must have a start and finish i.e. <BODY> is the start and </BODY> is the finish. You may also include <H1> or <H2> or <H3> etc... as this just refers to the style heading The main important part is what is written after: < A HREF=" ...type the path of the document here, between the quotes "> ...type the name you want to appear on the guideline here</A> Therefore in the first example my complete hyperlink would be written as: <HTML><HEAD><TITLE>Bradleys Documents</TITLE></HEAD> <A HREF="O:\GuidelineDocs\BradleysDocument.doc">Bradley's Document</A> </H2> The great advantage about using a hyperlink like this, is you just have to point it to the document you want to open. No application path is required and you don't have to worry about spaces. If I wanted to add more documents I would simply include additional <A HREF " "></A> lines, as shown below: <HTML><HEAD><TITLE>Bradleys Documents</TITLE></HEAD> <A HREF="O:\GuidelineDocs\BradleysDocument.doc">Bradley's Document</A> <BR> <A HREF="O:\GuidelineDocs\Another Document.doc">Another Document by Bradley</A></BR> <P> <A HREF="O:\Download\Guidelines\My Guideline Document.doc">All about Guidelines</A></P> </H2> To create a new line for each document you may use either <BR> which is a Single Line Break or <P> which is a paragraph. Don't forget to close the tag as well using either </BR> or </P> as shown in the example above. |