TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Radu Negres
NA
2
657
Input string was not in a correct format?
Nov 18 2017 6:21 PM
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp3
{
public partial class Form1 : Form
{
static int start_x = 0, start_y = 0;
static int end_x = 0, end_y = 0;
Graphics g = null;
Pen p = new Pen(Color.Red);
static int my_angle = 0, my_lenght = 0, my_increment = 0, num_lines = 0;
private void textBox2_TextChanged(object sender, EventArgs e)
{
}
public Form1()
{
InitializeComponent();
start_x = canvas.Width / 2;
start_y = canvas.Height / 2;
}
private void drawLines()
{if(String.IsNullOrWhiteSpace(angle.Text))
my_angle = my_angle + Int32.Parse(angle.Text);
my_lenght = my_lenght + Int32.Parse(increment.Text);
end_x = (int)(start_x + Math.Cos(my_angle* .017453292519) * my_lenght);
end_y = (int)(start_y + Math.Sin(my_angle* .017453292519) * my_lenght);
Point[] points = { new Point(start_x, start_y), new Point(end_x, end_y) };
start_y = end_y;
start_x = end_x;
g.DrawLines(p, points);
}
private void button1_Click(object sender, EventArgs e)
{
my_angle = Int32.Parse(angle.Text);
my_lenght = Int32.Parse(lenght.Text);
my_increment = Int32.Parse(increment.Text);
start_x = canvas.Width / 2;
start_y = canvas.Height / 2;
canvas.Refresh();
}
private void canvas_Paint(object sender, PaintEventArgs e)
{
g = canvas.CreateGraphics();
my_lenght = Int32.Parse(lenght.Text);
p.Width = 1;
for (int i = 0; i < Int32.Parse(nrlinii.Text);i++)
drawLines();
}
}
}
This is my code,the error ocurs at my_angle = Int32.Parse(angle.Text);
There is a string value in angle.Text,i have no idea why it would not work.
Reply
Answers (
2
)
Help regarding admin user login in windows form
open Application( EXE file) click on URL and join confrence