ralf wingert
13th July 2004, 15:25
Hi,

I want to use the function appl_start in my script.
After compiling I get the message "Unresolved reference to function appl_start".

What I have to declare in my script (and how)?

Ralf

hklett
13th July 2004, 15:30
#pragma used dll "ottdllbw"

ralf wingert
13th July 2004, 16:44
hklett, thanks for your quick reply.

I checked your suggestion, but the message is still the same.
I want to use the function to start winword. In a second step I want to open the dialog box file new.
Here is a section of my script. The variable ret is of type long.

ret = appl_start("winword","","","","")

In the declaration section I tried both
#pragma used dll "ottdllbw"
and
#pragma used dll ottdllbw

What's going wrong ?

mark_h
13th July 2004, 18:12
The actual function is app_start - not appl_start.

Mark

ralf wingert
14th July 2004, 10:48
Thanks, that's it.

Ralf