Check which number is bigger within a function call - vb.net












0














Say I'm using this piece of code



With TextBox
.Size = New Windows.Size(InsideRadius)
End With


I want to choose within the function call which size to use dependent on which is the biggest, If Inside Radius is the biggest then choose that, but if a number such as say 20 is bigger then pick that, all within the call.



So something like this



With TextBox
.Size = New Windows.Size(If (InsideRadius >= 20) Then InsideRadius Else 20 End If)
End With


but I'm unsure how to do this within vb.net, I'm sure it is possible but after some searching I think I'm not typing in the correct question to get what I am looking for. Hope you understand, thanks










share|improve this question






















  • Is InsideRadius a Size? It should be. Are you wanting width or height? docs.microsoft.com/en-us/dotnet/api/…
    – dbasnett
    Nov 19 '18 at 15:35












  • Is this vba? vb.net and vba are not the same.
    – Mary
    Nov 19 '18 at 19:57
















0














Say I'm using this piece of code



With TextBox
.Size = New Windows.Size(InsideRadius)
End With


I want to choose within the function call which size to use dependent on which is the biggest, If Inside Radius is the biggest then choose that, but if a number such as say 20 is bigger then pick that, all within the call.



So something like this



With TextBox
.Size = New Windows.Size(If (InsideRadius >= 20) Then InsideRadius Else 20 End If)
End With


but I'm unsure how to do this within vb.net, I'm sure it is possible but after some searching I think I'm not typing in the correct question to get what I am looking for. Hope you understand, thanks










share|improve this question






















  • Is InsideRadius a Size? It should be. Are you wanting width or height? docs.microsoft.com/en-us/dotnet/api/…
    – dbasnett
    Nov 19 '18 at 15:35












  • Is this vba? vb.net and vba are not the same.
    – Mary
    Nov 19 '18 at 19:57














0












0








0







Say I'm using this piece of code



With TextBox
.Size = New Windows.Size(InsideRadius)
End With


I want to choose within the function call which size to use dependent on which is the biggest, If Inside Radius is the biggest then choose that, but if a number such as say 20 is bigger then pick that, all within the call.



So something like this



With TextBox
.Size = New Windows.Size(If (InsideRadius >= 20) Then InsideRadius Else 20 End If)
End With


but I'm unsure how to do this within vb.net, I'm sure it is possible but after some searching I think I'm not typing in the correct question to get what I am looking for. Hope you understand, thanks










share|improve this question













Say I'm using this piece of code



With TextBox
.Size = New Windows.Size(InsideRadius)
End With


I want to choose within the function call which size to use dependent on which is the biggest, If Inside Radius is the biggest then choose that, but if a number such as say 20 is bigger then pick that, all within the call.



So something like this



With TextBox
.Size = New Windows.Size(If (InsideRadius >= 20) Then InsideRadius Else 20 End If)
End With


but I'm unsure how to do this within vb.net, I'm sure it is possible but after some searching I think I'm not typing in the correct question to get what I am looking for. Hope you understand, thanks







vb.net






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 19 '18 at 14:26









fodger_rederer

1




1












  • Is InsideRadius a Size? It should be. Are you wanting width or height? docs.microsoft.com/en-us/dotnet/api/…
    – dbasnett
    Nov 19 '18 at 15:35












  • Is this vba? vb.net and vba are not the same.
    – Mary
    Nov 19 '18 at 19:57


















  • Is InsideRadius a Size? It should be. Are you wanting width or height? docs.microsoft.com/en-us/dotnet/api/…
    – dbasnett
    Nov 19 '18 at 15:35












  • Is this vba? vb.net and vba are not the same.
    – Mary
    Nov 19 '18 at 19:57
















Is InsideRadius a Size? It should be. Are you wanting width or height? docs.microsoft.com/en-us/dotnet/api/…
– dbasnett
Nov 19 '18 at 15:35






Is InsideRadius a Size? It should be. Are you wanting width or height? docs.microsoft.com/en-us/dotnet/api/…
– dbasnett
Nov 19 '18 at 15:35














Is this vba? vb.net and vba are not the same.
– Mary
Nov 19 '18 at 19:57




Is this vba? vb.net and vba are not the same.
– Mary
Nov 19 '18 at 19:57












2 Answers
2






active

oldest

votes


















0














It is possible, it looks like a function that is called if:



If(Statement, True, False)



https://docs.microsoft.com/en-us/dotnet/visual-basic/language-reference/operators/if-operator






share|improve this answer





























    0














    Math.Max()



    Math.Max(InsideRadius, 20)


    This will return whichever is the larger number.



    TextBox.Size = New Windows.Size(Math.Max(InsideRadius, 20)





    share|improve this answer





















      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376725%2fcheck-which-number-is-bigger-within-a-function-call-vb-net%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      It is possible, it looks like a function that is called if:



      If(Statement, True, False)



      https://docs.microsoft.com/en-us/dotnet/visual-basic/language-reference/operators/if-operator






      share|improve this answer


























        0














        It is possible, it looks like a function that is called if:



        If(Statement, True, False)



        https://docs.microsoft.com/en-us/dotnet/visual-basic/language-reference/operators/if-operator






        share|improve this answer
























          0












          0








          0






          It is possible, it looks like a function that is called if:



          If(Statement, True, False)



          https://docs.microsoft.com/en-us/dotnet/visual-basic/language-reference/operators/if-operator






          share|improve this answer












          It is possible, it looks like a function that is called if:



          If(Statement, True, False)



          https://docs.microsoft.com/en-us/dotnet/visual-basic/language-reference/operators/if-operator







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 19 '18 at 14:32









          DaanV

          3466




          3466

























              0














              Math.Max()



              Math.Max(InsideRadius, 20)


              This will return whichever is the larger number.



              TextBox.Size = New Windows.Size(Math.Max(InsideRadius, 20)





              share|improve this answer


























                0














                Math.Max()



                Math.Max(InsideRadius, 20)


                This will return whichever is the larger number.



                TextBox.Size = New Windows.Size(Math.Max(InsideRadius, 20)





                share|improve this answer
























                  0












                  0








                  0






                  Math.Max()



                  Math.Max(InsideRadius, 20)


                  This will return whichever is the larger number.



                  TextBox.Size = New Windows.Size(Math.Max(InsideRadius, 20)





                  share|improve this answer












                  Math.Max()



                  Math.Max(InsideRadius, 20)


                  This will return whichever is the larger number.



                  TextBox.Size = New Windows.Size(Math.Max(InsideRadius, 20)






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 20 '18 at 13:08









                  Gravitate

                  1,2031225




                  1,2031225






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376725%2fcheck-which-number-is-bigger-within-a-function-call-vb-net%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

                      ts Property 'filter' does not exist on type '{}'

                      mat-slide-toggle shouldn't change it's state when I click cancel in confirmation window