GroupWise 6.5

Rusty

Registered User.
Local time
Today, 15:42
Joined
Apr 15, 2004
Messages
207
Hello,

I have a form with a field called . When it's double-clicked it launches GroupWise 6.5 (using the code below).

Does anyone know how to code it so it will do this [B]and[/B] create a new e-mail message using the address in the [email] field?

Cheers,

Rusty
:D


[CODE]Private Sub Email_DblClick(Cancel As Integer)
On Error GoTo Err_Email_DblClick

Dim stAppName As String

stAppName = "C:\Novell\GroupWise\GrpWise.exe"
Call Shell(stAppName, 1)

Exit_Email_DblClick:
Exit Sub

Err_Email_DblClick:
MsgBox Err.Description
Resume Exit_Email_DblClick

End Sub
[/CODE]
 
Last edited:
I don't have any code samples but you can find some if you search the GroupWise area on the Novell site.
 

Users who are viewing this thread

Back
Top Bottom