Re: Is there an utility.wlib_AutoDial replacement?

Tech-Archive recommends: Fix windows errors by optimizing your registry



"Al" <Al@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:76E51032-61AD-4142-A344-7AA5EC5A2F35@xxxxxxxxxxxxxxxx
This utility lives inside utility.mda which is an old MS97 add-in.

Is there a replacement for this so we don't have to make VBA Object
library
references to Utility.MDA?

I have an application that crashes more often than not because of this
Utility.

Thanks for you replies!!

Try this. Place the following at the top of a module (underneath the option
declarations and before any procedure code) :

Declare Function TAPI_Make_Call Lib _
"tapi32.dll" Alias "tapiRequestMakeCall" _
(ByVal stNumber As String, _
ByVal stDummy1 As String, _
ByVal stDummy2 As String, _
ByVal stDummy3 As String) As Long


Then use it like this:

TAPI_Make_Call "123456789", "", "", ""

It's been quite a while since I used this, I have no modem on this machine,
and I'm unable to remember whether it requires a formatted number or not.
Play with it till it works...



.



Relevant Pages