Jump to content
Software FX Community

Top,Left,Width,Height for main ChartFX in VC++?


User (Legacy)

Recommended Posts

How Can I set Top,Left,Width,Height for main ChartFX in VC++?

Normally, Top,Left,Width,Height properties support by itself, but I can't see that properties in mine.

Anyone Help me?

CRect rect;

GetWindowRect(&rect);

m_pChartFX->put_AllowResize(true);

m_pChartFX->Top = rect.top; <<--------- that's what I want to do,

--

DeltaTau Data System

Nick Woo

818-717-5690

nwoo@deltatau.com

Link to comment
Share on other sites

If you are using raw interfaces (according to how you are setting the

AllowResize property).

m_pChartFX->put_Top(rect.top);

--

Regards

JC

Software FX Support

"Nick Woo" <nwoo@deltatau.com> wrote in message

news:OIra2JyuBHA.2636@webserver1.softwarefx.com...

How Can I set Top,Left,Width,Height for main ChartFX in VC++?

Normally, Top,Left,Width,Height properties support by itself, but I can't

see that properties in mine.

Anyone Help me?

CRect rect;

GetWindowRect(&rect);

m_pChartFX->put_AllowResize(true);

m_pChartFX->Top = rect.top; <<--------- that's what I want to do,

--

DeltaTau Data System

Nick Woo

818-717-5690

nwoo@deltatau.com

Link to comment
Share on other sites

I couldn't get m_pChartFX->pub_Top(); interfaces.

In my list of interface, put_TopGaP() is there, but not put_Top(),

"Software FX Support" <support@softwarefx.com> wrote in message

news:w3a2866uBHA.2644@webserver1.softwarefx.com...

> If you are using raw interfaces (according to how you are setting the

> AllowResize property).

>

> m_pChartFX->put_Top(rect.top);

>

> --

> Regards

>

> JC

> Software FX Support

>

> "Nick Woo" <nwoo@deltatau.com> wrote in message

> news:OIra2JyuBHA.2636@webserver1.softwarefx.com...

> How Can I set Top,Left,Width,Height for main ChartFX in VC++?

>

> Normally, Top,Left,Width,Height properties support by itself, but I can't

> see that properties in mine.

> Anyone Help me?

>

> CRect rect;

> GetWindowRect(&rect);

> m_pChartFX->put_AllowResize(true);

> m_pChartFX->Top = rect.top; <<--------- that's what I want to do,

>

> --

> DeltaTau Data System

> Nick Woo

> 818-717-5690

> nwoo@deltatau.com

>

>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...