Appreciate the help all the way from New Zealand .
@ProgrammingKnowledge10 жыл бұрын
@powerbackknowledge169 Жыл бұрын
This video playlist is vary use full 👍 Thanks sir 😊🤗 👍
@yaqeen99944 жыл бұрын
very good teaching style . learning a lot.
@WishsWrld5 жыл бұрын
Thank you, you just helped me pass a computing sac
@ntokozonkosi1109 Жыл бұрын
Thank you for your Amazing Tutorials
@mehakmishra33035 жыл бұрын
It was really helpful I guess for my practical but let's see what happens tomorrow...
@jeffersonphakoh96437 жыл бұрын
you are very clear I hear every good there man keep it up
@broughtyoubygel4 жыл бұрын
Thank you for tutorials and for your effort. It's higly appreciated 😊
@Milan-gq3be2 жыл бұрын
Very very thanks
@TheFeroness9 жыл бұрын
Congratulations!! Thank You My Friend!
@ramagyamasih9 жыл бұрын
thank you so much sir for help...now I know how to Begin the code.
@ahmedalawfy88488 жыл бұрын
you are the best
@thezombiesatemyhomework74129 жыл бұрын
Wonderful and decisive tutorials. Thank you kindly.
@joshuasamanga16337 жыл бұрын
thanks this is excellent....its understandable.
@AjayKumarparmar8 жыл бұрын
nice tutorial. i teach excel vba via my channel and it is pleasing to see that visual basic is so similar to excel vba. great thing..
@Vaibhaw4U5 жыл бұрын
Thanks sir and could you please make some videos upon the conditional programming in Visual Basic🙏🙏
@kaleemullah-os7vh7 жыл бұрын
wonderfull it help me alot
@kneippmichaelpinca47039 жыл бұрын
what steps can really helpful for making a program sir? and tnx sir for this video its reallymean to me and for some other beginners
@haichhorkofficial7 жыл бұрын
thank you teacher
@bridgedthuo7271 Жыл бұрын
Thankyou.
@jeffersonphakoh96437 жыл бұрын
from South Africa
@derichest95722 жыл бұрын
Nice tutorials But video very blur
@ankitsaryam91455 жыл бұрын
Thanx sir
@true41893 жыл бұрын
Visual basic and visual basic . Net are different from each other?
@raghavendranr86279 жыл бұрын
Thank you mate
@myouniverse06136 жыл бұрын
very helpful thank you!!!
@studyfever-solutions30907 жыл бұрын
thanks
@haribabukallagunta21255 жыл бұрын
Can you please send a document regarding this course
@diethermarcelo34675 жыл бұрын
If TextBox1.Text = "1" Then Label1.Text = "Message 1" Elseif TextBox1.Text = "2" Then Label1.Text = "Message 2" Else Label1.Text = "Message 3"
@vijayapaskar45737 жыл бұрын
nice man
@extrememlgbassboosts84539 жыл бұрын
May i ask, Is there a way to an array of text, and seperate them by , I need to get 2.5,5,66, into 2.5 5 66
@sivannarayanab16869 жыл бұрын
hi there is no ELSE condition in this example but you are mentioned here that the program to explain ELSE condition??
@absolutelynothing26798 жыл бұрын
+Sivannarayana B here's a code for the if then else statement for you (based on his code) if textbox1.text = "1" then label1.text = "message 1" else label1.text = "not number 1"
@neelshah84104 жыл бұрын
can else be used??
@ghunghroo18 жыл бұрын
whats the meaning of writing double IF " if.... END IF IF ....." ? plz explain.
@Kommentoli8 жыл бұрын
it's necessary cos like in c and c++ we use this symbol { to open and close a if body so the compiler can understand where it ends like wise in VB the compiler have to undrstand where we are stopping th if statemnts so it is a rule that we have to provide end if or sometimes it will automatically appear over there or else we have to type end if
@mariezaragoza75838 жыл бұрын
pepa pig
@MUHAMMADAHMAD-su7ix7 жыл бұрын
aoa sir... listen... i have some hides the labels in the toolbox so how i can fix it...
@IRONMAN-id9ne7 жыл бұрын
If Not
@onion76695 жыл бұрын
what happened lol im new if cash = 2000 then label3.text = "your house is a: cardboard box"
@asjathahamed8 жыл бұрын
there is more easy way available... and also you don't need to put again and again, easily can get output according to user input ...plz make as easy way to user... u can pass one array for an example int a; a=textbox.text; getvalue.lable1.text=a; #RifathApps
@muhammadaqib76749 жыл бұрын
hi why label is necessary to show message
@VBToolbox9 жыл бұрын
Muhammad Aqib A label is not required. You could use any control with Text property to display the message, or a message box.