Access VBA put a form element name as an argument












0















Let's see if anyone knows how to solve this problem:



I have a form with several elements: Some of them are textboxes called A1, A2, A3, A4...



Now, their AfterUpdate SubProcedure is extremely long but barely similar for each of them: A1_AfterUpdate, A2_AfterUpdate, A3_AfterUpdate...etc... are very similar but for the names of the textboxes they change.



My idea was to gather all that was equal in a subprocedure defined this way:



Private Sub Update(Box As String, Menu As Boolean)
If Menu=True{
Me!Box.Text = "This is the text that is going to change"
}
End Sub


So, the only thing I must do is to call it this way, for instance:



Update(A1, True)


But it doesn't seems to work. Any idea on how to reach this objective?










share|improve this question




















  • 1





    Box as TextBox not as string. You should concider public generic function or Class with eventhanders

    – krish KM
    Nov 22 '18 at 9:48






  • 1





    there are no { in VBA. Your syntax does not look like VBA at all. It's If Then End If

    – Patrick Honorez
    Nov 22 '18 at 9:57
















0















Let's see if anyone knows how to solve this problem:



I have a form with several elements: Some of them are textboxes called A1, A2, A3, A4...



Now, their AfterUpdate SubProcedure is extremely long but barely similar for each of them: A1_AfterUpdate, A2_AfterUpdate, A3_AfterUpdate...etc... are very similar but for the names of the textboxes they change.



My idea was to gather all that was equal in a subprocedure defined this way:



Private Sub Update(Box As String, Menu As Boolean)
If Menu=True{
Me!Box.Text = "This is the text that is going to change"
}
End Sub


So, the only thing I must do is to call it this way, for instance:



Update(A1, True)


But it doesn't seems to work. Any idea on how to reach this objective?










share|improve this question




















  • 1





    Box as TextBox not as string. You should concider public generic function or Class with eventhanders

    – krish KM
    Nov 22 '18 at 9:48






  • 1





    there are no { in VBA. Your syntax does not look like VBA at all. It's If Then End If

    – Patrick Honorez
    Nov 22 '18 at 9:57














0












0








0








Let's see if anyone knows how to solve this problem:



I have a form with several elements: Some of them are textboxes called A1, A2, A3, A4...



Now, their AfterUpdate SubProcedure is extremely long but barely similar for each of them: A1_AfterUpdate, A2_AfterUpdate, A3_AfterUpdate...etc... are very similar but for the names of the textboxes they change.



My idea was to gather all that was equal in a subprocedure defined this way:



Private Sub Update(Box As String, Menu As Boolean)
If Menu=True{
Me!Box.Text = "This is the text that is going to change"
}
End Sub


So, the only thing I must do is to call it this way, for instance:



Update(A1, True)


But it doesn't seems to work. Any idea on how to reach this objective?










share|improve this question
















Let's see if anyone knows how to solve this problem:



I have a form with several elements: Some of them are textboxes called A1, A2, A3, A4...



Now, their AfterUpdate SubProcedure is extremely long but barely similar for each of them: A1_AfterUpdate, A2_AfterUpdate, A3_AfterUpdate...etc... are very similar but for the names of the textboxes they change.



My idea was to gather all that was equal in a subprocedure defined this way:



Private Sub Update(Box As String, Menu As Boolean)
If Menu=True{
Me!Box.Text = "This is the text that is going to change"
}
End Sub


So, the only thing I must do is to call it this way, for instance:



Update(A1, True)


But it doesn't seems to work. Any idea on how to reach this objective?







vba ms-access






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 '18 at 9:58









krish KM

4,4121727




4,4121727










asked Nov 22 '18 at 9:40









AccOUCHAccOUCH

205




205








  • 1





    Box as TextBox not as string. You should concider public generic function or Class with eventhanders

    – krish KM
    Nov 22 '18 at 9:48






  • 1





    there are no { in VBA. Your syntax does not look like VBA at all. It's If Then End If

    – Patrick Honorez
    Nov 22 '18 at 9:57














  • 1





    Box as TextBox not as string. You should concider public generic function or Class with eventhanders

    – krish KM
    Nov 22 '18 at 9:48






  • 1





    there are no { in VBA. Your syntax does not look like VBA at all. It's If Then End If

    – Patrick Honorez
    Nov 22 '18 at 9:57








1




1





Box as TextBox not as string. You should concider public generic function or Class with eventhanders

– krish KM
Nov 22 '18 at 9:48





Box as TextBox not as string. You should concider public generic function or Class with eventhanders

– krish KM
Nov 22 '18 at 9:48




1




1





there are no { in VBA. Your syntax does not look like VBA at all. It's If Then End If

– Patrick Honorez
Nov 22 '18 at 9:57





there are no { in VBA. Your syntax does not look like VBA at all. It's If Then End If

– Patrick Honorez
Nov 22 '18 at 9:57












2 Answers
2






active

oldest

votes


















2














Add a class module - I've called it clsTextBoxEvents.



Add this code to the class:



Public WithEvents txt As Access.TextBox

Private Sub txt_AfterUpdate()
MsgBox txt.Name & " has been updated."
End Sub


In your form module add this code:



Public MyTextBoxes As New Collection

Private Sub Form_Open(Cancel As Integer)

Dim ctl As Control
Dim txtBoxEvent As clsTextBoxEvents

For Each ctl In Me.Controls
If TypeName(ctl) = "TextBox" Then
Set txtBoxEvent = New clsTextBoxEvents
Set txtBoxEvent.txt = ctl
txtBoxEvent.txt.AfterUpdate = "[Event Procedure]"
MyTextBoxes.Add txtBoxEvent
End If
Next ctl

End Sub


The MyTextBoxes declaration must be at the very top of the module.



This just adds the AfterUpdate event to all textboxes on the form. You'll probably want to refine that a bit to textboxes with specific text in the name, or controls that are in a specific frame on the form.






share|improve this answer
























  • Impressive, but seems complex. Did you ever actually use such construct ? A use case perhaps ? Thx

    – Patrick Honorez
    Nov 22 '18 at 13:18











  • I don't understand the role of the MyTextBoxes collection. By reading the code with my knowledge it seems that nothing is done with it. What do I miss ?

    – Patrick Honorez
    Nov 22 '18 at 13:23











  • The MyTextBoxes collection should be Private really as it's only used in the form. The collection is used to store each instance of the class - one for each textbox. Without the MyTextBoxes.Add txtBoxEvent at the end none of the events fire.

    – Darren Bartrup-Cook
    Nov 22 '18 at 13:53











  • @PatrickHonorez I have to say I've not used such a construct in Access as I'd usually use a Continuous Form set up if I had lots of controls doing the same thing, but that would need changes to the tables as well. I've used similar code in Excel when creating controls at runtime. Now you've got me trying to think of a useful use case and all I'm thinking is "are very similar but for the names of the textboxes they change" from the OPs question.

    – Darren Bartrup-Cook
    Nov 22 '18 at 14:01













  • @PatrickHonorez I use this type of construct all the time for validating or restricting input - i.e. a group of TextBoxes that only accept numeric input. If you think this is "complex", you haven't seen the code-behind with 5 or 10 duplicate copies of a KeyPress event. This is much cleaner.

    – Comintern
    Nov 22 '18 at 14:09



















0














If you use a function instead of a sub:



Private Function UpdateCtl(Menu As Boolean)
If Menu Then
activecontrol = "This is the text that is going to change"
End If
End Sub


then you can call it directly from the control's AfterUpdate property: =UpdateCtl(True).

Simple and fast






share|improve this answer


























  • Please consider adding a little explanation to your answer. Code-only answers automatically get flagged as low quality, yours is currently in review

    – Erik A
    Nov 22 '18 at 10:29











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%2f53427898%2faccess-vba-put-a-form-element-name-as-an-argument%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









2














Add a class module - I've called it clsTextBoxEvents.



Add this code to the class:



Public WithEvents txt As Access.TextBox

Private Sub txt_AfterUpdate()
MsgBox txt.Name & " has been updated."
End Sub


In your form module add this code:



Public MyTextBoxes As New Collection

Private Sub Form_Open(Cancel As Integer)

Dim ctl As Control
Dim txtBoxEvent As clsTextBoxEvents

For Each ctl In Me.Controls
If TypeName(ctl) = "TextBox" Then
Set txtBoxEvent = New clsTextBoxEvents
Set txtBoxEvent.txt = ctl
txtBoxEvent.txt.AfterUpdate = "[Event Procedure]"
MyTextBoxes.Add txtBoxEvent
End If
Next ctl

End Sub


The MyTextBoxes declaration must be at the very top of the module.



This just adds the AfterUpdate event to all textboxes on the form. You'll probably want to refine that a bit to textboxes with specific text in the name, or controls that are in a specific frame on the form.






share|improve this answer
























  • Impressive, but seems complex. Did you ever actually use such construct ? A use case perhaps ? Thx

    – Patrick Honorez
    Nov 22 '18 at 13:18











  • I don't understand the role of the MyTextBoxes collection. By reading the code with my knowledge it seems that nothing is done with it. What do I miss ?

    – Patrick Honorez
    Nov 22 '18 at 13:23











  • The MyTextBoxes collection should be Private really as it's only used in the form. The collection is used to store each instance of the class - one for each textbox. Without the MyTextBoxes.Add txtBoxEvent at the end none of the events fire.

    – Darren Bartrup-Cook
    Nov 22 '18 at 13:53











  • @PatrickHonorez I have to say I've not used such a construct in Access as I'd usually use a Continuous Form set up if I had lots of controls doing the same thing, but that would need changes to the tables as well. I've used similar code in Excel when creating controls at runtime. Now you've got me trying to think of a useful use case and all I'm thinking is "are very similar but for the names of the textboxes they change" from the OPs question.

    – Darren Bartrup-Cook
    Nov 22 '18 at 14:01













  • @PatrickHonorez I use this type of construct all the time for validating or restricting input - i.e. a group of TextBoxes that only accept numeric input. If you think this is "complex", you haven't seen the code-behind with 5 or 10 duplicate copies of a KeyPress event. This is much cleaner.

    – Comintern
    Nov 22 '18 at 14:09
















2














Add a class module - I've called it clsTextBoxEvents.



Add this code to the class:



Public WithEvents txt As Access.TextBox

Private Sub txt_AfterUpdate()
MsgBox txt.Name & " has been updated."
End Sub


In your form module add this code:



Public MyTextBoxes As New Collection

Private Sub Form_Open(Cancel As Integer)

Dim ctl As Control
Dim txtBoxEvent As clsTextBoxEvents

For Each ctl In Me.Controls
If TypeName(ctl) = "TextBox" Then
Set txtBoxEvent = New clsTextBoxEvents
Set txtBoxEvent.txt = ctl
txtBoxEvent.txt.AfterUpdate = "[Event Procedure]"
MyTextBoxes.Add txtBoxEvent
End If
Next ctl

End Sub


The MyTextBoxes declaration must be at the very top of the module.



This just adds the AfterUpdate event to all textboxes on the form. You'll probably want to refine that a bit to textboxes with specific text in the name, or controls that are in a specific frame on the form.






share|improve this answer
























  • Impressive, but seems complex. Did you ever actually use such construct ? A use case perhaps ? Thx

    – Patrick Honorez
    Nov 22 '18 at 13:18











  • I don't understand the role of the MyTextBoxes collection. By reading the code with my knowledge it seems that nothing is done with it. What do I miss ?

    – Patrick Honorez
    Nov 22 '18 at 13:23











  • The MyTextBoxes collection should be Private really as it's only used in the form. The collection is used to store each instance of the class - one for each textbox. Without the MyTextBoxes.Add txtBoxEvent at the end none of the events fire.

    – Darren Bartrup-Cook
    Nov 22 '18 at 13:53











  • @PatrickHonorez I have to say I've not used such a construct in Access as I'd usually use a Continuous Form set up if I had lots of controls doing the same thing, but that would need changes to the tables as well. I've used similar code in Excel when creating controls at runtime. Now you've got me trying to think of a useful use case and all I'm thinking is "are very similar but for the names of the textboxes they change" from the OPs question.

    – Darren Bartrup-Cook
    Nov 22 '18 at 14:01













  • @PatrickHonorez I use this type of construct all the time for validating or restricting input - i.e. a group of TextBoxes that only accept numeric input. If you think this is "complex", you haven't seen the code-behind with 5 or 10 duplicate copies of a KeyPress event. This is much cleaner.

    – Comintern
    Nov 22 '18 at 14:09














2












2








2







Add a class module - I've called it clsTextBoxEvents.



Add this code to the class:



Public WithEvents txt As Access.TextBox

Private Sub txt_AfterUpdate()
MsgBox txt.Name & " has been updated."
End Sub


In your form module add this code:



Public MyTextBoxes As New Collection

Private Sub Form_Open(Cancel As Integer)

Dim ctl As Control
Dim txtBoxEvent As clsTextBoxEvents

For Each ctl In Me.Controls
If TypeName(ctl) = "TextBox" Then
Set txtBoxEvent = New clsTextBoxEvents
Set txtBoxEvent.txt = ctl
txtBoxEvent.txt.AfterUpdate = "[Event Procedure]"
MyTextBoxes.Add txtBoxEvent
End If
Next ctl

End Sub


The MyTextBoxes declaration must be at the very top of the module.



This just adds the AfterUpdate event to all textboxes on the form. You'll probably want to refine that a bit to textboxes with specific text in the name, or controls that are in a specific frame on the form.






share|improve this answer













Add a class module - I've called it clsTextBoxEvents.



Add this code to the class:



Public WithEvents txt As Access.TextBox

Private Sub txt_AfterUpdate()
MsgBox txt.Name & " has been updated."
End Sub


In your form module add this code:



Public MyTextBoxes As New Collection

Private Sub Form_Open(Cancel As Integer)

Dim ctl As Control
Dim txtBoxEvent As clsTextBoxEvents

For Each ctl In Me.Controls
If TypeName(ctl) = "TextBox" Then
Set txtBoxEvent = New clsTextBoxEvents
Set txtBoxEvent.txt = ctl
txtBoxEvent.txt.AfterUpdate = "[Event Procedure]"
MyTextBoxes.Add txtBoxEvent
End If
Next ctl

End Sub


The MyTextBoxes declaration must be at the very top of the module.



This just adds the AfterUpdate event to all textboxes on the form. You'll probably want to refine that a bit to textboxes with specific text in the name, or controls that are in a specific frame on the form.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 22 '18 at 10:10









Darren Bartrup-CookDarren Bartrup-Cook

13.9k11432




13.9k11432













  • Impressive, but seems complex. Did you ever actually use such construct ? A use case perhaps ? Thx

    – Patrick Honorez
    Nov 22 '18 at 13:18











  • I don't understand the role of the MyTextBoxes collection. By reading the code with my knowledge it seems that nothing is done with it. What do I miss ?

    – Patrick Honorez
    Nov 22 '18 at 13:23











  • The MyTextBoxes collection should be Private really as it's only used in the form. The collection is used to store each instance of the class - one for each textbox. Without the MyTextBoxes.Add txtBoxEvent at the end none of the events fire.

    – Darren Bartrup-Cook
    Nov 22 '18 at 13:53











  • @PatrickHonorez I have to say I've not used such a construct in Access as I'd usually use a Continuous Form set up if I had lots of controls doing the same thing, but that would need changes to the tables as well. I've used similar code in Excel when creating controls at runtime. Now you've got me trying to think of a useful use case and all I'm thinking is "are very similar but for the names of the textboxes they change" from the OPs question.

    – Darren Bartrup-Cook
    Nov 22 '18 at 14:01













  • @PatrickHonorez I use this type of construct all the time for validating or restricting input - i.e. a group of TextBoxes that only accept numeric input. If you think this is "complex", you haven't seen the code-behind with 5 or 10 duplicate copies of a KeyPress event. This is much cleaner.

    – Comintern
    Nov 22 '18 at 14:09



















  • Impressive, but seems complex. Did you ever actually use such construct ? A use case perhaps ? Thx

    – Patrick Honorez
    Nov 22 '18 at 13:18











  • I don't understand the role of the MyTextBoxes collection. By reading the code with my knowledge it seems that nothing is done with it. What do I miss ?

    – Patrick Honorez
    Nov 22 '18 at 13:23











  • The MyTextBoxes collection should be Private really as it's only used in the form. The collection is used to store each instance of the class - one for each textbox. Without the MyTextBoxes.Add txtBoxEvent at the end none of the events fire.

    – Darren Bartrup-Cook
    Nov 22 '18 at 13:53











  • @PatrickHonorez I have to say I've not used such a construct in Access as I'd usually use a Continuous Form set up if I had lots of controls doing the same thing, but that would need changes to the tables as well. I've used similar code in Excel when creating controls at runtime. Now you've got me trying to think of a useful use case and all I'm thinking is "are very similar but for the names of the textboxes they change" from the OPs question.

    – Darren Bartrup-Cook
    Nov 22 '18 at 14:01













  • @PatrickHonorez I use this type of construct all the time for validating or restricting input - i.e. a group of TextBoxes that only accept numeric input. If you think this is "complex", you haven't seen the code-behind with 5 or 10 duplicate copies of a KeyPress event. This is much cleaner.

    – Comintern
    Nov 22 '18 at 14:09

















Impressive, but seems complex. Did you ever actually use such construct ? A use case perhaps ? Thx

– Patrick Honorez
Nov 22 '18 at 13:18





Impressive, but seems complex. Did you ever actually use such construct ? A use case perhaps ? Thx

– Patrick Honorez
Nov 22 '18 at 13:18













I don't understand the role of the MyTextBoxes collection. By reading the code with my knowledge it seems that nothing is done with it. What do I miss ?

– Patrick Honorez
Nov 22 '18 at 13:23





I don't understand the role of the MyTextBoxes collection. By reading the code with my knowledge it seems that nothing is done with it. What do I miss ?

– Patrick Honorez
Nov 22 '18 at 13:23













The MyTextBoxes collection should be Private really as it's only used in the form. The collection is used to store each instance of the class - one for each textbox. Without the MyTextBoxes.Add txtBoxEvent at the end none of the events fire.

– Darren Bartrup-Cook
Nov 22 '18 at 13:53





The MyTextBoxes collection should be Private really as it's only used in the form. The collection is used to store each instance of the class - one for each textbox. Without the MyTextBoxes.Add txtBoxEvent at the end none of the events fire.

– Darren Bartrup-Cook
Nov 22 '18 at 13:53













@PatrickHonorez I have to say I've not used such a construct in Access as I'd usually use a Continuous Form set up if I had lots of controls doing the same thing, but that would need changes to the tables as well. I've used similar code in Excel when creating controls at runtime. Now you've got me trying to think of a useful use case and all I'm thinking is "are very similar but for the names of the textboxes they change" from the OPs question.

– Darren Bartrup-Cook
Nov 22 '18 at 14:01







@PatrickHonorez I have to say I've not used such a construct in Access as I'd usually use a Continuous Form set up if I had lots of controls doing the same thing, but that would need changes to the tables as well. I've used similar code in Excel when creating controls at runtime. Now you've got me trying to think of a useful use case and all I'm thinking is "are very similar but for the names of the textboxes they change" from the OPs question.

– Darren Bartrup-Cook
Nov 22 '18 at 14:01















@PatrickHonorez I use this type of construct all the time for validating or restricting input - i.e. a group of TextBoxes that only accept numeric input. If you think this is "complex", you haven't seen the code-behind with 5 or 10 duplicate copies of a KeyPress event. This is much cleaner.

– Comintern
Nov 22 '18 at 14:09





@PatrickHonorez I use this type of construct all the time for validating or restricting input - i.e. a group of TextBoxes that only accept numeric input. If you think this is "complex", you haven't seen the code-behind with 5 or 10 duplicate copies of a KeyPress event. This is much cleaner.

– Comintern
Nov 22 '18 at 14:09













0














If you use a function instead of a sub:



Private Function UpdateCtl(Menu As Boolean)
If Menu Then
activecontrol = "This is the text that is going to change"
End If
End Sub


then you can call it directly from the control's AfterUpdate property: =UpdateCtl(True).

Simple and fast






share|improve this answer


























  • Please consider adding a little explanation to your answer. Code-only answers automatically get flagged as low quality, yours is currently in review

    – Erik A
    Nov 22 '18 at 10:29
















0














If you use a function instead of a sub:



Private Function UpdateCtl(Menu As Boolean)
If Menu Then
activecontrol = "This is the text that is going to change"
End If
End Sub


then you can call it directly from the control's AfterUpdate property: =UpdateCtl(True).

Simple and fast






share|improve this answer


























  • Please consider adding a little explanation to your answer. Code-only answers automatically get flagged as low quality, yours is currently in review

    – Erik A
    Nov 22 '18 at 10:29














0












0








0







If you use a function instead of a sub:



Private Function UpdateCtl(Menu As Boolean)
If Menu Then
activecontrol = "This is the text that is going to change"
End If
End Sub


then you can call it directly from the control's AfterUpdate property: =UpdateCtl(True).

Simple and fast






share|improve this answer















If you use a function instead of a sub:



Private Function UpdateCtl(Menu As Boolean)
If Menu Then
activecontrol = "This is the text that is going to change"
End If
End Sub


then you can call it directly from the control's AfterUpdate property: =UpdateCtl(True).

Simple and fast







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 22 '18 at 10:45

























answered Nov 22 '18 at 9:58









Patrick HonorezPatrick Honorez

18.9k564118




18.9k564118













  • Please consider adding a little explanation to your answer. Code-only answers automatically get flagged as low quality, yours is currently in review

    – Erik A
    Nov 22 '18 at 10:29



















  • Please consider adding a little explanation to your answer. Code-only answers automatically get flagged as low quality, yours is currently in review

    – Erik A
    Nov 22 '18 at 10:29

















Please consider adding a little explanation to your answer. Code-only answers automatically get flagged as low quality, yours is currently in review

– Erik A
Nov 22 '18 at 10:29





Please consider adding a little explanation to your answer. Code-only answers automatically get flagged as low quality, yours is currently in review

– Erik A
Nov 22 '18 at 10:29


















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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53427898%2faccess-vba-put-a-form-element-name-as-an-argument%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

If I really need a card on my start hand, how many mulligans make sense? [duplicate]

Alcedinidae

Can an atomic nucleus contain both particles and antiparticles? [duplicate]