The Matrix
February 21st, 2000, 09:34 PM
dial a phone number with your modem like the windows program "phone dialer"
|
Click to See Complete Forum and Search --> : Modem The Matrix February 21st, 2000, 09:34 PM dial a phone number with your modem like the windows program "phone dialer" Cakkie February 22nd, 2000, 01:22 AM Add to mudule public declare Function tapiRequestMakeCall Lib "TAPI32.DLL"(byval Dest as string, byval AppName as string byval CalledParty as string, byval Comment as string) as long public sub MakeCall(strNumber as string, strName as string) dim retval as long retval = tapiRequestMakeCall(Trim$(strNumber), App.Title, Trim$(strName),"") If retval = 0 then ' succeeded else ' failed end if end sub Tom Cannaerts slisse@planetinternet.be The best way to escape a problem, is to solve it. codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |