Search results for query: *

  • Users: pmusu
  • Order by date
  1. P

    Draw Line

    Thanks Just to give something back here is the code. The code in red is what i changed. It works Thanks to all again Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim connectarray(20, 20) Dim p As New...
  2. P

    Draw Line

    Thanks for answer One last thing, i have drawn the line. What i need is to do is draw an arrow at the end of the line like this --> with > = arrow -- = line This is code used to draw line getting coordinates from an array and connecting with a line the 2 circles together...
  3. P

    Draw Line

    Thanks the first code was what i was looking for, e.Graphics.DrawLine(X1,Y1,X2,Y2) Sorry for simple question but i am new to VB.Net even though i know some programming.
  4. P

    Draw Line

    Hi, I have an array which contains location points of 2 circles on screen. I want to be able to draw a line with an arrow between the 2 circles. How can i implement this. So basically i have circles that among other attributes contain X and Y coordinates. My idea is to implement a loop that...
Back
Top