For class, I am creating a Tic Tac Toe game. When there is a win I would like to draw a line over the 3-in-a-row. Not sure if this is possible because I used an array of buttons to represent the X's and O's. If this is not possible I would like to highlight the winning buttons.
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?
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)
I have a form that uses a button to draw a line and a second button to draw a rectangle. I have a third button to clear the form but can't find a code example to code the Clear button.
Private Sub ColorKeyForm_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint 'Draws diagonal line of dot and dash on form
[Code]....
... the top part draws a line on the form but the second part does nothing. The picColorKey is a picture box on the form.
I searched this forum for the answer before posting this and from what i have noticed there is no "simple" way ofcourse "simple" definition varies from one person to another
my definition of simple is something like this Line(x1,y1,x2,y2,color) or something like that.[code]...
I need to draw a line on a series of pictures: I have decompiled a movie file to 1200 pictures. I also have 1200 samples of vector data (coordinates of the line: beginning point, ending point , size of vector (length) and direction (angle)... anything). With these data I want for each corresponding picture to draw a line corresponding to this vector data for instance: picture 550 needs to get a line drawn from point (5,95) ... these are (x,y) coordinates. in direction of 5 degrees from a vertical line and length 55. Visual Basic do that? I understand there will be some work in locating the origin of the x,y coordinate system and telling the program what 'size 1' means...
I want to move cursor with visual basic and it seems I found way how to do that. It is possible even click with Visual Basic whereever on screen. But I cannot check out where on the screen the click was done and so I want to draw two short crossing lines on that point as marker where Visual Basic clicked on screen. If it is possible to move cursor to that position and show it then it is as good as drawing marker.
I seem to have great difficulty in creating a draw pen line function whereby the user clicks a button to create a line then picks a point on the form and types in a length in a textbox, which will also become the length of the line, its self.
I have a borderless form that I'm "docking" onto the top edge of my screen. Inside of the form, I'm placing a single toolstrip control, which docks across the entire form -> (picture the taskbar to get an idea of what I'm talking about).Because the borderless form has no edge to it, I wanted to draw a black line along the bottom edg` of the form to differentiate the form from the windows or desktop behind it.
The problem that I'm facing is that`the toolstrip will not move "behind" the line when it's docked, no matter how I order the control layers.
I've tried programatically sending the control to back to no avail either.
Any ideas on how to get the line to show above the docked toolstrip?
I would like to draw a rubber band line on a form. how do I do it? what I would like to make is when I click button1 I can draw a line in a form but Im having some problems with my code. here is my code
Imports System.Drawing.Drawing2D Public Class Form1 Dim x1 As Integer Dim y1 As Integer
Based on some calculation i will get the (x,y) coordinates of the points to be plotted. I need to draw a line graph based on these points. Which is the best and easiest way to do so?
i know vb6 but i am currently trying to teach my self vb.net how to draw grid line onto a picbox ie both horizontal and vertical lines so i end up with a grid affect
I want to draw a line on an image in a picture box. How do I do? The picture box is placed as the only item in a standard form. The following doesn't work:Private Sub PictureBox1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles PictureBox1.Paint
Dim TestLine As System.Drawing.Graphics TestLine = PictureBox1.CreateGraphics Dim TestPen As New System.Drawing.Pen(System.Drawing.Color.Red) TestLine.DrawLine(TestPen, 10, 10, 50, 50) TestPen.Dispose() End Sub
The corresponding method for the paint event works fine in a panel, but the picture box doesn't seem to support it. What am I doing wrong?
Let's say i have a textbox, a button and a picturebox on my form. What I want is if I put a value on the textbox a line is drawn in the picturebox. So for every value in the textbox a line is drawn according to that value. How can I do this on VS2008.
I am currently tasked to draw angled line from one round object to another all in 2D, very much like Visio and Powerpoint. We have considered using Visio/Powerpoint dlls to speed up the project but not all of our clients have Microsoft Office installed. Moreover, we're trying to reduce the use of external dlls as much as possible.
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).
I have to draw a black line across the center of the picture from one side to the other, how do I do that. Here is the code: Dim bmp As Bitmap Dim x, y As Integer Dim pixel As Color lblLeft.Image = Image.FromFile(tbFileName.Text) bmp = Bitmap.FromFile(tbFileName.Text) ' manipulate bmp here lblRight.Image = bmp
I created a project in Excel-VBA (wich I'm also new at) that connect to a SQL. It retrieves data, puts it in arrays, calculates, writes it up nicely and mails it to a mailing list before it closes itself down. This works when Excel is stable on the server, which it is not. Therefore I'm set on rewriting it to VB.NET (just have to learn it first).Project:To build this project in VB.NET I wanted to try and make it Object Oriented (OO). I have read that OO is when I create a Sub or Module for different tasks. Are there any advantages in learning/doing this from the start? I plan on creating Subs for almost everything, and then call it from a Main sub.
Too much OO?: These are the modules I plan to create (and call) Connect to SQL moduleSet up a query and put data in arrays moduleCalculation moduleOutput