Advertisement
julioCCs

GTAScripthookMenuSample

Mar 15th, 2015
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.50 KB | None | 0 0
  1. Private mainForm As GTA.Forms.Form
  2.     Private particleLists As GTA.Forms.Listbox
  3. ...
  4. mainForm = New GTA.Forms.Form
  5.         mainForm.Text = "PTFX demo"
  6.         mainForm.StartPosition = GTA.FormStartPosition.CenterScreen
  7.  
  8.         particleLists = New GTA.Forms.Listbox()
  9.         particleLists.Parent = mainForm
  10.         particleLists.Location = New Drawing.Point(15, 15)
  11.         particleLists.Width = 300
  12.         particleLists.Height = mainForm.Height - 55
  13. ...
  14. mainForm.Show()
  15. ...
  16. mainForm.Close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement