Thanks Yeray.
That worked. I can't believe I didn't try that combination. Haven't looked at it for a while. Plus I'm getting old!
David
Search found 32 matches
- Thu Mar 26, 2009 4:37 pm
- Forum: ActiveX
- Topic: Question for old program using V6 Tchart and ActiveX
- Replies: 2
- Views: 5434
- Tue Mar 24, 2009 5:24 pm
- Forum: ActiveX
- Topic: Question for old program using V6 Tchart and ActiveX
- Replies: 2
- Views: 5434
Question for old program using V6 Tchart and ActiveX
I have an old program that still gets used occasionally with version 6 AX. Someone asked me to change the pen width on the lower Bollinger band. I remember having some trouble with the lower bb. Pr4obably why I didn't do it before. Anyhow I cant seem to figure it out. My prog referred to this path b...
- Thu Jul 24, 2008 7:15 pm
- Forum: ActiveX
- Topic: Change individual candle bar color
- Replies: 1
- Views: 4886
Change individual candle bar color
I've been using V6 AX with VB 6 for a few years and I'd like to be able to change the color of individual candles in the midst of a series and not default to the up and down close colors. The way I did it before was to create a second series with different colors and overlay the specific candles in ...
- Thu Oct 13, 2005 8:40 pm
- Forum: ActiveX
- Topic: Adding user text boxes on a chart
- Replies: 1
- Views: 4252
Adding user text boxes on a chart
Is there a way to add text boxes to a chart and let the user type info, scale them, edit them, and move them around? I may want them to be able to add several on the same chart. I want them to be printed when the chart gets printed so I'm hoping it will be a part of theTchart control. I see where I ...
- Wed Sep 21, 2005 1:40 pm
- Forum: ActiveX
- Topic: VB6 Integer overflow error
- Replies: 7
- Views: 10952
Narcis, Thanks for the help. Not sure if that was my problem or if I even described it properly. You mentioned that later versions had a fix for the shape series. From your description, maybe there is a connection. I'm using 6.0.0.5. Would 6.0.0.6 have the changes or do you mean V7? I have a questio...
- Tue Sep 20, 2005 8:51 pm
- Forum: ActiveX
- Topic: VB6 Integer overflow error
- Replies: 7
- Views: 10952
Narcis, I've been trying to clear this problem by doing some of the things you suggested with mixed success. This is an intermittent problem which drives me crazy. Anyhow I think I've traced it back to when I added a rectangle shape series to the chart. I never had the issue before that and I've nev...
- Fri Sep 09, 2005 11:47 am
- Forum: ActiveX
- Topic: VB6 Integer overflow error
- Replies: 7
- Views: 10952
Hi Narcis, I'm not able to reproduce it here. This happens whenever changing anything with the chart editor? This happens at run-time, design-time or both? This happens at design time only. After you helped me recover a couple weeks ago, I've made several changes to the program (not related to the c...
- Thu Sep 08, 2005 5:47 pm
- Forum: ActiveX
- Topic: VB6 Integer overflow error
- Replies: 7
- Views: 10952
VB6 Integer overflow error
VB6, sp6 Tchart 6 ver 6.0.0.5 I'm having touble when I run the chart editor on an existing project. I just wanted to change the panel background. In any event, when I change anything and exit the editor, I get a VB 6 Integer overflow error. This causes the chart to be rendered useless and forces loa...
- Thu Aug 25, 2005 3:47 pm
- Forum: ActiveX
- Topic: Log error in VB loading form
- Replies: 3
- Views: 6147
Narcis, Thanks. That worked. I had tried that before where I deleted the charts and then tried to cut and paste them fom an older version but this time I saved the file between the delete and the cut/paste. I just had one of "those" days where everything I did went wrong. I appreciate your help. David
- Wed Aug 24, 2005 10:17 pm
- Forum: ActiveX
- Topic: Log error in VB loading form
- Replies: 3
- Views: 6147
Log error in VB loading form
I have used this same basic form in VB6 with ActiveX V6 for a year or so with no issues. Something got messed up with the file and i now get log errors when the form loads. There are 3 charts on the form. Line 25: Property Base64 in MultiChart had an invalid value. Line 259: Property Base64 in ctl3p...
- Tue Jun 14, 2005 5:28 pm
- Forum: ActiveX
- Topic: trouble drawing a shape
- Replies: 3
- Views: 6530
I finally got back to messing with this problem. Here is what I found. In the production program I had some initialization steps where I cleared the series (all of them that I was using). I didn't have this in the test program. If I use the .clear option in either the test or the production program,...
- Sat Jun 11, 2005 7:28 pm
- Forum: ActiveX
- Topic: trouble drawing a shape
- Replies: 3
- Views: 6530
trouble drawing a shape
I want to draw a rectangle on my chart. I set up a rectangular shape series with the editor. I did a small test program and it seems Ok but in my production prog I get a method error on the .asShape.X0 statement. I'm using VB6 and Tchart 6. The only thing I see that appears different in the code is ...
- Sat Dec 18, 2004 4:35 pm
- Forum: ActiveX
- Topic: mix colors on candle chart
- Replies: 1
- Views: 4694
Well I woke up this morning inspired. I decided to clone the original candle series and then change the red/green to the white/black colors. I displayed the original series and then displayed the new series with only the specific candles right on top of the first one. This enabled me to still use so...
- Fri Dec 17, 2004 5:43 pm
- Forum: ActiveX
- Topic: get Bollinger band values from mouse click
- Replies: 3
- Views: 8235
I got it working once I figured out how to access the lower band.
ebbptr is the pointer for the Xvalue factoring in the null values at the beginning.
Thanks for your help.
David
Code: Select all
MultiChart.Series(4).FunctionType.asBollinger.LowBand.YValues.Value(ebbPtr)
Thanks for your help.
David
- Fri Dec 17, 2004 3:56 pm
- Forum: ActiveX
- Topic: mix colors on candle chart
- Replies: 1
- Views: 4694
mix colors on candle chart
I was just asked if it was possible change candle colors in a single chart showing a mixed display. For example: The normal up candle is red, normal down is green. Some candles in the chart are known to have some special characteristics and I would like to show them as up=white and down = black then...