Re: Is there an utility.wlib_AutoDial replacement?
- From: "Stuart McCall" <smccall@xxxxxxxxxxxxxxx>
- Date: Wed, 14 Nov 2007 22:14:45 -0000
"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...
.
- Follow-Ups:
- Re: Is there an utility.wlib_AutoDial replacement?
- From: Stuart McCall
- Re: Is there an utility.wlib_AutoDial replacement?
- Prev by Date: Re: excel cell value
- Next by Date: Re: ISAM error when trying to create tablelink
- Previous by thread: Re: excel cell value
- Next by thread: Re: Is there an utility.wlib_AutoDial replacement?
- Index(es):
Relevant Pages
|