Visual Basic .NET Tutorial 3 - Using If then Else Statements in Visual Basic

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ม.ค. 2025

ความคิดเห็น • 52

  • @zachariahhazel8102
    @zachariahhazel8102 9 ปีที่แล้ว +7

    Appreciate the help all the way from New Zealand .

  • @powerbackknowledge169
    @powerbackknowledge169 2 ปีที่แล้ว +1

    This video playlist is vary use full 👍
    Thanks sir 😊🤗 👍

  • @WishsWrld
    @WishsWrld 5 ปีที่แล้ว +1

    Thank you, you just helped me pass a computing sac

  • @broughtyoubygel
    @broughtyoubygel 5 ปีที่แล้ว +1

    Thank you for tutorials and for your effort. It's higly appreciated 😊

  • @mehakmishra3303
    @mehakmishra3303 5 ปีที่แล้ว +1

    It was really helpful I guess for my practical but let's see what happens tomorrow...

  • @yaqeen9994
    @yaqeen9994 4 ปีที่แล้ว

    very good teaching style . learning a lot.

  • @jeffersonphakoh9643
    @jeffersonphakoh9643 7 ปีที่แล้ว

    you are very clear I hear every good there man keep it up

  • @ntokozonkosi1109
    @ntokozonkosi1109 2 ปีที่แล้ว

    Thank you for your Amazing Tutorials

  • @Vaibhaw4U
    @Vaibhaw4U 6 ปีที่แล้ว +2

    Thanks sir and could you please make some videos upon the conditional programming in Visual Basic🙏🙏

  • @TheFeroness
    @TheFeroness 9 ปีที่แล้ว +1

    Congratulations!! Thank You My Friend!

  • @AjayKumarparmar
    @AjayKumarparmar 8 ปีที่แล้ว

    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..

  • @thezombiesatemyhomework7412
    @thezombiesatemyhomework7412 10 ปีที่แล้ว +1

    Wonderful and decisive tutorials. Thank you kindly.

  • @ramagyamasih
    @ramagyamasih 10 ปีที่แล้ว

    thank you so much sir for help...now I know how to Begin the code.

  • @ProgrammingKnowledge
    @ProgrammingKnowledge  11 ปีที่แล้ว +1

  • @joshuasamanga1633
    @joshuasamanga1633 7 ปีที่แล้ว +1

    thanks this is excellent....its understandable.

  • @ahmedalawfy8848
    @ahmedalawfy8848 8 ปีที่แล้ว +2

    you are the best

  • @Milan-gq3be
    @Milan-gq3be 3 ปีที่แล้ว +1

    Very very thanks

  • @kaleemullah-os7vh
    @kaleemullah-os7vh 7 ปีที่แล้ว

    wonderfull it help me alot

  • @myouniverse0613
    @myouniverse0613 7 ปีที่แล้ว

    very helpful thank you!!!

  • @extrememlgbassboosts8453
    @extrememlgbassboosts8453 9 ปีที่แล้ว

    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

  • @kneippmichaelpinca4703
    @kneippmichaelpinca4703 9 ปีที่แล้ว

    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

  • @maintpointofficial
    @maintpointofficial 7 ปีที่แล้ว

    thank you teacher

  • @raghavendranr8627
    @raghavendranr8627 9 ปีที่แล้ว

    Thank you mate

  • @bridgedthuo7271
    @bridgedthuo7271 ปีที่แล้ว

    Thankyou.

  • @MUHAMMADAHMAD-su7ix
    @MUHAMMADAHMAD-su7ix 7 ปีที่แล้ว

    aoa sir... listen...
    i have some hides the labels in the toolbox so how i can fix it...

  • @vijayapaskar4573
    @vijayapaskar4573 7 ปีที่แล้ว

    nice man

  • @jeffersonphakoh9643
    @jeffersonphakoh9643 7 ปีที่แล้ว

    from South Africa

  • @sivannarayanab1686
    @sivannarayanab1686 9 ปีที่แล้ว

    hi
    there is no ELSE condition in this example
    but you are mentioned here that the program to explain ELSE condition??

    • @absolutelynothing2679
      @absolutelynothing2679 8 ปีที่แล้ว

      +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"

  • @ankitsaryam9145
    @ankitsaryam9145 5 ปีที่แล้ว

    Thanx sir

  • @true4189
    @true4189 4 ปีที่แล้ว

    Visual basic and visual basic . Net are different from each other?

  • @haribabukallagunta2125
    @haribabukallagunta2125 5 ปีที่แล้ว

    Can you please send a document regarding this course

  • @studyfever-solutions3090
    @studyfever-solutions3090 7 ปีที่แล้ว

    thanks

  • @neelshah8410
    @neelshah8410 4 ปีที่แล้ว

    can else be used??

  • @miguelitossss199
    @miguelitossss199 5 ปีที่แล้ว

    If TextBox1.Text = "1" Then Label1.Text = "Message 1" Elseif TextBox1.Text = "2" Then Label1.Text = "Message 2" Else Label1.Text = "Message 3"

  • @ghunghroo1
    @ghunghroo1 8 ปีที่แล้ว

    whats the meaning of writing double IF
    " if....
    END IF
    IF ....." ?
    plz explain.

    • @Kommentoli
      @Kommentoli 8 ปีที่แล้ว

      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

    • @mariezaragoza7583
      @mariezaragoza7583 8 ปีที่แล้ว

      pepa pig

  • @derichest9572
    @derichest9572 2 ปีที่แล้ว

    Nice tutorials
    But video very blur

    • @Stucksess
      @Stucksess 2 หลายเดือนก่อน

      na u trippy its not blur

  • @muhammadaqib7674
    @muhammadaqib7674 10 ปีที่แล้ว

    hi
    why label is necessary to show message

    • @VBToolbox
      @VBToolbox 9 ปีที่แล้ว +1

      Muhammad Aqib A label is not required. You could use any control with Text property to display the message, or a message box.

  • @asjathahamed
    @asjathahamed 9 ปีที่แล้ว

    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

  • @onion7669
    @onion7669 5 ปีที่แล้ว

    what happened lol im new
    if cash = 2000 then
    label3.text = "your house is a: cardboard box"

  • @TheSkyGamez
    @TheSkyGamez 5 ปีที่แล้ว

    doesnt work

  • @IRONMAN-id9ne
    @IRONMAN-id9ne 7 ปีที่แล้ว

    If Not

  • @bright_thought
    @bright_thought 7 ปีที่แล้ว

    Sir plz help me

  • @ninaramirez5472
    @ninaramirez5472 7 ปีที่แล้ว

    very helpful!!! thank you