VS 2010 - Draw A Straight Line Between Two Points And Calculate The Length Of That Line?

Jan 3, 2012

I have a picture in my picturebox. In that picture, I need to draw a straight line between two points and calculate the length of that line (probably in pixels). Is there any suggestion how to do it?

View 2 Replies


ADVERTISEMENT

Calculating New Points Along A Straight Line In C#

Jul 22, 2010

[Code]...

If someone could post some sample code, in either c# or vb.net that would be much appreciated.

View 1 Replies

VS 2010 Draw A Line And Calculate The Angle?

Oct 20, 2011

I Have created a program (see below) that enables you to use you cam. You then draw a line and calculate the angle. The purpose is that I do alot of work with remote control cars and need to acuratley set toe and camber angles, it takes to long with the "old" method So I am creating this little program. ok, so, lets see what I want to do. Well, the first thing I would like to do is draw a line from top to bottom of my picture box dead center of left to right, this is dead center of the cam so the bottom of your item should be posistioned to meet the bottom of the centre line. I then draw a line from bottom to top of the objects angle. I then use the dead center line and the line I drew to calculate the angle.

[Code]...

View 19 Replies

Creating A WPF Application To Draw A Straight Black Line On A Canvas

Aug 16, 2010

Under the MouseLeftButtonUp event handker store the first coordinates of the lines second endpoint. Then call the length method to obtain the distance between the two endpoints(the lines length). Fianlly display the line on the canvas and the line's length in the Length=Label. Below is the code I have so far. There are no errors, but when I run the application nothing happens.

