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

Managed C++/CLI

 
QuestionHow can i access which .exe or file are open after computer starting Pin
m_mun18-Nov-09 22:18
m_mun18-Nov-09 22:18 
AnswerRe: How can i access which .exe or file are open after computer starting Pin
T210226-Nov-09 0:21
T210226-Nov-09 0:21 
QuestionCLR,What is the event for the scrolling of middle mouse scroll? Pin
akira3217-Nov-09 22:08
akira3217-Nov-09 22:08 
AnswerRe: CLR,What is the event for the scrolling of middle mouse scroll? Pin
Richard MacCutchan17-Nov-09 22:49
mveRichard MacCutchan17-Nov-09 22:49 
QuestionImport C# dll in C++ application Pin
Game-point17-Nov-09 18:54
Game-point17-Nov-09 18:54 
AnswerRe: Import C# dll in C++ application Pin
Game-point18-Nov-09 17:52
Game-point18-Nov-09 17:52 
QuestionHow to use PropertyGrid to browse and modify the attributes of customized object Pin
akira3217-Nov-09 16:37
akira3217-Nov-09 16:37 
AnswerRe: How to use PropertyGrid to browse and modify the attributes of customized object [modified] Pin
akira3218-Nov-09 19:52
akira3218-Nov-09 19:52 
I had used public property to solve this problem. But... I meet another problem.
If SelectedObject is a nested object like basicobject, how to show the parameters of basiceffect in PropertyGrid?

public ref class BasicEffect
{
public:
BasicEffect(void)
{
}

virtual ~BasicEffect()
{
}

public:

[Browsable(true)]
property System::Boolean loop
{
bool get()
{
return _loop;
}

void set(System::Boolean value)
{
_loop=value;
}
}

private: System::Boolean _loop;

};

public ref class UIObject
{
public:
UIObject(void){_basiceffect=gcnew BasicEffect()};
virtual ~UIObject(void){};

public:
[Browsable(true)]
property int x
{
int get()
{
return _x;
}

void set(int value)
{
_x=value;
}
}

public:
[Browsable(true)]
property BasicEffect^ basiceffect2
{
BasicEffect^ get()
{
return _basiceffect2;
}

void set(BasicEffect^ value)
{
_basiceffect2=value;
}
}
private: int _x;
private: BasicEffect^ _basiceffect2;
};

modified on Thursday, November 19, 2009 3:32 AM

QuestionC++\CLI Assembly.Load failed [modified] Pin
Huisheng Chen17-Nov-09 16:10
Huisheng Chen17-Nov-09 16:10 
QuestionCLR,How to modify the AutoScrollMinSize of Form1 by coding? [modified] Pin
akira3216-Nov-09 21:02
akira3216-Nov-09 21:02 
AnswerRe: CLR,How to modify the AutoScrollMinSize of Form1 by coding? Pin
Luc Pattyn17-Nov-09 1:37
sitebuilderLuc Pattyn17-Nov-09 1:37 
AnswerRe: CLR,How to modify the AutoScrollMinSize of Form1 by coding? Pin
Shameel23-Nov-09 7:48
professionalShameel23-Nov-09 7:48 
QuestionCLR,How to put any type controls on Toolstrip? Pin
akira3216-Nov-09 20:11
akira3216-Nov-09 20:11 
QuestionHow to get HBITMAP from BitMap Pin
vibindia15-Nov-09 17:44
vibindia15-Nov-09 17:44 
AnswerRe: How to get HBITMAP from BitMap Pin
Mark Salsbery16-Nov-09 7:53
Mark Salsbery16-Nov-09 7:53 
QuestionCLR,How to set RootFolder of FodlerBrowserDialog to be Current Working Directory Pin
akira3212-Nov-09 19:10
akira3212-Nov-09 19:10 
AnswerRe: CLR,How to set RootFolder of FodlerBrowserDialog to be Current Working Directory Pin
N a v a n e e t h12-Nov-09 19:53
N a v a n e e t h12-Nov-09 19:53 
AnswerRe: CLR,How to set RootFolder of FodlerBrowserDialog to be Current Working Directory Pin
Mark Salsbery15-Nov-09 5:52
Mark Salsbery15-Nov-09 5:52 
GeneralRe: CLR,How to set RootFolder of FodlerBrowserDialog to be Current Working Directory Pin
akira3216-Nov-09 20:07
akira3216-Nov-09 20:07 
QuestionHow to render DirectX9 on my CLR customed control? Pin
akira3211-Nov-09 4:58
akira3211-Nov-09 4:58 
AnswerRe: How to render DirectX9 on my CLR customed control? Pin
akira3212-Nov-09 7:02
akira3212-Nov-09 7:02 
GeneralRe: How to render DirectX9 on my CLR customed control? Pin
akira3212-Nov-09 7:03
akira3212-Nov-09 7:03 
GeneralRe: How to render DirectX9 on my CLR customed control? Pin
Lutosław13-Nov-09 7:11
Lutosław13-Nov-09 7:11 
GeneralRe: How to render DirectX9 on my CLR customed control? Pin
akira3216-Nov-09 20:07
akira3216-Nov-09 20:07 
QuestionHow to redirect and log the output of the VC++ console to a file? Pin
santoshkaif5-Nov-09 2:47
santoshkaif5-Nov-09 2:47 

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.