Check which number is bigger within a function call - vb.net
up vote
0
down vote
favorite
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
add a comment |
up vote
0
down vote
favorite
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
Is InsideRadius a Size? It should be. Are you wanting width or height? docs.microsoft.com/en-us/dotnet/api/…
– dbasnett
Nov 19 at 15:35
Is this vba? vb.net and vba are not the same.
– Mary
Nov 19 at 19:57
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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
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
vb.net
asked Nov 19 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 at 15:35
Is this vba? vb.net and vba are not the same.
– Mary
Nov 19 at 19:57
add a comment |
Is InsideRadius a Size? It should be. Are you wanting width or height? docs.microsoft.com/en-us/dotnet/api/…
– dbasnett
Nov 19 at 15:35
Is this vba? vb.net and vba are not the same.
– Mary
Nov 19 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 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 at 15:35
Is this vba? vb.net and vba are not the same.
– Mary
Nov 19 at 19:57
Is this vba? vb.net and vba are not the same.
– Mary
Nov 19 at 19:57
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
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
add a comment |
up vote
0
down vote
Math.Max()
Math.Max(InsideRadius, 20)
This will return whichever is the larger number.
TextBox.Size = New Windows.Size(Math.Max(InsideRadius, 20)
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
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
add a comment |
up vote
0
down vote
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
add a comment |
up vote
0
down vote
up vote
0
down vote
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
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
answered Nov 19 at 14:32
DaanV
3476
3476
add a comment |
add a comment |
up vote
0
down vote
Math.Max()
Math.Max(InsideRadius, 20)
This will return whichever is the larger number.
TextBox.Size = New Windows.Size(Math.Max(InsideRadius, 20)
add a comment |
up vote
0
down vote
Math.Max()
Math.Max(InsideRadius, 20)
This will return whichever is the larger number.
TextBox.Size = New Windows.Size(Math.Max(InsideRadius, 20)
add a comment |
up vote
0
down vote
up vote
0
down vote
Math.Max()
Math.Max(InsideRadius, 20)
This will return whichever is the larger number.
TextBox.Size = New Windows.Size(Math.Max(InsideRadius, 20)
Math.Max()
Math.Max(InsideRadius, 20)
This will return whichever is the larger number.
TextBox.Size = New Windows.Size(Math.Max(InsideRadius, 20)
answered Nov 20 at 13:08
Gravitate
1,1611125
1,1611125
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Is InsideRadius a Size? It should be. Are you wanting width or height? docs.microsoft.com/en-us/dotnet/api/…
– dbasnett
Nov 19 at 15:35
Is this vba? vb.net and vba are not the same.
– Mary
Nov 19 at 19:57