Search found 3 matches

by orange
Thu Aug 21, 2008 4:59 pm
Forum: Coding Questions
Topic: Calling DLL
Replies: 8
Views: 2004

to 'srod' thanks it is working fine :

XIncludeFile "DispHelper_Include.pb"
dhToggleExceptions(#True)
Define.l tojoin
tojoin = dhCreateObject("joining.Library")
word1$="first"
word2$="second"

If tojoin


Define retVal
dhGetValue("%T", @retval, tojoin, "joinwords(%T, %T)", @word1$, @word2 ...
by orange
Thu Aug 21, 2008 3:41 pm
Forum: Coding Questions
Topic: Calling DLL
Replies: 8
Views: 2004

idle wrote:a$ + b$ or is that to simple?
i am asking about how to pass the two variables to:
dhPutValue(...
dhCallMethod(...
dhGetValue(...
so to call the dll and get the answer from it


thanks
by orange
Thu Aug 21, 2008 1:04 pm
Forum: Coding Questions
Topic: Calling DLL
Replies: 8
Views: 2004

Calling DLL

hi
simple thinks first
i have a simple question about PureDispHelper which it's page in:
http://www.purebasic.fr/english/viewtopic.php?t=26744
and i am confused about the correct code.
i have an activex dll made by activestate perl development kit which it's function is to join two strings: it's ...