Bar_NZ
Registered User.
- Local time
- Tomorrow, 06:05
- Joined
- Aug 14, 2012
- Messages
- 48
Hello, can someone please help me, I have the code shown below and I'm having an issue, could you please help me?
What I have is two phone number fields MobileNum and InternalNum. On click I would like to look at the InternalNum if it has a value, then copy it to clipboard and open the Jabba, if it is empty, then move to the MobileNum field and copy the value into the clipboard and open Jabba.
Then it opens our Jabba phone app, so I can paste the number and hit enter to dial it.
Code:
Private Sub Command21_Click()
If InternalNum.Value = "" Then
Me.MobileNum.SetFocus
DoCmd.RunCommand acCmdCopy
Else
Me.InternalNum.SetFocus
DoCmd.RunCommand acCmdCopy
Call Shell("""C:\Program Files (x86)\Cisco Systems\Cisco Jabber\CiscoJabber.exe""")
End If
End Sub
Any help would be greatly appreciated, thanks.
What I have is two phone number fields MobileNum and InternalNum. On click I would like to look at the InternalNum if it has a value, then copy it to clipboard and open the Jabba, if it is empty, then move to the MobileNum field and copy the value into the clipboard and open Jabba.
Then it opens our Jabba phone app, so I can paste the number and hit enter to dial it.
Code:
Private Sub Command21_Click()
If InternalNum.Value = "" Then
Me.MobileNum.SetFocus
DoCmd.RunCommand acCmdCopy
Else
Me.InternalNum.SetFocus
DoCmd.RunCommand acCmdCopy
Call Shell("""C:\Program Files (x86)\Cisco Systems\Cisco Jabber\CiscoJabber.exe""")
End If
End Sub
Any help would be greatly appreciated, thanks.