Private Sub lineCanvas_MouseLeftButtonUp(ByVal sender As Object, ByVal e As System.Windows.Input.MouseButtonEventArg... Handles lineCanvas.MouseLeftButtonUp
Dim distance As Double
endPoint = e.GetPosition(lineCanvas)

[Code].....

View 2 Replies

VS 2008 Calculate Points On Line?

Feb 23, 2012

Using the attached code, the goal is to draw a series of 1x1 rectangles to produce an image of a line. The image begins okay at point (0,0) but ends up after 5600 passes through the loop at (1884,5273) instead of at (1965, 5244). To prove the scale factor accurate I also use Drawline to draw the entire line with the same scale factor. Drawline ends up at the correct location (1965,5244).

I've manually checked the calculations with the results as noted. I'm at a total loss to understand what's going on.

' Xc = 1965
' Xp = 0
' Yc = 5244

[Code]....

View 2 Replies

Functions To Draw Line Or Move To Points

Jul 19, 2009

Currently there are functions to draw line or move to points, commonly known as LineTo(x,y) of MoveTo(x,y). I am wondering if there is also a LineTO or MoveTo function(s) for 3D, i.e. LineTo(x,y,z) or MoveTo(x,y,z).

View 1 Replies

VS 2008 Depreciation Loop - Calculate Straight-line Depreciation (cost * 1/n) N Being The Number Of Years To Depreciate

Jul 25, 2010

I have a program where I have to calculate straight-line depreciation (cost * 1/n) n being the number of years to depreciate, and Double-Declining depreciation (cost * 2/n) using user input for year of purchase, cost, and years of depreciation. The output needs to be put into 4 columns in a list box. Year, Value at beginning of year, Amount of depreciation during the year and Total depreciation to the end of the year.

The problem I am having is with my loop. It is not properly calculating. I'm sure I am doing something wrong that is simple, but I can't see it.

Here is my code; the problem areas are bold:

Public Class frmDepreciation

Dim Cost, Life, Year, Depreciation, BegValue, EndValue, Total, Counter As Double
Dim fmtStr As String = "{0,-10}{1,10}{2,17}{3,5}{4,-15}"
Dim fmtStr2 As String = "{0,-10}{1,10}{2,17}{3,15}"

[CODE]....

View 3 Replies

Straight Line And Dots?

Jun 12, 2011

I'm in this proyect where I need an area in the form where I can place just dots, then join these dots with an straight line between them.how can I do that? I placed a Picturebox to see functions there but nothing is clear.

View 3 Replies

Using As A Straight 'finishing Line'?

Jan 24, 2010

I have a line shape which I am using as a straight 'finishing line'. As the program runs an identically shaped line shape appears. I am a little confused from where and how it is appearing, as I only have the one line shape. Also, on some runs of the program 'trails' of the cars that are racing across the screen remain.Are these issues something simple I can fix?

View 5 Replies

How To Draw A DASHED Line Instead Of A Solid Line

Aug 22, 2010

I am graphing using Visual Basic graphics and it works. I would like to know how to draw a DASHED line instead of a solid line. Could someone help me with this?gphFormGraphics.DrawLine(Pens.Green, pt2, pt1)

View 4 Replies

Working Out The Point Positions Along A Straight Line?

Jul 22, 2010

I have two points (x1, y1) and (x2,y2) and have a straight line between the 2 points, from this I can work out the distance between the 2 points lets say it is 50.What I want to do is increase or decrease the length of the line by a predefined amount lets say 10.So If I increase the line length by 10 (from 50 to 60), What I want to work out is what point(x3,y3) would be at the end of the increased line.Hope this makes sense.I have tried to work out the new point using the angle but it does not work correctly, it does not seems to produce a perfectly straight line and the angle from point (x1,y1) to the new (x3,y3) is not the same as the angle from point (x1,y1 to x2,y2).

This is what I have tried:
:I work out the angle
aAngle =Math.Atan((Y2 Y1) / (X2 X2))

[code].....

View 1 Replies

VS 2010 Get Length Of String Minus The Line Feeds

Jan 27, 2012

Need to get length of a string minus the line feed chars and came up with this. Is there a better/more efficient way?

Function GetLenMinus_LF(s As String) As Integer
s = s.Replace(ControlChars.Lf, String.Empty)
Return s.Length
End Function

View 5 Replies

Make A Text To Move On A Straight Line Continuously?

May 29, 2012

I use this cod but it not moving the text contnusly Private sub Timer1............ Label1.text = " " & Label1.text

View 1 Replies

VS 2010 Graphics - Line Draw - Colour Change

Apr 22, 2012

I am currently drawing a line with Graphics. Drawline. Once this is drawn, under certain circumstances I want to change the colour of it. When the line is drawn, does it become an object that I can then refer, or do I simply draw a new line over the original in a different colour

View 10 Replies

Drawing A Line With Points?

May 13, 2009

I have a question about drawing lines. Most of the code snippets I've seen approach drawing a line with the mouse down as the startpoint and the mouse up as the endpoint. But I am trying to draw a line by startpoint as
a mouse click and then an endpoint as a mouse click just as you do on a typical cad program.

View 8 Replies

C# - Line And Points Using Asp.net Chart Control?

Jul 15, 2010

I have data in data table like below.

I am trying to make graph like below using asp.net chart control (made graph in excel with some test data)

points are X and Y values. lines are linear, exponential, logarithmic and power values.

So how can I make this chart in asp.net (vb.net or c#)?

View 1 Replies

Create Line Between Two Points And Save?

Mar 14, 2009

currently i dont have any code to show but i am curently creating an application on a windows mobile 5 device and wondered how i can plot a route manually....ie what i want to be able to do is use the stylus to touch somewhere on the screen and plot that as point A, then touch the screen somewhere else and plot that as Point B (in some sort of database) so that i can review that route afterwards

View 1 Replies

VS 2010 Read Through A Textfile Line By Line Checking For And Removing Duplicate Values?

May 16, 2012

How do i read through a textfile line by line checking for and removing duplicate values?

View 1 Replies

VS 2008 Open A Txt File, Read Line By Line, Decode Each Line Into An Array And Display?

Oct 14, 2011

what i need to do is open a txt file, read line by line, decode each line into an array and display. Now all works ok apart from one line.

sTextLine = objReader.ReadLine() <-- Value of string cannot be converted.

full code here
-------------
Dim objReader As New System.IO.StreamReader(sOpenFile.Text)
Dim sTextLine As New ArrayList()
Dim sText As String = ""
Dim i As Integer = 0

[code]....

View 3 Replies

VS 2010 : RichTextBox Edit Line By Line, Keeping The Formatting?

Jul 7, 2011

I want to loop the lines of my RTB and add a vbTab on each line.How do i do this?

View 1 Replies

VS 2010 Multi Line String - 1 Line = New Entry To Combobox?

Oct 16, 2010

Ok, So I have a string that has its formats like this:

Line 1
Line 2
Line 3

[code].....

View 6 Replies

VS 2010 Read Line By Line And Send To Check List Box

Jul 9, 2011

I have a text file with an unknown number of lines. I want to read this file line by line and send each line's text in a check list box. But how am i gonna do that when i don't know how many lines exist in text the file? [code]The code above reads only the first line. I tried to do it as in vb6 using while not eof(but here i don't know what to write cause my file isn't opened in a certain channel).

View 4 Replies

VS 2010 : Reading Line By Line From A Text File?

Feb 13, 2012

the following code was to be entered to read each line of the file "line by line" It did not work for me as instructed and I am trying to understand why?

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim FILE_NAME As String = "C:UsersOwnerDocuments est.txt"
Dim objReader As New System.IO.StreamReader(FILE_NAME)
Dim TextLine As String

[code]....

View 9 Replies

VS 2010 Adding New Line & Writing Text On That Line

May 20, 2012

I want to modify a text file. It has a lot of lines of text in it. I want to add a line after a specific line (in the middle on other lines) and write strings there.

The code i have, writes to a specific line but it also overwrites the text on that line:

[Code].....

View 5 Replies

VS 2008 : Microsecond Timer To Plot Points On Line?

Feb 27, 2012

A couple of options seem to be available to achieve better accuracy and shorter periods than the Timer control in VB allows, however they too seem to have their own unique drawbacks. I am trying to plot (draw) points that are calculated in my VB application and then represent them in real time with an accuracy of a couple percent. If VB can calculate the points in the microsecond time range, would it be reasonable to hang an external pulse source on a usb port and use the "Datachanged" event to count the pulses that will be summed and used to plot the points?Ultimately, this is a machine control application that requires "reasonably precise" timing - ie. CNC type control. The points are scaled and drawn and then step and direction signals are sent out through another USB port.

View 2 Replies

Read Text From A Listbox Line By Line And Put Current Line In A Label?

Jan 16, 2011

how to read text from a listbox line by line and put current line in a label?

View 3 Replies

Reading A File Line By Line That Within The Line The Values Are Delimited By "?

Dec 1, 2011

How would i go about reading a file Line by Line that within that line The values are delimited by " Example of the data:

"bob" "cat" "1243"
"steve" dog" "6789"

I've started this with this code but not sure how to go about the next stage:

Using MyReader As New _
Microsoft.VisualBasic.FileIO.TextFieldParser(My.Application.Info.DirectoryPath & "Records28112011.jd")
MyReader.TextFieldType = FileIO.FieldType.Delimited

[code]....

View 9 Replies

VS 2010 Read A File Line By Line?

Aug 21, 2011

how to read a simple text file line by line like when you're writing to a file with System.IO.StreamWriter where you write to the file line by line.

View 5 Replies

VS 2008 Reading A TextBox Line By Line And Using SubString On Each Line?

Jul 5, 2010

I am trying to read in a TextBox line by line and take the first 7 characters of each line and output everything in another TextBox.This is what I have so far.

Dim line, lines() As String
lines = TextBox1.Text.Split(Environment.NewLine)
Dim i As Integer = 0

[code].....

View 1 Replies

Finding Length Of Each Line In A .txt File

Mar 16, 2012

I am a newbie when it comes to programming. Right now I am trying to create a program that will read in a .txt file that consists of different integers on each line. For example, the .txt file looks something like this:

[Code]...

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved