NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Johan van Zyl on April 18, 2011, 02:17:33 AM
-
Hide field is once again to small even with abbreviations
(p_web.GSV('LOG:TaskType')<>'RequestForStaff'
AND p_web.GSV('LOG:TaskType')<>'StaffAvailability'
AND p_web.GSV('LOG:TaskType')<>'Incidents'
AND p_web.GSV('LOG:TaskType')<>'StaffDevelopment'
AND p_web.GSV('LOG:TaskType')<>'Registration')
AND p_web.GSV('LOG:TaskType')<>'EmployeePaymentQuery')
How about putting the lot in a local variable like loc:gsvstring (CSTRING(2001))
and plonking loc:gsvstring into th ehide field?
eg loc:gsvstring = p_web.GSV(''LOG:TaskType'')<>''RequestForStaff'' &'AND'& p_web.GSV(''LOG:TaskType'')<> ''StaffAvailability''
short version of the loooog string
But code does not work - with Customer waiting for update there is nothing like presure to make my mind blank.
Please help!
[attachment deleted by admin]
-
you have lots of options here;
a) create a source procedure that calculates the result and resturns it.
b) create a local variable, containing true / false and put that here.
then search the generated code for where the variable is used, and put your long expression before it.
c) check out the INLIST Clarion command, and formulate your expression around that.
cheers
Bruce
-
Put this code in After Generated Code of LOG:TaskType - is this the best place? - but it seems to work.
lb:hideemployeesysid = 1 !jvz 20110418
if INLIST(LOG:TaskType,'StaffAvailability','Incidents','StaffDevelopment','EmployeesPaymentQuery')
lb:hideemployeesysid = 0
else
lb:hideemployeesysid = 1 !jvz 20110419 not required
END
put lb:hideemployeesysid in hide field of EMP:EmplyoeeSysID
-
to find the optimal embed point, follow the directions listed in ( b) in my earlier post.
cheers
Bruce