TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Warren
NA
2
2.7k
Graphics Problem vb2010 express
Aug 31 2013 12:12 PM
I am trying to learn how to draw/shape in vb2010. The first code example is from a book, "VB2010 Step by Step". The second and third are from MSDN.
Public Class Form1
Dim GraphicsFun As Graphics
Dim PenColor As New Pen(Color.Red)
GraphicsFun = Me.CreateGraphics
GraphicsFun.DrawLine(PenColor,20,30,100,80)
Dim pen As New Pen(Color.FromArgb(255, 0, 0, 0))
e.Graphics.DrawLine(pen, 20, 10, 300, 100)
Private Sub DrawRectangle()
Dim myPen As New System.Drawing.Pen(System.Drawing.Color.Red)
Dim formGraphics As System.Drawing.Graphics
formGraphics = Me.CreateGraphics()
formGraphics.DrawRectangle(myPen, New Rectangle(0, 0, 200, 300))
myPen.Dispose()
formGraphics.Dispose()
End Sub
End Class
In the first two errors are "Declaration expected", GraphicsFun and e respectively.
On the third bit of code runs but I thought I would get a rectangle. I get a Blank form
Questions:
1. What am i missing, doing wrong?
2. what does "e" stand for?
3. Why do I get a blank form?
Reply
Answers (
1
)
Show details of page on mouse over on Reapeater paging
how to return more than one value in function