Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.


@harvey_craig2RCUH wrote:
Try
	If Parameter(Connection, "Hex_AFc")
		MsgBox("this parameter exists")
	End If
Catch
	MsgBox("this parameter does not exist")
End Try

You can make this look a little better by using a single line IF-statement. You don't need an IF...End If-construction when there's not a block of code in/between it. #Just a suggestion.

Personally, I use a dedicated sub procedure similar to @ryan.rittenhouse