Draw A Direct 3D Line In VB?
Sep 14, 2009How would I draw a Direct 3D Line in VB?
View 1 RepliesHow would I draw a Direct 3D Line in VB?
View 1 RepliesHow do I direct help from MS support on line?
View 1 RepliesI 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 RepliesI 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 RepliesI 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.
View 4 RepliesFor 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.
View 14 RepliesSurely its possible to draw a line in Visual Studio without writing a dozen lines of code?
Is there a drawing toolbox that's hiding from me?
How come this doesn't work...
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 am building a basic program for kg students,,I have a form with two sets of picture, 5 pictures at left and 5 pictures at right
names of pictures at left are
picEyeLeft
PicListenLeft
PicNoseLeft
PicHandLeft
[Code].....
How can I do the same thing with other shaped like rectangle?
I know that I need x,y,widht,height but it still don't do my rec.
in vb.net i would like to draw a regular line on a form. is there a control to do this?
View 2 RepliesI 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...
View 4 RepliesI'm new to Visual Studio.Net. Having trouble learning how to draw a simple line on a Windows Form.
View 4 RepliesI have a button with flat appearance and with border size=0.I want to draw lines on the top of the button, but it doesn't work. Why?
Public Class gomb
Inherits Windows.Forms.Button
Const hatterszin = 11395569
Const vonalszin = 5924448
Dim pen As Pen
[Code]...
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.
View 4 RepliesI 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.
View 1 RepliesI 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?
in this class I try to draw a line under the 'cimke' label. But it doesn't draw the line.
[Code]...
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
[code]....
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?
View 2 Repliesi 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
View 1 RepliesI 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.
View 1 RepliesI need to draw a line grid on a windows form that contains 4 rows and 4 columns.
View 2 RepliesHow would I draw a line over a Picture Box using the Paint event? I can draw the lines but they are drawn under the Picture Boxes.
View 6 RepliesI 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.
[Code]...
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 RepliesI 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
[code]....