Click here to Skip to main content
15,902,189 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: Mysql Remote login Pin
ky_rerun24-Feb-09 15:06
ky_rerun24-Feb-09 15:06 
QuestionToUpper and ToLower part of a string in .net C++? Pin
TabascoSauce14-Feb-09 15:28
TabascoSauce14-Feb-09 15:28 
AnswerRe: ToUpper and ToLower part of a string in .net C++? Pin
N a v a n e e t h14-Feb-09 18:18
N a v a n e e t h14-Feb-09 18:18 
GeneralRe: ToUpper and ToLower part of a string in .net C++? [modified] Pin
TabascoSauce15-Feb-09 11:41
TabascoSauce15-Feb-09 11:41 
GeneralRe: ToUpper and ToLower part of a string in .net C++? Pin
N a v a n e e t h15-Feb-09 16:32
N a v a n e e t h15-Feb-09 16:32 
GeneralRe: ToUpper and ToLower part of a string in .net C++? Pin
TabascoSauce16-Feb-09 12:25
TabascoSauce16-Feb-09 12:25 
QuestionFinding and mapping audio devices in windows Pin
gurindersm12-Feb-09 18:15
gurindersm12-Feb-09 18:15 
QuestionExposing a property of a nested class to .Net VB, C# etc. Pin
stempsoft12-Feb-09 12:23
stempsoft12-Feb-09 12:23 
I have a nested managed class and I would like to expose the properties of the nested class to C# and VB. How do I do this?



In the following C++ managed class, I can see all of the properties of FitnessUserProfile in VB. I can see the Activity class within the FitnessUserProfile object in VB but I can't see any FitnessUserProfile.Activity properties.

What am I doing wrong?



I am using Visual Studio 2005.



namespace GarXface<br />
{<br />
<br />
<br />
    public ref class FitnessUserProfile : public ICloneable<br />
    {<br />
<br />
      public:<br />
    <br />
        property unsigned BirthDay<br />
        {<br />
            void set(unsigned day)<br />
            {<br />
                m_pProfile->SetBirthDay(day);<br />
            }<br />
<br />
            unsigned get()<br />
            {<br />
                return m_pProfile->GetBirthDay();<br />
            }<br />
        }<br />
<br />
    <br />
        ref class Activity : public ICloneable        {<br />
        internal:<br />
<br />
            Activity(void);<br />
<br />
             public:<br />
       <br />
            property float MaxHeartRate<br />
            {<br />
                void set(float heartRate)<br />
                {<br />
                               <br />
                }<br />
<br />
                float get()<br />
                {<br />
<br />
                }<br />
<br />
            }       <br />
<br />
<br />
<br />
<br />
<br />

AnswerRe: Exposing a property of a nested class to .Net VB, C# etc. Pin
N a v a n e e t h12-Feb-09 14:03
N a v a n e e t h12-Feb-09 14:03 
GeneralRe: Exposing a property of a nested class to .Net VB, C# etc. Pin
stempsoft12-Feb-09 15:20
stempsoft12-Feb-09 15:20 
GeneralRe: Exposing a property of a nested class to .Net VB, C# etc. Pin
N a v a n e e t h12-Feb-09 16:27
N a v a n e e t h12-Feb-09 16:27 
Questionwhich is the best method to send data to clients, without a request from client Pin
naveen_bij11-Feb-09 22:36
naveen_bij11-Feb-09 22:36 
AnswerRe: which is the best method to send data to clients, without a request from client Pin
led mike12-Feb-09 4:41
led mike12-Feb-09 4:41 
GeneralRe: which is the best method to send data to clients, without a request from client Pin
naveen_bij12-Feb-09 18:05
naveen_bij12-Feb-09 18:05 
GeneralRe: which is the best method to send data to clients, without a request from client Pin
Luc Pattyn12-Feb-09 4:47
sitebuilderLuc Pattyn12-Feb-09 4:47 
GeneralRe: which is the best method to send data to clients, without a request from client Pin
naveen_bij12-Feb-09 18:31
naveen_bij12-Feb-09 18:31 
GeneralRe: which is the best method to send data to clients, without a request from client Pin
Luc Pattyn13-Feb-09 9:00
sitebuilderLuc Pattyn13-Feb-09 9:00 
AnswerRe: which is the best method to send data to clients, without a request from client Pin
tyr200023-Feb-09 1:20
tyr200023-Feb-09 1:20 
GeneralRe: which is the best method to send data to clients, without a request from client Pin
naveen_bij23-Feb-09 20:09
naveen_bij23-Feb-09 20:09 
GeneralRe: which is the best method to send data to clients, without a request from client Pin
tyr200025-Feb-09 1:21
tyr200025-Feb-09 1:21 
GeneralRe: which is the best method to send data to clients, without a request from client Pin
naveen_bij25-Feb-09 3:53
naveen_bij25-Feb-09 3:53 
GeneralRe: which is the best method to send data to clients, without a request from client [modified] Pin
tyr200025-Feb-09 13:07
tyr200025-Feb-09 13:07 
GeneralRe: which is the best method to send data to clients, without a request from client Pin
naveen_bij28-Feb-09 23:01
naveen_bij28-Feb-09 23:01 
QuestionAssenbly referencing problem Pin
KASR111-Feb-09 19:00
KASR111-Feb-09 19:00 
AnswerRe: Assenbly referencing problem Pin
led mike12-Feb-09 4:29
led mike12-Feb-09 4:29 

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.