I have 2 forms form_employee {employee_number} INT primary key, autoNumbered and form_address {ID} INT primary key and {employee_number} INT manual_number.
I’ve created a PHP button in the form_employee
sc_redir(form_home, Employee_Number={Employee_Number});
I’ve changed the form_address
SQL
employee_number=[employee_number]
I also sent the global Variable o the form_address as IN
The goal of the form_employee is to pass the {employee_number} to the form_address {employee_number} and if there is a current address to show it, if not to include a new address for that particular employee.
I can’t seem to get the form_employee to pass the {employee_number} … what am I doing wrong?