Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~610 People Reached
Favorite Forums
Favorite Tags
Member Avatar for Anticipation

I'm using the code [code=VB.NET] 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 YCur = e.Y End Sub Sub PicCanvasPaint(sender As Object, e As PaintEventArgs) Dim p As New Pen(Color.Black, 10) Dim g …

Member Avatar for selvaganapathy
0
203
Member Avatar for Anticipation

I'm having a weird problem with a MenuStrip, in which it's just white untill clicked on, when it behaves normally (Screenshot here: [URL="http://i312.photobucket.com/albums/ll353/anticipation33/WeridMenuStrip.png"]http://i312.photobucket.com/albums/ll353/anticipation33/WeridMenuStrip.png[/URL]) It's never happened to me before, and it just started happening by it self, after no changes. Any help would be appreciated, thanks.

0
58
Member Avatar for Anticipation

I'm drawing onto a PictureBox, using the code [code=VB.NET] Dim XPrev, YPrev, XCur, YCur As Integer Private Sub picCanvas_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles picCanvas.MouseDown 'Setting the previous points for line drawing XPrev = e.X YPrev = e.Y End Sub Private Sub picCanvas_MouseUp(ByVal sender As System.Object, ByVal …

Member Avatar for Teme64
0
113
Member Avatar for Anticipation

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 [code=VB.NET] If picCanvas2 Is Nothing Then Dim picCanvas2 As New PictureBox AddHandler picCanvas2.MouseDown, AddressOf picCanvas2_MouseDown Else End If …

Member Avatar for Teme64
0
96
Member Avatar for Anticipation

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 get an Out of Memory Exception. Any help would really …

Member Avatar for Anticipation
0
140