@SchoolFreeware Hey thanks. Since I saw like 4 comments saying that it didn’t move (which turned out to be all by one person) and no previous complaints before that, I figured there was an update to VB that perhaps caused, or disabled something. Yes the timer was disabled.
By the way, I set my youtube to Spanish so the navigation is a little confusing, so if I just sent you the Rebeca Black "Friday" video, it was by mistake.
@lukynater1 i got it :P instead of "Me".clientrectangle, use panel to do it.. well it was actually simple but i'm lazy so i always ask first before i try to do it :P
now my problem is how to open another video after the first one finish and cycle back to the first one... i'm making a vending machine.. it should simulate a real vending machine but mine will have TV screen to advertisement :P and oh the big part is coming which is DATABASE-_-
3:24 fuck + 5!!
TheRochak123 2 weeks ago
checkout my channel for more
ulas742 3 weeks ago
I have problem with that Ovalshape, it has underline said that I have error!
staffersteward 3 months ago in playlist Visual Basic 2010 Tutorials
great!! even my balls were bouncing!!
ABCCharley 5 months ago
My ball still goes through the edges and won't come back. What do I do?
FloatingWingsorz 5 months ago
@FloatingWingsorz
you need to define the Boolean as global (outside the function)
atanakart 1 month ago
Comment removed
FloatingWingsorz 5 months ago
great tuto,good man
TheLtbiomed 6 months ago
lol i calculated the borders instead of client rectangle or something.
goeiecool9999 6 months ago
thumbs up if you challenged yourself to do this without tut and made it super complex!
goeiecool9999 6 months ago
nevermind i figured it out but mine is like flashing
ihopethisaccountwork 6 months ago
how do we make it move with out clicking it?
ihopethisaccountwork 6 months ago
Sorry You Go To Fast And Your To Confusing :(
MrGlitcher321 6 months ago
@MrGlitcher321 use the fucking pause button
kallejjk 6 months ago
oh snap is visual basic the same as microsoft visual c++
burnburn14 7 months ago
i used ur link and instlaled it but i still dont see the visual pack plz help ;-;
burnburn14 7 months ago
My ball does not move. So annoying when things don't work after following it to the T. I wonder why it doesn't work for me.
inlovewithi 7 months ago
@inlovewithi Is the timer enabled?
SchoolFreeware 7 months ago 12
@SchoolFreeware Hey thanks. Since I saw like 4 comments saying that it didn’t move (which turned out to be all by one person) and no previous complaints before that, I figured there was an update to VB that perhaps caused, or disabled something. Yes the timer was disabled.
By the way, I set my youtube to Spanish so the navigation is a little confusing, so if I just sent you the Rebeca Black "Friday" video, it was by mistake.
inlovewithi 7 months ago
@inlovewithi we need to click for it to move
ihopethisaccountwork 6 months ago
@inlovewithi make sure youre writing the code under the timer1_tick sub
thegreataustralia 6 months ago
@inlovewithi Don't forget to delete OvalShape1.Left += 5 on the first line that you have been written.
staffersteward 2 months ago in playlist Visual Basic 2010 Tutorials
damn! for me the ball just stays on the ground! IT DOESNT JUMP!
rotsebanotman 8 months ago
rocking
hitmanamit47 9 months ago
my ball does not move!!!!'
TehChaoticxShow 9 months ago
my ball does not move!!!!'
TehChaoticxShow 9 months ago
@TehChaoticxShow i can help you!
warrockhexer 9 months ago
my ball does not move!!!!
TehChaoticxShow 9 months ago
this way is tooo lonng
decus69 10 months ago
This has been flagged as spam show
hello, where did you get that IntellSence (on)? becouse in VS 2010 that tool was removed. thanks
styvasss1 11 months ago
hello, where did you get that IntellSence (on)? becouse in VS 2010 that tool was removed. thanks
styvasss1 11 months ago
where do i get shapes in visual powerpacks? in my visual studio in my toolbox the powerpacks contains only pointer and printforms
otskiexy 11 months ago
@otskiexy The PowerPack install link is in the description.
SchoolFreeware 11 months ago
why are all these videos just blank green screens to me -.-
minecraftnate 1 year ago
@minecraftnate maybe u dont have the plug ins?
darkj3am 1 year ago
@darkj3am Doesn't happen anymore.. No idea
minecraftnate 1 year ago
can you do this inside the panel box??
darkj3am 1 year ago
@darkj3am
yes, i think its possible, i will try to send u a message with a (hopefully working xD) code as soon as i can :-)
lukynater1 1 year ago
@lukynater1 i got it :P instead of "Me".clientrectangle, use panel to do it.. well it was actually simple but i'm lazy so i always ask first before i try to do it :P
darkj3am 1 year ago
now my problem is how to open another video after the first one finish and cycle back to the first one... i'm making a vending machine.. it should simulate a real vending machine but mine will have TV screen to advertisement :P and oh the big part is coming which is DATABASE-_-
darkj3am 1 year ago
can you use a panel as the rectangle??
darkj3am 1 year ago
your better than my teacher :p
darkj3am 1 year ago
Now I finally know how to animate in Visual Basic, Thanks!
TheInsetick 1 year ago
Love you!
evaldaskowka 1 year ago
Extremely helpful video. thank you so so so much!
FragOutxX 1 year ago
How does this work without enabling directx components or opengl?
Tyler11440 1 year ago
Comment removed
koforeverk2 1 year ago
Nice .. i like it
thank u
darklife1980 1 year ago
Thanks alot! this video really helped me alot!!
lets say i want to add a button to increase the velocity of the ball...how would i dot that? please post..respond etc..
shrub7777 1 year ago
erm i have figured out my own qwestion......do u know how to add a stop/play/pause buttons?
thanks in advance Shrub
@shrub7777
shrub7777 1 year ago
@shrub7777
heya,
its been awhile i coded in VB....but to pause just make a button and put timer1.stop or timer1.enabled = false
to make it play again just do timer1.start or timer1.enabled = true
to combine it in 1 button try,
if timer1.enabled = true then
timer1.enabled = false
else timer1.enabled = true
lukynater1 1 year ago
@lukynater1 how to put it back to the center? :P
darkj3am 1 year ago
@darkj3am
try making a button and put it somewhere, doesnt really matter.
and put this in the button code:
if timer1.enabled = true then
timer1.enabled = false
ovalshape1.location = (screen.width / 2, screen.height/2)
else timer1.enabled = true
this will stop the ball from moving all over the screen, and put your ball excactly in the middle.
im not sure, ive not tested it, just came up with it, havent even got VB installed ATM xD
lukynater1 1 year ago
@lukynater1 i done it before u said it but what u said is correct ^_^ it was late though but thanks.
darkj3am 1 year ago
wow
kev3k7 1 year ago