Ciao ragazzi,
Qualcuno mi sa dire perchè non riesco a far chiamare con il mio modem?
Dovrebbe essere un utilità che eviti di fare il numero di telefono...
Private Sub cmdDial_Click()
If Tel.Text = "" Then
MsgBox "Error!!!"
Exit Sub
End If
Com1.CommPort = 3
Com1.Settings = "9600,N,8,1"
Com1.PortOpen = True
Com1.Output = "ATDT" & Tel.Text & vbCr
MsgBox "Dialing " & Tel.Text & vbCrLf & "Pick up the phone...", vbOKOnly, "Dial-A-Phone"
Com1.PortOpen = False
End Sub
Aiuto!![]()