Forum: VB.NET Sep 13th, 2008 |
| Replies: 3 Views: 1,211 That's not really what i meant. I'm capturing the points on mouse up and down, and that works, but only for one line. i want to be able to keep that line on the picturebox, and draw another, using... |
Forum: VB.NET Sep 13th, 2008 |
| Replies: 3 Views: 1,211 I'm using the code
Sub PicCanvasMouseDown(sender As Object, e As MouseEventArgs)
XPrev = e.X
YPrev = e.Y
End Sub
Sub PicCanvasMouseUp(sender As Object, e As MouseEventArgs)
XCur = e.X... |
Forum: VB.NET Sep 7th, 2008 |
| Replies: 0 Views: 370 I'm having a weird problem with a MenuStrip, in which it's just white untill clicked on, when it behaves normally (Screenshot here:... |
Forum: VB.NET Sep 3rd, 2008 |
| Replies: 1 Views: 722 I'm drawing onto a PictureBox, using the code
Dim XPrev, YPrev, XCur, YCur As Integer
Private Sub picCanvas_MouseDown(ByVal sender As System.Object, ByVal e As... |
Forum: VB.NET Sep 2nd, 2008 |
| Replies: 3 Views: 917 Thanks for the help, but on the click of the button, nothing seems to happen. Here's the code...
Dim picCanvas2 As PictureBox
If picCanvas2 Is Nothing Then
picCanvas2 = New... |
Forum: VB.NET Aug 31st, 2008 |
| Replies: 3 Views: 917 I'm working on a program, in which on the click of the button a new PictureBox is declared. The problem is, that i'm checking if the PictureBox exists first, using the code
If picCanvas2 Is... |
Forum: VB.NET Aug 17th, 2008 |
| Replies: 2 Views: 3,233 Oh, right, thanks. I'll try reducing the memory used a bit. |
Forum: VB.NET Aug 16th, 2008 |
| Replies: 2 Views: 3,233 Hi! I'm writing an application in VB.NET for drawing. The problem is, that when I try to draw in freehand, it allows me to draw one thing, then when I lift my mouse and go to draw another thing, i... |