Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Clueless

Members
  • Posts

    48
  • Joined

  • Last visited

    Never

Clueless's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. 79\. because it knows the difference between a newb and a noob P.S. Roobin is British?
  2. I got the picture box size to change ``` Private Sub MainPic_Change() If Form3.Height > MainPic.Height Then MainPic.Height = Form3.Height End If If Form3.Width > MainPic.Width Then Form3.Width = MainPic.Width End If End Sub ``` but now this doesn't have it's effect after the picturebox has changed it's size (it's supposed to scale picture to fit picture box but only scales to fit old picture box size). ``` Private Sub MainPic_Paint() Dim Pic As Picture MainPic.AutoRedraw = True 'Here or in Properties Window Set Pic = LoadPicture(App.Path & "\Src\My Pictures\9.bmp") MainPic.PaintPicture Pic, 0, 0, MainPic.ScaleWidth, MainPic.ScaleHeight Set MainPic.Picture = MainPic.Image End Sub ``` PS how do I change where this thread is to questions and answers?
  3. I made the Form maximized and borderless so it look full screen but I also want the commands, pictureboxes etc. to increase in size according to new form. Size any ideas?
  4. Hello ![:P](http://www.eclipseorigins.com/community/public/style_emoticons//tongue.png) DrSean?
  5. > I used to be what I am now, a noob. Describes my present, past and future ![:P](http://www.eclipseorigins.com/community/public/style_emoticons//tongue.png)
  6. Clueless

    Delete pls

    I mean if the target moves. Will the projectile change course? Or move until it hit something/reached range
  7. Clueless

    Spawn

    Here's a tut to change spawn point from class.ini [http://www.touchofdeathforums.com/community/index.php?/topic/123200-set-spawn-from-classini/](http://www.touchofdeathforums.com/community/index.php?/topic/123200-set-spawn-from-classini/)
×
×
  • Create New...