Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. Public Class frmBand
  2. Private Sub frmBand_Resize(ByVal sender As System.Object, ByVal e As System.EventArgs) _
  3. Handles MyBase.Resize
  4. Randomize()
  5. lblFavBand.Left = Me.ClientSize.Width - 166 'Label Width
  6. lblFavBand.Top = Me.ClientSize.Height - 46 'Label Height
  7. End Sub
  8. Private Sub pdxBastille_Click( sender As Object, e As EventArgs) _
  9. Handles pdxBastille.Click
  10. pdxBastille.Left = Int(Rnd() * (Me.ClientSize.Width - 159)) 'Picture Width
  11. pdxBastille.Top = Int(Rnd() * (Me.ClientSize.Height - 102)) 'Picture Height
  12. End Sub
  13. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement