This is more an observation than a real question: MS-Access (and VBA in general) is desperately missing a tool where error handling code can be generated automatically, and where the line number can be displayed when an error occurs. Did you find a solution? What is it? I just realized how many hundreds of hours I spared since I found the right answer to this basic problem a few years ago, and I'd like to see what are your ideas and solutions on this very important issue.
Go to Project settings ( ) > Automation. Go to Create Custom Rule. Configure when this rule will be triggered by choosing an option for the WHEN action. Choose the properties of the Jira Service Desk requests that will trigger linked issues using the IF action. Under the THEN action, select Create issue.
2 answers. Yes. JIRA supports creating issues from emails.
Admins can change the project's Default assignee by going to a project and then selecting Project settings > Details.
You can access the project Activity page by selecting the Project drop-down, and selecting your project from the list. If your project is not listed, select View all projects to search for your project. Once you're viewing the project, click the Summary link to view the Activity page.
What about using "Erl", it will display the last label before the error (e.g., 10, 20, or 30)?
Private Sub mySUB()
On Error GoTo Err_mySUB
10:
Dim stDocName As String
Dim stLinkCriteria As String
20:
stDocName = "MyDoc"
30:
DoCmd.openform stDocName, acFormDS, , stLinkCriteria
Exit_mySUB:
Exit Sub
Err_mySUB:
MsgBox Err.Number & ": " & Err.Description & " (" & Erl & ")"
Resume Exit_mySUB
End Sub
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With