You could use a regular vb button with some code, then use the driver in code do do the function. Add something like this to the button click of a button:
Dim button_value As Integer = MessageBox.Show("Would you like me to do that thing?", "Up to you...", MessageBoxButtons.YesNo)
If button_value = 6 Then '6 = yes
EthernetIPforCLXCom1.Write("The tag", 0)
End If
edit: I'm way slow. I like that DialogResult.Yes, learned something new.