- 490
- 376 770
Dave Mikesell
Приєднався 21 лип 2014
Відео
Recording Your Screen Through Google Meet Demo
Переглядів 1924 роки тому
Recording Your Screen Through Google Meet Demo
Video Update
Переглядів 1997 років тому
It's been awhile eh? Just posting a life updating video that will consume 2:30 of your life that you will never get back. Mwuhaha.
Thank you for Supporting the Channel
Переглядів 688 років тому
Just a thank you for all of the channel support
VB Declaring a 2D Array Knowing the Size
Переглядів 2588 років тому
VB Declaring a 2D Array Knowing the Size
VB Declaring a 2D Array Knowing the Data
Переглядів 1768 років тому
VB Declaring a 2D Array Knowing the Data
VB Using 2 Loops to Cycle through Data Part 1
Переглядів 928 років тому
VB Using 2 Loops to Cycle through Data Part 1
VB Using 2 Loops to Cycle through Data Part 2
Переглядів 768 років тому
VB Using 2 Loops to Cycle through Data Part 2
VB Adding Information into the MenuStrip ComboBox
Переглядів 4878 років тому
VB Adding Information into the MenuStrip ComboBox
VB Adding a ComboBox to a Menu Strip
Переглядів 1,8 тис.8 років тому
VB Adding a ComboBox to a Menu Strip
VB Setting a ComboBox Code to Trigger When the SelectedIndex is Changed
Переглядів 1,6 тис.8 років тому
VB Setting a ComboBox Code to Trigger When the SelectedIndex is Changed
This is the best straight-to-the point tutorial I could find that solved my problem with an easy solution, thank you so much!
This is a great tutorial Dave. Thanks
thanks! I looked everywhere and at the end I found it in 9 years old video
such a great and simple tutorial thank u veery muchhhhhhhhh
Muchas gracias
Just wanted to let you know, your videos are still helping students learn java concepts 8 years later : )
THX MAN !!
thank you!
thank you this explanation really helped!
Thank you so much sir.
Clear and concise video :)
Thnx bro i love it
hi thanks for the video! I have a question, in the for loop would it be better to set i =0 instead of i=1 when finding the smallest value incase there is a 0 in the array?
probably if you're focusing on proper binary logic. This was just a random example
Thankyou..
great explanation and easy to understand
brilliant! thank you :)
Wish I seen this earlier still come back to these videos
How you been man?
@@davemikesell4788 I’ve been good! Living life like you might except! Hope you are well!
Thank you so much
This saved me on my Lab!! Thank you very much for the tutorial!!
Thank you
fantastic video, I've seen alot of forums and threads and they use complicated logic, but you my friend, have done it very simple, thank you.
how would u do the deck[i] = rank[i%13] + suit[i/13]; if it was for integers?
nice
Thank you!
Sir I'm having a problem with labels that is while writing code whenever I write label1. A long list appears containing Caption forecolor backcolor and all other properties available but now only 4 unknown properties are appearing like count item lbound ubound, However when I write forecolor spelling and writing format (foreColor) is corrected automatically but when I try to run it's not able to run saying wrong/unknown writing format. Kindly guide why this happened and what's the solution.
Thanks a lot this is so helpful!
thank you
I like that you are to the point and make these short videos!!
Your voice is similar to Khan academy
Thank you so much! even though this video is 5 years old you sir have helped me so much with this video you have no idea!! Thank you!
Thank you so much!
thenx
Thanks
thank you so much for this man
this doesn't work in vb, only in C#. sorry
Did they depreciate it out? Video is 6 or 7 years old
@@davemikesell4788 I think so
yes bro
thanks.
Heyy .. can u maybe show how i can pic one random number out of a 2D array ?
Same concept. Have the random number generator run twice using the array.length method to control the max options and then pull from that position
what if there are more than one smaller numbers
for like a median or mode project?
What is the advantage of using this kind of table? Because I don't see it as useful
More sound structure across platforms. I would have agreed till I started teaching app inventor this year
many thanks Dave
how to shuffle cards divided to 4 players for example? pls answer..
same shufftle, just deal out more
Hi brother I need gart google play 10 $ Can you give me some one
You have done something beyond praiseworthy!!!
you mean I pooped today? Thanks! :-)
@@davemikesell4788 ha ha!!God bless you 😊
Perfection👌
thanxc sir
The code: public class RayDemos { public static void main(String[] args){ String[] suit = {"S","D","C","H"}; String[] rank = {"2","3","4","5","6","7","8","9","10","J","Q","K","A"}; String[] deck = new String[52]; for (int i = 0; i < deck.length; i++){ deck[i] = rank[i%13] + suit[i/13]; } //End the loop //Shuffle the loop for (int i = 0; i< deck.length; i++){ int index = (int)(Math.random()*deck.length); String temp = deck[i]; deck[i] = deck[index]; deck[index] = temp; } //End this for loop //Print the shuffled deck for (String u: deck){ System.out.println(u); } }//End main }//End class
very useful
where is sorting i watched all the video for nothing
Started at 8:30 in the video. No code associated with sorting. Understand the frustration but don't be rude
The sorting is just a property value from a list box properties windows that you need to set from false to true
There is no such thing as a TableLayoutControl on my visual studio? Why is that?
No idea to be honest. I would Google search it's history and see if your version called it something different
Different version? Not sure
3 years too late I know, but its also referred to as the TableLayoutPanel.
but how do i find an index for maximum value if the numbers entered by user? the array value is not fixed. help!
this is covered in other videos. I parsed the lesson up
@@davemikesell4788 which video? theres many of them i dont know which one is the related one w my problem😭
@@afiqahnorza8709 Email me directly with the specifics of your problem, davemikesell72@gmail.com, and I'll try to help. It's been a few years so at this point it may be easier to do it that way.
did u get the solution @Afiqah Norza
LMFAO What? it just ended...
Yeah there were a few that didnt work out completely