Overflow after using "FillSampleValues()" in Teechart(VC++6.0,Teechart8.ocx environment) - overflow

I'm a very beginner of TeeChart.
When I add a member variable called m_chart for the chart,it looks okay.
Then I add "m_chart.Series(0).FillSampleValues(50);" in CMy312Dlg::OnInitDialog()......
and overflow ocurred.
What's wrong?
So sad to find that I don't describe my question well.(Well I'm a freshman on StackOverflow,and cannot add image for my poor reputation.)
But if you need more details,I will try to describe for you.:)

Before adding data to a series you must create this series and add it to the chart to access it the way you do. You'll find examples at the Visual C++ sections in the tutorials and examples folders. If the problem persists please send us an example project we can run "as-is" to reproduce the problem here.

Related

Comments added in Scenario Outline do not appear in HTML reports [duplicate]

I have noticed that commented lines in Scenario Outline do not appear in the HTML report steps even though this is not the case for regular Scenarios.
By any chance, is this intended or is it an overlooked bug?
I am aware that this issue is very minor and low in priority but it is helpful for cases like mine, whose lines of code can get a bit long. In-line comments help in documenting and separating blocks of code in my test scenarios.
Thanks in advance!
May be overlooked. This is certainly not a priority for the project developers, you are welcome to contribute code.
Custom reports can be easy if you know Java, refer: https://stackoverflow.com/a/66773839/143475
EDIT - at the very least, please submit a simple sample so that the problem is clear, following the instructions here: https://github.com/intuit/karate/wiki/How-to-Submit-an-Issue

How to get started posting a question with Stack Overflow?

I know this is going to sound extremely stupid but I honestly cannot figure out how to post a question I have here for a program I am trying to make.
Whenever I paste my code into the code section this website tells me I have not formatted correctly. I triple check everything and it is all perfectly formatted. It is strange though because my code ends up being halfway into the place where I am suppose to describe the issue. So I am definitely doing this wrong.
Would somebody please walk me through a simple tutorial so I can finally ask my questions?
Honor to help you, I think you can first learn how to use markdown.
And this is two useful tutorial I read when I am learning.
Perfect question : WRITING THE PERFECT QUESTION
Use Markdown effectively : Markdown Getting Started
As for the display of code you mention above, you can use triple ``` to surround the code like this
import math
print('hello world')

What is a good link to examples of enaml being used with traits and matplotlib?

I have done GUI construction but not in Python. From other stack exchange questions and my own investigation. It looks like I want to use enaml and traits for the bulk of this work. Are there any links or references to help me get started.
This is a scientific application integrating matplotlib plots and text boxes and buttons (Very simple I think). I have gone through this example but don't understand it too well http://code.enthought.com/projects/traits/docs/html/tutorials/traits_ui_scientific_app.html
I have also gone through the Enthough Chaco examples and don't get very far. Has somebody built a program that I could run and look at their code? Or is their a repository of examples I am not aware of? I found the enaml examples but the example with matplotlib is basic and does not show me how to connect my algorithms to the plots. Thanks in advance!
Not a full answer, but for additional context:
1) Use https://github.com/nucleic/enaml, along with https://github.com/enthought/traits-enaml
2) Example:
https://github.com/nucleic/enaml/blob/master/examples/widgets/mpl_canvas.enaml

Use of undeclared identifier Xcode

I always turn to stack overflow in order to clarify programming issues. I found a question which deals with creating PDF files in x code that I am trying to implement. The post can be found here Create PDF iOS7 My problem begins at the very las instruction for the completed answer (The one with the green check) that reads "Now import the PDf.h in the class and use something like this to create and draw your pdf:" I do not understand what the instructions mean when they say "Import the PDF.h class" Where would I import this?
I am providing the link to that questions so it is easier for anyone to find it.
thanks in advance!!
Link to question: Create PDF iOS7
Create the two files that were written in the answer you linked (PDFHelper.h and PDFHelper.m). Then in the class that needs to create a PDF add: #import "PDFHelper.h"
After doing this, you can access the PDFHelper class and its functions.

Using wildcards in Selenium IDE

I'm somewhat new to automation, and am learning everything auto-didactically, so forgive me if my terminology is a bit off. I've searched hi and low for an answer to this question, and I can't seem to find anything. I presume it's my small vocabulary when it comes to this stuff... anyway...
I'm attempting to write a test that performs all the actions necessary to complete a tutorial by using the recorder. However, for one particular step, the element ID changes. For example, the ID I'm trying to click is this:
//li[#id='message_661119']/div[2]/div[2]/a/img
However, for each new user that is performing the tutorial "quest", the number of the id changes.
Is there anyway to get Selenium to recognize, or use, wildcards? Example:
//li[#id='message_******']/div[2]/div[2]/a/img
Of course, the example above does not work.
Any advice would be immensely helpful. Thank you!!
You can use starts-with() for this:
//li[starts-with(#id, 'message_')]/div[2]/div[2]/a/img
It's one of the examples mentioned in Locating Techniques in Selenium's docs for starts-with().
In Target field of the command in Selenium IDE where you can see message_123123 click on a dropdownlist and choose an option which is related to xpath:idRelative or if this one doesn't work then try another options which do not include that annoying message_123123 so this way you'll identify webpage element by it's location but not id. I solved my issue this way

Resources