If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Delphi, C etc > Error when creating GroupWise email message

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-13-03, 16:10
TornadoV TornadoV is offline
Registered User
 
Join Date: Jan 2003
Location: NJ
Posts: 4
Question Error when creating GroupWise email message

Concider the following code:

dim objGroupWise as object
dim objAccount as object
-----------------------------------

Set objGroupWise = CreateObject("NovellGroupWareSession")
Set objAccount = objGroupWise.Login(g_strUserName)

When Set ojbAccount line is being executed I get a runtime error.

Immediate window:
?objGroupWise
GroupWise Object API

?err.Number
-2147352567

'GroupWare Type Library' is checked in project references.

Any idea why?
Reply With Quote
  #2 (permalink)  
Old 01-15-03, 06:56
fhunth fhunth is offline
Registered User
 
Join Date: Oct 2002
Location: Argentina
Posts: 72
I do not know about the NovellGroupWareSession object but try this:



Set objGroupWise = CreateObject("NovellGroupWareSession")
Call objGroupWise.Login(g_strUserName)

And then handle the Account that must be part of the objGroupWise object


Good luck
Reply With Quote
  #3 (permalink)  
Old 01-28-03, 10:55
TornadoV TornadoV is offline
Registered User
 
Join Date: Jan 2003
Location: NJ
Posts: 4
Thank you

These morons updated our GroupWise without telling us. Everything is working now. I will use SMTP from now on. Thanks for your suggestion.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On