User (Legacy) Posted February 21, 2002 Report Posted February 21, 2002 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
Software FX Posted February 22, 2002 Report Posted February 22, 2002 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
User (Legacy) Posted February 25, 2002 Author Report Posted February 25, 2002 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 > >
Recommended Posts
Archived
This topic is now archived and is closed to further replies.