- Home
·
- Graphics
·
- Writing Text inside the Picture Box Control
Writing Text inside the Picture Box Control
Writing Text inside the Picture Box Control
Rate Writing Text inside the Picture Box Control
(2(2 Vote))
'Writing Text:
'Open a standard exe form
'Place a Picture Box Control over the form
'Type the code given below
Private sub Form_Load()
Dim i as Integer
Picture1.AutoRedraw=True
For i=0 to 10
Picture1.Print i
Next i
End Sub
'Run the application and you see the counting upto 10 inside the picture box control
Writing Text inside the Picture Box Control Comments
No comments yet — be the first to post one!
Post a Comment