User Activity

  • Posted a comment on discussion Open Discussion on Trebuchet Tk

    I just installed Trebuchet a few minutes ago. The installer is Trebuchet1082b1.exe After the installation, it put this shortcut in my Start Menu: "C:\Program Files (x86)\Trebuchet\Trebuchet.tcl" Windows 10 wants to know how to launch this application. I don't know. What do I need to do?

  • Posted a comment on a wiki page on Notepad++ Plugins

    What I hate about SourceForce is there rarely is any info on how to use the product, like here. They assume everyone already is familiar with it.

  • Posted a comment on discussion Open Discussion on ZedGraph

    I haven't used ZedGraph in a long time. What version do you have? I downloaded the control, and then tried to use your code. It does not compile as written because pane is not defined. Also, where and how are you calling GetImage()? Can you post up some working code? Example: private ZedGraph.ZedGraphControl z1; public ZedGraphForm() { z1 = new ZedGraphControl(); z1.Location = new System.Drawing.Point(0, 0); z1.Name = "zedGraphControl1"; z1.TabIndex = 0; InitializeComponent(); zpath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);...

  • Posted a comment on discussion Open Discussion on ZedGraph

    Sorry. This last message went to my Spam folder. Question 1: I need the postion of PointPair pt = curve[iPt] in the function of textbox2_Clicked, not a cursor.position You haven't posted any data. Are you trying to locate a point already on your graph? Question 2: I need the variable of PointPair pt=curve [ipt] for the curve to show when clicking the mouse and not the textbox 2_clicked event Where is this textbox2 control? TextBox controls are not part of the graph, so they should not be on the graphing...

  • Modified a comment on discussion Open Discussion on ZedGraph

    I'm not sure if I understand your question correctly, but perhaps you simply need to wire up the Click Event handler of your textbox2 control: private TextBox textbox1, textbox2; private void initTextboxes() { textbox1 = new TextBox(); textbox2 = new TextBox(); textbox2.Click += new EventHandler(textbox2_Clicked); } private void textbox2_Clicked(object sender, EventArgs e) { var point = Cursor.Position; var result = String.Format("(X, Y): ({0}, {1})", point.X, point.Y); textbox2.Text = result; textbox2.Tag...

  • Posted a comment on discussion Open Discussion on ZedGraph

    I'm not sure if I understand your question correctly, but perhaps you simply need to wire up the Click Event handler of your textbox2 control: private TextBox textbox1, textbox2; private void initTextboxes() { textbox1 = new TextBox(); textbox2 = new TextBox(); textbox2.Click += new EventHandler(textbox2_Clicked); } private void textbox2_Clicked(object sender, EventArgs e) { var point = Cursor.Position; var result = String.Format("(X, Y): ({0}, {1})", point.X, point.Y); textbox2.Text = result; textbox2.Tag...

  • Posted a comment on discussion Open Discussion on ZedGraph

    I see your sample code above, but I do not understand what you are trying to do with it. If you would like to see several real world examples, click on the link below. There are many questions and answers on there, some of which might give you an idea about how to solve your problem: https://stackoverflow.com/questions/tagged/zedgraph

  • Posted a comment on discussion Open Discussion on ZedGraph

    You would create a new CurveItem object using the mouse coordinates. It is possible I do not understand. Can you post sample code?

View All

Personal Data

Username:
jp2code
Joined:
2011-11-25 16:51:03

Projects

  • No projects to display.

Personal Tools