Click here to Skip to main content
15,904,297 members
Home / Discussions / C#
   

C#

 
GeneralRe: Programmatically Scrolling is not working C# WinForm Pin
Tridip Bhattacharjee18-Sep-14 21:43
professionalTridip Bhattacharjee18-Sep-14 21:43 
GeneralRe: Programmatically Scrolling is not working C# WinForm Pin
BillWoodruff18-Sep-14 22:38
professionalBillWoodruff18-Sep-14 22:38 
GeneralRe: Programmatically Scrolling is not working C# WinForm Pin
Tridip Bhattacharjee19-Sep-14 3:34
professionalTridip Bhattacharjee19-Sep-14 3:34 
GeneralRe: Programmatically Scrolling is not working C# WinForm Pin
BillWoodruff19-Sep-14 21:36
professionalBillWoodruff19-Sep-14 21:36 
QuestionHow do i delete my visual studio online project Pin
J.J.S_;)18-Sep-14 0:51
J.J.S_;)18-Sep-14 0:51 
AnswerRe: How do i delete my visual studio online project Pin
Eddy Vluggen18-Sep-14 1:01
professionalEddy Vluggen18-Sep-14 1:01 
AnswerRe: How do i delete my visual studio online project Pin
Marco Bertschi18-Sep-14 1:51
protectorMarco Bertschi18-Sep-14 1:51 
QuestionStreaming USB webcam for image processing Pin
admbrt17-Sep-14 11:58
admbrt17-Sep-14 11:58 
AnswerRe: Streaming USB webcam for image processing Pin
Ravi Bhavnani17-Sep-14 15:15
professionalRavi Bhavnani17-Sep-14 15:15 
GeneralRe: Streaming USB webcam for image processing Pin
admbrt18-Sep-14 6:54
admbrt18-Sep-14 6:54 
AnswerRe: Streaming USB webcam for image processing Pin
Ravi Bhavnani20-Sep-14 11:16
professionalRavi Bhavnani20-Sep-14 11:16 
GeneralRe: Streaming USB webcam for image processing Pin
admbrt28-Sep-14 2:23
admbrt28-Sep-14 2:23 
Questionfinger print attendance device Pin
Jassim Rahma17-Sep-14 10:24
Jassim Rahma17-Sep-14 10:24 
AnswerRe: finger print attendance device Pin
Ravi Bhavnani17-Sep-14 15:17
professionalRavi Bhavnani17-Sep-14 15:17 
QuestionHow to use entity frame work in MVC web Application Pin
jeenak17-Sep-14 2:44
jeenak17-Sep-14 2:44 
AnswerRe: How to use entity frame work in MVC web Application Pin
Ravi Bhavnani17-Sep-14 4:51
professionalRavi Bhavnani17-Sep-14 4:51 
AnswerRe: How to use entity frame work in MVC web Application Pin
Dave Kreskowiak17-Sep-14 5:03
mveDave Kreskowiak17-Sep-14 5:03 
AnswerRe: How to use entity frame work in MVC web Application Pin
Suraj Sahoo | Coding Passion17-Sep-14 22:31
professionalSuraj Sahoo | Coding Passion17-Sep-14 22:31 
QuestionCodeplex D3 chart Pin
Sunil M P16-Sep-14 21:00
Sunil M P16-Sep-14 21:00 
AnswerRe: Codeplex D3 chart Pin
Bernhard Hiller16-Sep-14 21:24
Bernhard Hiller16-Sep-14 21:24 
AnswerRe: Codeplex D3 chart Pin
Pete O'Hanlon16-Sep-14 22:20
mvePete O'Hanlon16-Sep-14 22:20 
Questionwhy my graph error??? Pin
rikiz16-Sep-14 19:30
rikiz16-Sep-14 19:30 
anyone can help me,.,
i try to make a graph in c# like this video in youtube :

http://www.youtube.com/watch?v=Tay4t1Wo-As[^]

i have been doing all of procedure like this tutorial..
in tutorial
when program running..no error happend..
when i try run my program that i made, error happend

error program is = "axMathworks_Strip1.AddXY(0, a, Convert.ToDouble(textBox1.Text));"

this is a full program
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace nyobaan_library1
{
public partial class Form1 : Form
{
Double a,b;

public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
button1.Enabled = false;
}

private void timer1_Tick(object sender, EventArgs e)
{

a++;
axMathworks_Strip1.AddXY(0, a, Convert.ToDouble(textBox1.Text));
}
}
}

iam using library MWStrip.ocx active X


computer say :
"nput string was not in a correct format."

any one can help me????
AnswerRe: why my graph error??? Pin
Pete O'Hanlon16-Sep-14 19:56
mvePete O'Hanlon16-Sep-14 19:56 
GeneralRe: why my graph error??? Pin
rikiz18-Sep-14 18:42
rikiz18-Sep-14 18:42 
GeneralRe: why my graph error??? Pin
Pete O'Hanlon18-Sep-14 19:37
mvePete O'Hanlon18-Sep-14 19:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.