Click here to Skip to main content
16,007,760 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionWhat is your %PATH% after installing .NET? Pin
Todd Smith13-May-02 18:42
Todd Smith13-May-02 18:42 
AnswerRe: What is your %PATH% after installing .NET? Pin
James T. Johnson13-May-02 18:41
James T. Johnson13-May-02 18:41 
General.NET via C++ COM Pin
rkiesler13-May-02 8:44
rkiesler13-May-02 8:44 
GeneralRe: .NET via C++ COM Pin
Rama Krishna Vavilala16-May-02 14:49
Rama Krishna Vavilala16-May-02 14:49 
GeneralRe: .NET via C++ COM Pin
rkiesler17-May-02 3:19
rkiesler17-May-02 3:19 
GeneralRe: .NET via C++ COM Pin
Rama Krishna Vavilala17-May-02 3:46
Rama Krishna Vavilala17-May-02 3:46 
GeneralRe: .NET via C++ COM Pin
rkiesler17-May-02 3:55
rkiesler17-May-02 3:55 
GeneralRe: .NET via C++ COM Pin
Rama Krishna Vavilala17-May-02 4:02
Rama Krishna Vavilala17-May-02 4:02 
This is plain wrong. This is not the way you allocate a SAFEARRAY.

For creating 1 dimensional array use the following code

SAFEARRAY FAR* psaArgs =SafeArrayCreateVector(VT_VARIANT, 0, size);

Next call SafeArrayLockData

VARIANT* rgVtVals = NULL;
SafeArrayLockData(psaArgs, (VARIANT**)&rgVtVals);

Then start filling rgVtVals

Finally unlock
SafeArrayUnlockData(psaArgs);
GeneralRe: .NET via C++ COM Pin
rkiesler17-May-02 6:01
rkiesler17-May-02 6:01 
GeneralRe: .NET via C++ COM Pin
Rama Krishna Vavilala17-May-02 6:10
Rama Krishna Vavilala17-May-02 6:10 
GeneralUser control in DLL problem Pin
Todd Smith13-May-02 7:27
Todd Smith13-May-02 7:27 
GeneralFixed Pin
Todd Smith14-May-02 15:34
Todd Smith14-May-02 15:34 
GeneralHTML Tags Pin
Brandon Parker10-May-02 13:25
Brandon Parker10-May-02 13:25 
GeneralRe: HTML Tags Pin
Andy Smith10-May-02 13:42
Andy Smith10-May-02 13:42 
QuestionHow do I call a .NET web service? Pin
10-May-02 10:30
suss10-May-02 10:30 
AnswerRe: How do I call a .NET web service? Pin
David Salter14-May-02 9:43
David Salter14-May-02 9:43 
GeneralRe: How do I call a .NET web service? Pin
16-May-02 23:53
suss16-May-02 23:53 
AnswerRe: How do I call a .NET web service? Pin
Mike.NET17-May-02 9:02
Mike.NET17-May-02 9:02 
General.Net Fram work Setup Pin
Gaurika Wijeratne9-May-02 19:47
Gaurika Wijeratne9-May-02 19:47 
GeneralRe: .Net Fram work Setup Pin
James T. Johnson9-May-02 20:09
James T. Johnson9-May-02 20:09 
QuestionWhat is the Fastest. Pin
Gaurika Wijeratne9-May-02 16:57
Gaurika Wijeratne9-May-02 16:57 
AnswerRe: What is the Fastest. Pin
James T. Johnson9-May-02 17:32
James T. Johnson9-May-02 17:32 
GeneralRe: What is the Fastest. Pin
Gaurika Wijeratne9-May-02 19:41
Gaurika Wijeratne9-May-02 19:41 
GeneralRe: What is the Fastest. Pin
James T. Johnson9-May-02 20:08
James T. Johnson9-May-02 20:08 
GeneralRe: What is the Fastest. Pin
Gaurika Wijeratne9-May-02 21:11
Gaurika Wijeratne9-May-02 21:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.