I'm trying to call a Sub that is located in a module, from a click event in my form. When I debug the app, it just goes through the code, but never goes to the procedure...any suggestions?


in form...gets executed on button click event
VB Code:
  1. Module.edit_check(txtItem.Text, txtActivity.Text, txtJob.Text)

in module
VB Code:
  1. Public Sub edit_check(ByVal b As String, ByVal c As String, ByVal d As String)