Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

GroupWise Object API Developer Issue(with Visual Studio IDE)

Status
Not open for further replies.

ktreddy

Technical User
Jan 7, 2002
1
IN
HI ,
Iam trying to develop a mail client for Novell Groupwise 6.0 .
Iam using microsoft visual studio IDE for development.using my sample
program Iam trying to Initialze the GWSession .Iam able to build the
project ,but I cannot list down the member variables of Groupwise objects
using scope resolution operator .

For Example in the below mentioned CreateSession() method after declaring
DIGWAccount like
DIGWAccount* pDIGWAccount;
Now If I try to listdown member functions and variables available with
DIGWAccount like pDIGWAccount-> ,Iam unable to get the member functtions
available with pointer variable.
I have included all necessary .h files.
In visual studio project settings do I need to do any extra settings to
access Novel Groupwise objects member variables& functions ??
Please help me out ..thanks in advance..

BOOL CreateSession()
{
DIGWAccount* pDIGWAccount;
VARIANT vUserId, vCmdLine, vPassword, vWhenToPrompt, vReserved;

//etc
pDIGWAccount->Release();
}

thanks,
regds,
kt

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top