Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - henrygev

Pages: [1]
1
General Board / Re: Microsoft .NET Remote Debug
« on: February 17, 2006, 04:08:07 pm »
Hi All

So there is some fundamental issue that makes You to not support C++ not-managed debugging?

Or You do not see the need for that.

I do not know how in the rest of the World, but here in Silicon Valley, yet there is lot of not managed C++ code to deal with. So please do not leave us “unarmed” if possible.

2
I am not sure but after following changes it started working (changes)

in my code

theElement.SetName((LPVARIANT)COleVariant
("string"));

in Element.h file

void SetName(VARIANT *  propVal)
{
   SetProperty(0x1, VT_VARIANT, propVal);
}

3
Automation Interface, Add-Ins and Tools / C++ theElement.SetNotes problem
« on: January 30, 2006, 01:24:21 pm »
Hi

I am interfacing the EA from a C++ application.

Currently theElement.SetNotes(COleVariant("STRING"));

Will throw
Unhandled exception at 0x7c2e7c97 (mfc71d.dll) in EA2ReqProSynch.exe: 0xC0000005: Access violation reading location 0xcccc0008.

inside
COleDispatchDriver::InvokeHelperV
{
...
case VT_VARIANT:

*pArg = *va_arg(argList, VARIANT*);<<<
break;
...
}

any ideas?

Thanks ahead
Henri

P.S.

void SetNotes(VARIANT propVal)
{
 SetProperty(0xd, VT_VARIANT, propVal);
}

4
Seems like the Connectors are taking me to the external Requirements.

So my EA and ReqPro synchronizer is one obstacle less closer to release

5
In order to find the Requirements realized by my Use Cases I tried 2 Element functions GetRequirements() and GetRelationSet(long).

GetRequirements will return only internal Relations – responsibilities

GetRelationSet will crush with DISP_E_TYPEMISMATCH meaning it doesn’t like the type of the argument.

There is an example in the help – but I do not see it actually accessing the Requirements as it promises.

Any body any help?

Next thing I am going to enumerate all connections and try to reach the Requirements from there.

Pages: [1]