| View previous topic :: View next topic |
| Author |
Message |
Andy_Fletcher Contributor

Joined: 10 Jun 2003 Posts: 90 Location: Somerset, United Kingdom
|
Posted: Wed Feb 23, 2005 4:58 pm Post subject: MS Word Documents in VDS |
|
|
I would like to find out if anyone has come up with a solution for viewing word documents within a VDS Dialog.
I'm trying to create a preview window to view a word doc, which the user may then decide to go on and edit it in MS Word or simply close the dialog.
This also will help me to get information from the word.doc in the VDS Script.
Anyone had a go at this  |
|
| Back to top |
|
 |
jules Professional Member


Joined: 14 Sep 2001 Posts: 1043 Location: Cumbria, UK
|
Posted: Wed Feb 23, 2005 5:58 pm Post subject: |
|
|
Have you tried loading them into a browser window? _________________ The Tech Pro
www.tech-pro.net |
|
| Back to top |
|
 |
Andy_Fletcher Contributor

Joined: 10 Jun 2003 Posts: 90 Location: Somerset, United Kingdom
|
Posted: Wed Feb 23, 2005 7:10 pm Post subject: |
|
|
| jules wrote: | | Have you tried loading them into a browser window? |
Hi Jules, Just tried that probably as you were responding to me. It works fine as far as I can see. Many thanks
Can you perform an @match function in this dialog
Kind regards
Andy Fletcher |
|
| Back to top |
|
 |
jules Professional Member


Joined: 14 Sep 2001 Posts: 1043 Location: Cumbria, UK
|
Posted: Thu Feb 24, 2005 8:40 am Post subject: |
|
|
| Andy_Fletcher wrote: | Can you perform an @match function in this dialog |
In a browser element? No, it's not a list. It's literally an instance of Internet Explorer, and I guess the only reason you can display .doc files in it is because Microsoft would like .doc files to be a competitor to .pdf files for publishing documents on the Internet. _________________ The Tech Pro
www.tech-pro.net |
|
| Back to top |
|
 |
Andy_Fletcher Contributor

Joined: 10 Jun 2003 Posts: 90 Location: Somerset, United Kingdom
|
Posted: Thu Feb 24, 2005 10:58 am Post subject: |
|
|
Thanks Jules, interesting point of view on Gates empire!
Anyway I tried to Add the Browser eliment to the Program I am putting together last night and got an odd error on excution of the exe.
Error was Error 14 @ line 57 (57 happens to be the end of the dialog Add section that the wizard create for you). Basically it won't let me put the Browser in at all. Strange becuase I have it implemented elsewhere in other programs perfectly fine.
Any Ideas
here is the line from my code + line above and below.
DIALOG ADD,BUTTON,CANCELAA,135,670,93,24,Cancel,,DEFAULT
DIALOG ADD,BROWSER,BROWSER1,311,21,626,150,http://www
.com,,OFFLINE
DIALOG SHOW
| jules wrote: | | Andy_Fletcher wrote: | Can you perform an @match function in this dialog |
In a browser element? No, it's not a list. It's literally an instance of Internet Explorer, and I guess the only reason you can display .doc files in it is because Microsoft would like .doc files to be a competitor to .pdf files for publishing documents on the Internet. |
|
|
| Back to top |
|
 |
jwfv Valued Contributor

Joined: 19 Mar 2002 Posts: 422 Location: Beaufort, SC
|
Posted: Thu Feb 24, 2005 11:55 am Post subject: |
|
|
Do you have the following lines at the beginning of your program?
| Code: | external vdsbrw50.dll
#define command, browser
#define function, browser |
Of course, make sure the vdsbrw50.dll is distributed with your program. _________________ Joe Floyd |
|
| Back to top |
|
 |
Andy_Fletcher Contributor

Joined: 10 Jun 2003 Posts: 90 Location: Somerset, United Kingdom
|
Posted: Thu Feb 24, 2005 12:13 pm Post subject: |
|
|
Ahhh ! I forgot about that, Thanks Jules
| jwfv wrote: | Do you have the following lines at the beginning of your program?
| Code: | external vdsbrw50.dll
#define command, browser
#define function, browser |
Of course, make sure the vdsbrw50.dll is distributed with your program. |
|
|
| Back to top |
|
 |
|