Private Sub Form_Paint() Dim X As Integer, Y As Integer Dim ImgWidth As Integer Dim ImgHeight As Integer Dim FrmWidth As Integer Dim FrmHeight As Integer ImgWidth = Image1.Width ImgHeight = Image1.Height FrmWidth = Form1.Width FrmHeight = Form1.Height For X = 0 To FrmWidth Step ImgWidth For Y = 0 To FrmHeight Step ImgHeight PaintPicture Image1, X, Y Next Y Next X End Sub
Latest Posts
Related Stories
.NET
Handling Exceptions in .NET
A developer's worst enemy is an exception. Trust me; I know. They can sneak up on you and wreak havoc for an entire day....
.NET
Machine Learning in .NET
The rise of the machines has been foretold for many a year on the big screen, in books, and in folklore. Movies such as...
Open Source
Making Pull Requests in GitHub
Why Contribute to GitHub?
GitHub is an online repository hosting service where you can host your own projects, and contribute to projects created by other...