Page 2 of 2 FirstFirst 12
Results 16 to 19 of 19
  1. #16
    Nexero's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    My VB Project
    Posts
    2,530
    Reputation
    90
    Thanks
    4,801
    My Mood
    Bored
    Thanks, that was very useful thread...
    Added to my projects list

  2. #17
    ~Syphox's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    The Third Reich
    Posts
    1,307
    Reputation
    337
    Thanks
    344
    My Mood
    Angelic
    Quote Originally Posted by ^_~DeM0N~_^ View Post
    Thanks, that was very useful thread...
    Added to my projects list
    Thanks for the feedback!
    ~Syphox

  3. #18
    BillZoom's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    simply and awesome, cool.

  4. #19
    abuckau907's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    other side of the wire
    Posts
    1,342
    Reputation
    162
    Thanks
    239
    My Mood
    Cold
    [Timer1 code]

    Code:
            Me.Width = Me.Width + 3
            If Me.Width = 600 Then
                Timer1.Stop()
                Me.Width = 600 '' this was proven True 2 lines above. Sanity check? .Width already proven to be 600.
            End If
            If Me.Width > 600 Then
                Me.Width = 600
                '' why isn't timer stopped here also? Will happen on next iteration, but why.
            End If
    Could be
    Code:
    If Me.Width >= 600 Then '' Greater will only occur if for some reason the form's size was initially not set to a multiple of three (which 38 is not: so the below IF should be getting executed?).  Or the +3 or 600 constants get changed.
    Timer1.Enabled = False
    Me.Width = 600 '' just in case it was slightly larger than 600. see above comment.
    End If
    Thanks for the tut.
    Last edited by abuckau907; 08-01-2013 at 01:30 AM.
    'Some things that can be counted, don't matter. And some things that matter, can't be counted' - A.E.
    --
     

    My posts have some inaccuracies/are wrong/wrong keyword(s) used.
    They're (maybe) pretty close, and I hope they helped you, not created confusion. Take with grain of salt.

    -if you give rep, please leave a comment, else it means less.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Top 3 Anime Songs
    By arunforce in forum Anime
    Replies: 11
    Last Post: 08-12-2010, 01:59 AM
  2. Basic Animation
    By Chronologix in forum Tutorials
    Replies: 29
    Last Post: 09-15-2008, 09:05 AM
  3. Screwed Up anime
    By Chronologix in forum Anime
    Replies: 15
    Last Post: 02-08-2006, 10:17 AM
  4. Warrock Korea Screenshots
    By Paolo1993 in forum WarRock - International Hacks
    Replies: 11
    Last Post: 01-13-2006, 10:10 PM