Obviously, someone being awake for more than 24 hours (at least..) then making an informative and instructional video for anyone to view at anytime and for free isn't quite good enough for 2 people.
You would have to create many "Group Boxes" your "Project" would be huge, you screen uncontrollable, have to reset all variables....so on and so forth. Are you that lazy?
i am trying to Design and implement a program to store details about members in the fitness club, i am a beginner if anybody knows how to help please inbox me
Rather than creating a new project for each new concept I'm exploring, I prefer to have one test project with a general module containing functions exploring different programming themes. I can then call these functions from the immediate window.This means I don't even have to leave design mode.
I want to use the timer to call an array to change a label text. I don't know what to type for the timer. Does it need to be and if statement with Timer.Interval = 1000? Or what?
@ckd04 Here mate what you do is declare the time as a integer outside the events eg dim tmr as integer Next what you do is set tmr = 0 in the form load. Now open up a Event Click for what ever you called your timer. Inside that event put tmr = tmr + 1 Now everytime your time interval hits 1000 tmr will go up by 1, So put a if statement inside tht event If tmr = 1 then lblExample.show ElseIf trm = 2 lblExample2.show ElseIf trm = 3 Application.Exit And so on That is at least the timer part
i need to make a programme were a user types in some names and then the programme out puts the typed in names but in alphabetical order please help!!!
Well i suggest to add a mini add on tutorial on this, that shows two dimentional or even multi dimentional arrays. It would be useful for many students out there.
guys... if im an expert in one advanced programming language, and i want to learn another new language, will it be like learning a new language (such as English speaker learning German (same family)) or it would be more like learning the slangs of the same language (US english and GB English slangs are different, but the language is the same)
Notice the "if" condition.. xD.. im not an expert, yet.
good video, but I needed to know something that wasn't covered. I have an array of objects (picture boxes) and I am trying to reference the array for collision detection on all of the picture boxes so that I don't have to go through all of them and state collision restrictions separately, how would I go about this?
I am working on a number occurrences project. I need to be able to show how many times each number occurs in the array when a user types a bunch of numbers in, but now I am stuck on being able to show the amount of each number that the user types into the textbox. Help please!
I need to know how can I pass data readed (using StreamReader) from a file to an array. I will be using that data to calculate the tax amount of a user. I have 2 arrays; 1 called strFields() to get each data readed, and another one called infoTax() to do the process of cal.
i have an [Object reference not set to an instance of an object] problem
here is my code in the form: Dim testarray() As String Private Sub Button1_Click(etc) For i = 0 To 5 testarray(i) = "HELLO NUMBER " & i MessageBox.Show(testarray(i)) Next End Sub
Hi there, first of all I want to say a BIG thank you for uploading your tutorials here in youtube. It's really a big help for a beginner like me. BTW, i just want to kindly ask if it is possible for an array to have two values? For example if i press Button2 twice, it will give me a value of "b" instead of "a". TIA
Is there any material on how to add a textbox value to an array? I want to add 20 different words to a string array using a textbox for entry. Ive tried looping through but wont work......
Write an Anagram Game that contains an array of 20 pre-set words. The game randomly selects a word and scrambles its letters. A Label displays the scrambled word for the user to guess. If the user guesses correctly, the game should display an indicator message as either a correct or a wrong answer. A new word would be selected if the guess is correct. Otherwise display a message and let the user try again up to 3 attempts.
Bonjour,La Team pro recrute Programmeur 2D Gmk , Grafiste(Pour crée des MAP) et des programmeurs en VB.Net Pour crée le Setup et tout l'introduction Pour crée Un jeu MMORPG du style dofus On fais sa pour le plaisir sa ve dire que on le vendras pas mais on pourrait faire Comme dofus ( Avantage pour les abonnés ) Notre Furum que vous trouverez dans la description d'une de mes video Rejoignez nous vite Cordialement Philippro
Bonjour,La Team pro recrute Programmeur 2D Gmk , Grafiste(Pour crée des MAP) et des programmeurs en VB.Net Pour crée le Setup et tout l'introduction Pour crée Un jeu MMORPG du style dofus On fais sa pour le plaisir sa ve dire que on le vendras pas mais on pourrait faire Comme dofus ( Avantage pour les abonnés ) Notre Furum que vous trouverez dans la description d'une de mes video Rejoignez nous vite Cordialement Philippro
thanks for this tutorial.....i am just wondering if you could help me find out how to make it in reverse output!? i mean....when the user entered the message..the message box will display it in reverse? i am just new in using vb2010 so i don't have any clue....hehe thanks!
I'm working on a hangman program right now and this video was a good refresher. =) Unfortunately I'm working in VBA and there aren't any arrays in this language =(
I want to design the program to lookup the state name in abbreviation or full name to search. there are 58 record . For example: I want to search AL , the result can find the Alabama, I would like to know how to do that. Can you post such demo to let me know. Thank very much
Obviously, someone being awake for more than 24 hours (at least..) then making an informative and instructional video for anyone to view at anytime and for free isn't quite good enough for 2 people.
Thomaxonal 3 days ago
Hey, does the For Next loop automatically increment by one per loop because you're specifying it to go from 0 to the length of the array?
Would there be a way to make it increment by 2 or a number other than one? In particular if the array was bigger than 5 elements long!
Thomaxonal 3 days ago
I know VB has capability of 2 DIMensional arrays, possible 3 Dim (like a cube).
Is there any app or idea for 4 or 5 Dim Arrays?
SuaveProspect 1 week ago
To cybersphere:
You would have to create many "Group Boxes" your "Project" would be huge, you screen uncontrollable, have to reset all variables....so on and so forth. Are you that lazy?
SuaveProspect 1 week ago
i am trying to Design and implement a program to store details about members in the fitness club, i am a beginner if anybody knows how to help please inbox me
35psm 1 week ago
how pro you can also do
Msgbox
msgbox
msgbox..
I dont see a difference lmfao..
Samox70 1 week ago
how do you use a loop to load the data into the array (using InputBox function) and another loop to output it to a listbox?
xXNdeUrfeXx 1 week ago
@xXNdeUrfeXx
From experience from other languages i'd imagine something like
arrayname = arrayname + string
Stevoid1990 1 week ago
This has been flagged as spam show
Im making Skyrim in VB2010. A video is on my channel. Check it out!
BDpartnercoJM 2 weeks ago
español please ..!
MsJunior511 2 weeks ago
Rather than creating a new project for each new concept I'm exploring, I prefer to have one test project with a general module containing functions exploring different programming themes. I can then call these functions from the immediate window.This means I don't even have to leave design mode.
cybersphere 3 weeks ago
I love your ascent dude...
acerjojo12 1 month ago
your voice not clear bro...
sopi351 2 months ago
@sopi351 your just deaf
owoxon 1 month ago
@owoxon u better learn English firstly and do the tutorials.u sounds like a ponzi
sopi351 1 month ago
@sopi351 shut the fuck up and get back in your hole before your uncle gets home.
FactoryModz 1 month ago
How would you make it search for certain arrays, and edit those arrays, of different programs
john55223 2 months ago
Thank You for the tutorials ,can you please do tutorial about shared memory in vb 2010,
like store a string in the memory and call this string usening another aplication
you cool thanks
Dave
david2020able 3 months ago
This has been flagged as spam show
Hi! Could you guys please check out my channel? I will do a giveaway when I reach 100 subscribers! Thanks!
hackster2011 3 months ago
I want to use the timer to call an array to change a label text. I don't know what to type for the timer. Does it need to be and if statement with Timer.Interval = 1000? Or what?
Anyone?
ckd04 3 months ago
chrisxbox3 3 months ago
Lol at first I thought that this was a tutorial for making 35 arrays. :P
Great tutorial by the way.
MrVBMagic 3 months ago
What arrays can be useful for?i don t understand.
Kingruler21 4 months ago
@Kingruler21
Storing bunch of data, for example storing a list of number. Or store data from a .txt file (line by line)
Lacihun1 3 months ago
Comment removed
softpctips 4 months ago
i need to make a programme were a user types in some names and then the programme out puts the typed in names but in alphabetical order please help!!!
nathanm95 4 months ago
@nathanm95
Array.Sort(arrayname)
fytr4lyf1 3 months ago
Comment removed
decus69 4 months ago
is it same as
for i = 0 to i = 4
MessageBox.Show(tvshows(i))
i = i + 1
Next
boxingcarracer 4 months ago
@boxingcarracer Yes but in a for loop, you don't need to add the "i=i+1" part, that's the point in a for loop, unless you're trying to count by twos
TheAgentbrady101 4 months ago
@TheAgentbrady101 thank you sir. ..
boxingcarracer 4 months ago
@boxingcarracer Sounded sarcastic, wasn't being a smartass, just wanted to help...
TheAgentbrady101 4 months ago
Comment removed
boxingcarracer 4 months ago
thanks you
you very good
1111kalo 6 months ago
All is cartoons xD
lazicdusan9 6 months ago
@lazicdusan9 only supernatural is movie
lazicdusan9 6 months ago
@lazicdusan9 aha no
rb7brady 3 months ago
Well i suggest to add a mini add on tutorial on this, that shows two dimentional or even multi dimentional arrays. It would be useful for many students out there.
ShadowDreadblade 6 months ago
Comment removed
softpctips 4 months ago
Great tutorial But you didn't really explain a real world case where arrays would be useful.
ibenny100 7 months ago
Very Nice....It helps me a lot...
kanchangupta19 7 months ago
Can you make a sub that is byref so other subs can access a string of numbers. Everytime i try, it puts a squiggly under the number. Can anyone help?
dominiquevaldes 8 months ago
Thanks!
gala232 8 months ago
guys... if im an expert in one advanced programming language, and i want to learn another new language, will it be like learning a new language (such as English speaker learning German (same family)) or it would be more like learning the slangs of the same language (US english and GB English slangs are different, but the language is the same)
Notice the "if" condition.. xD.. im not an expert, yet.
DrKillaser 8 months ago
When I do the for loop it just says family guy for all five.
aintisaword 8 months ago
Brilliant as usual,Thanks so much !
jetpaq 8 months ago
Hey man. Can you set a time on arrays with out a timer?
Olemassacre 10 months ago
Thank you for this tutorial :D your channel is useful!!
beckham7england4ever 10 months ago
Cant you just put
Dim tvshows() as string
So then it will hav unlimited values????
CrisIsRatedX 10 months ago
@CrisIsRatedX Why would you do that? When you have all the values you want, count them and then enter the value in the array.
Olemassacre 9 months ago
Lisp
Zolga00 11 months ago
Do you have a tutorial for select case statements?
makoto114 11 months ago
Does anyone know how to write a function in VB that returns the smallest value in an array of integers?? really annoying me
liamick2006 11 months ago
hey do you think they make visual studios for mac??
elijahhezekiah1 11 months ago
@elijahhezekiah1 no because Visual Studios is a Microsoft program and Apple uses a different coding language that wont work with vs
CrisIsRatedX 10 months ago
@elijahhezekiah1
Try Java instead of VB.NET it's platform independent. ;)
Lacihun1 10 months ago
Comment removed
linkinl1 11 months ago
can anyone help me with how to introduce a mathematical function to my form
mhkhattab 11 months ago
And all nighter? Why?
GriffinWiebel 1 year ago
sorry my mistake
kkorovesis 1 year ago
i dont know why but the programm need to declare the i first
so i Dim i as integer an the it works
kkorovesis 1 year ago
good video, but I needed to know something that wasn't covered. I have an array of objects (picture boxes) and I am trying to reference the array for collision detection on all of the picture boxes so that I don't have to go through all of them and state collision restrictions separately, how would I go about this?
WhiteLightflame 1 year ago
thanxxxxxxxxxx
great lesson , u explained it better than the teacher at the uni. loooool
all the best.
Makaveliz1 1 year ago
You were good,next time get some sleep :D
moustafa0122585186 1 year ago
como meto un valor de un textbox a un arreglo
leproso49 1 year ago
This has been flagged as spam show
thanks but i want to ask if there is another way to post up an array of number
and how we can let the users fill it
hasnaeighrach 1 year ago
thanks but i want to ask if there is another way to post up a table of number
and how we can let the users fill it
hasnaeighrach 1 year ago
I am working on a number occurrences project. I need to be able to show how many times each number occurs in the array when a user types a bunch of numbers in, but now I am stuck on being able to show the amount of each number that the user types into the textbox. Help please!
chigozie123 1 year ago
Hi..
I need to know how can I pass data readed (using StreamReader) from a file to an array. I will be using that data to calculate the tax amount of a user. I have 2 arrays; 1 called strFields() to get each data readed, and another one called infoTax() to do the process of cal.
thank you.
crazy13d2000 1 year ago
i have an [Object reference not set to an instance of an object] problem
here is my code in the form: Dim testarray() As String Private Sub Button1_Click(etc) For i = 0 To 5 testarray(i) = "HELLO NUMBER " & i MessageBox.Show(testarray(i)) Next End Sub
and it throws the error at the top, why is that
suupertramp 1 year ago
why do you use "MessageBox.Show()" when you can just type "MsgBox()"
xtan1001 1 year ago
@xtan1001 for me it only works when i type MsgBox(), i dont know why
motster246 1 year ago
Someone's a fan of animation domination!
slingshooter08 1 year ago
thank you so much, this video is a big help to me, because i am just a beginner, and i want to learn more, thanks for sharing
cindsheil 1 year ago
Can you make a memory game tutorial? I would love making such a game, that's one of my favorite games.
upperkatt 1 year ago
very helpful thanks
esmatulah 1 year ago
Hi there, first of all I want to say a BIG thank you for uploading your tutorials here in youtube. It's really a big help for a beginner like me. BTW, i just want to kindly ask if it is possible for an array to have two values? For example if i press Button2 twice, it will give me a value of "b" instead of "a". TIA
twakskawt 1 year ago
First thanks for the VB.net help, very good!
Is there any material on how to add a textbox value to an array? I want to add 20 different words to a string array using a textbox for entry. Ive tried looping through but wont work......
Many thanks
ashleydooder 1 year ago
Write an Anagram Game that contains an array of 20 pre-set words. The game randomly selects a word and scrambles its letters. A Label displays the scrambled word for the user to guess. If the user guesses correctly, the game should display an indicator message as either a correct or a wrong answer. A new word would be selected if the guess is correct. Otherwise display a message and let the user try again up to 3 attempts.
KHODAIE 1 year ago
with less code:
Dim tvshows() as String = {"south park", "family guy", "american dad", "the simpsons", "supernatural"}
lullabynasdaq 1 year ago
you make a better a better professor than mine
sniperboy102 1 year ago
trying to manipulate images for a layout using an array but no matter how big the array defines only 2 images display.
Form has image defined pbNTaken. the idear is to create an array and copy this image into each element then display elemats as needed.
Problem is it only displays one image ( last image coppied into array.
Can you help?
TheWorldswonder 1 year ago
This has been flagged as spam show
I have a question about using these arrays.
I created an array:
Dim MyArray (1 to 30)
'each part of the array is populated by a text box "
MyArray(1) = txtdespdate.Text
'etc for all the instances to MyArray(30).
My question is how would I get that array to populate the next blank row of an Excel template I have created?
malachasmic 1 year ago
@malachasmic I forgot to mention that the coding is located in a command button called btnSaveBooking
malachasmic 1 year ago
Comment removed
malachasmic 1 year ago
thanks for the video, how about parrallel arrays,
bjvirk 1 year ago
or maybe for a cooler way
dim random as new random
dim numbers as integer
dim array(19) as integer
dim i as integer
for i = 0 to array.length - 1
numbers = random.next(0,101)
array(i) = numbers
next
this will fill in random numbers between 0 and 100 till the last array index
marcky89869 1 year ago
hint: If you want to full and array with number without having to code the whole thing. look at this example.
dim array(20) as integer
dim i as integer
for i = 0 to array.length - 1
array(i) = i
next
this will fill in each array index the value of i ;) So you dont have to do it like so:
array(0) = 0
array(1) = 1
...etc
marcky89869 1 year ago
@marcky89869 full an*
marcky89869 1 year ago
You really need a pop filter..
UberFair 1 year ago
Are there any 2 dimensional array tutorials i am having trouble grasping the concept of how to put this too use? Nice tutorial by the way
sli2305 1 year ago
This has been flagged as spam show
Bonjour,La Team pro recrute Programmeur 2D Gmk , Grafiste(Pour crée des MAP) et des programmeurs en VB.Net Pour crée le Setup et tout l'introduction Pour crée Un jeu MMORPG du style dofus On fais sa pour le plaisir sa ve dire que on le vendras pas mais on pourrait faire Comme dofus ( Avantage pour les abonnés ) Notre Furum que vous trouverez dans la description d'une de mes video Rejoignez nous vite Cordialement Philippro
PhilipproOfficial 1 year ago
This has been flagged as spam show
Bonjour,La Team pro recrute Programmeur 2D Gmk , Grafiste(Pour crée des MAP) et des programmeurs en VB.Net Pour crée le Setup et tout l'introduction Pour crée Un jeu MMORPG du style dofus On fais sa pour le plaisir sa ve dire que on le vendras pas mais on pourrait faire Comme dofus ( Avantage pour les abonnés ) Notre Furum que vous trouverez dans la description d'une de mes video Rejoignez nous vite Cordialement Philippro
PhilipproOfficial 1 year ago
please tell me where can i download free visual basic.. please!!!!!!! send me message.
jhepzz18 1 year ago
@jhepzz18 Look up the Express Edition. It's on the site.
guardian1691 1 year ago
thanks for the tutorial...really help us a lot...keep up the good work...
even u are tired, u still make those tutorial...nice man...thanks you sooo much!!!
LosTecH88 1 year ago
this has been good tutorial but i need to list these kinds of names like
0 = alda
1 = aaa
2 = asd
So can u help!!!!!!
hellruler1 1 year ago
good tutorial its awesome, thank you for making it simple good job.
WATAZU0 1 year ago
gr8 vids m8
SilverCockel 1 year ago
thanks for this tutorial.....i am just wondering if you could help me find out how to make it in reverse output!? i mean....when the user entered the message..the message box will display it in reverse? i am just new in using vb2010 so i don't have any clue....hehe thanks!
akosimong23 1 year ago
I'm working on a hangman program right now and this video was a good refresher. =) Unfortunately I'm working in VBA and there aren't any arrays in this language =(
DrLasker1 1 year ago
i watch all them tv shows :D
Bolandx 1 year ago
nice, simple undarstanding..... :))
selvedindurakovic 1 year ago
Great tutorial!
catlynnr 1 year ago
The way you say "Sub" is awesome.
ReviiExplains 1 year ago
what is the next value use to?
gandalf3451 1 year ago
Thank you for your tutorials!
mmiller6153 1 year ago
I want to design the program to lookup the state name in abbreviation or full name to search. there are 58 record . For example: I want to search AL , the result can find the Alabama, I would like to know how to do that. Can you post such demo to let me know. Thank very much
SHARK224 1 year ago
Thanks!
123dool 1 year ago
Suggestion : Please speak louder in each tutorial. Thank you
pressure7 2 years ago
Damnit,I didn't get it!
iv'e come this far,got every except byref by val and this, i understand functions and subs and everything else.
Damn im DUMB!
WhiteJem 2 years ago
The first four are my fave shows xD
lewisfroom 2 years ago
Ohh i forgot to say : Great tutorial xD
lewisfroom 2 years ago
Comment removed
lewisfroom 2 years ago