Search found 12 matches
- Mon Jul 29, 2013 6:55 pm
- Forum: ActiveX
- Topic: TeeChart not drawing to a device context
- Replies: 17
- Views: 31508
Re: TeeChart not drawing to a device context
You solved it! It looks good, and the flicker is gone. Thanks!
- Mon Jul 29, 2013 6:36 pm
- Forum: ActiveX
- Topic: TeeChart not drawing to a device context
- Replies: 17
- Views: 31508
Re: TeeChart not drawing to a device context
Thank you! It looks like the flickering problem we were seeing is gone now!
- Fri Jul 26, 2013 4:43 pm
- Forum: ActiveX
- Topic: TeeChart not drawing to a device context
- Replies: 17
- Views: 31508
Re: TeeChart not drawing to a device context
Awesome! Thank you, and I'm looking forward to it!
- Tue Jun 11, 2013 5:38 pm
- Forum: ActiveX
- Topic: TeeChart not drawing to a device context
- Replies: 17
- Views: 31508
Re: TeeChart not drawing to a device context
Hello, Thanks for responding, and I hope we can solve this problem soon. I looked at the sample program that you gave us,but this solution will not work for our us. (The sample that I gave you is a very simple program that demonstrates the problem that we are seeing, but is not our final application...
- Fri Jun 07, 2013 3:18 pm
- Forum: ActiveX
- Topic: TeeChart not drawing to a device context
- Replies: 17
- Views: 31508
Re: TeeChart not drawing to a device context
Thanks for update, and good luck! Please keep us informed.
- Thu Jun 06, 2013 5:43 pm
- Forum: ActiveX
- Topic: TeeChart not drawing to a device context
- Replies: 17
- Views: 31508
Re: TeeChart not drawing to a device context
Hello,
Could you please give me an update on any progress of fixing this bug? Were you able to build it and reproduce it? Is there an estimate on how long it will take to fix it? If there is any more information you need from our end, we'd be happy to help.
Thank you!
Could you please give me an update on any progress of fixing this bug? Were you able to build it and reproduce it? Is there an estimate on how long it will take to fix it? If there is any more information you need from our end, we'd be happy to help.
Thank you!
- Mon Jun 03, 2013 8:11 pm
- Forum: ActiveX
- Topic: TeeChart not drawing to a device context
- Replies: 17
- Views: 31508
Re: TeeChart not drawing to a device context
Yay! It looks like the source code was successfully uploaded. I tried to upload a zipped file of the executable, but it appears that it is too big, so I'm hoping that the source code will be enough to build and reproduce this problem. This code was built using Microsoft Developer Studio 2010, and yo...
- Mon Jun 03, 2013 7:48 pm
- Forum: ActiveX
- Topic: TeeChart not drawing to a device context
- Replies: 17
- Views: 31508
Re: TeeChart not drawing to a device context
Hmm.. The link does not appear to be working either. I tried four different browsers and was unsuccessful each time I clicked on the link. I was never given a cue to enter a file, but got the message "could not connect to www.steema.net". I'll try again to upload the source code, but this time it wi...
- Fri May 31, 2013 4:02 pm
- Forum: ActiveX
- Topic: TeeChart not drawing to a device context
- Replies: 17
- Views: 31508
Re: TeeChart not drawing to a device context
I'm sorry. I tried 4 times to upload the attachment, and the website crashed each time. I sent an email to webmaster@teechart.net about it, and I'm hoping it can be resolved. Is there another way I can ftp the source code to you?
- Thu May 30, 2013 7:40 pm
- Forum: ActiveX
- Topic: TeeChart not drawing to a device context
- Replies: 17
- Views: 31508
TeeChart not drawing to a device context
Hello, There is a problem with TeeChart not drawing to a device context. This problem was introduced in v2012. Below is a code snippet from our OnPaint call (where CChildView is a derived CWnd class). void CChildView::OnPaint() { [snip] // Draw background pDC->FillSolidRect(rclChart, RGB(0xff, 0xff,...
- Thu Oct 27, 2011 7:57 pm
- Forum: ActiveX
- Topic: Series.Marks.Item Attributes not working
- Replies: 4
- Views: 8306
Re: Series.Marks.Item Attributes not working
Thanks for getting back to me so quickly. I think I see the problem I was having. As new data comes in, I clear out the old set of data and add a new group of X, Y, Z data. The Series.Marks.Item attributes are also cleared at this time. I guess I'll have to set it again when I add the new data. Than...
- Tue Oct 25, 2011 7:44 pm
- Forum: ActiveX
- Topic: Series.Marks.Item Attributes not working
- Replies: 4
- Views: 8306
Series.Marks.Item Attributes not working
Hello, I am having problems setting the Series.Marks.Item attribute. My graph is a 3d bar graph, plotting multiple series... None of the following code snippets had any effect.... Series(z).GetMarks().GetItem(x).SetVisible(bVisible) or if (bVisible) Series(z).GetMarks().GetItem(x).Show(); else Serie...