Date:  05/17/2004 08:46:11 PM Msg ID:  002064
From:  David Hempy Thread:  002010
Subject:  Re: Changing Form values after the fact
Excellent! 
 
I will most certainly put that to use!
 
Thank you, FoxWeb Support!
 
-dave
 

--
David Hempy
Internet Database Administrator
Kentucky Educational Television
(859)258-7164  -  (800)333-9764

Sent by FoxWeb Support on 05/03/2004 07:01:53 PM:
My favorite method to solve this problem is to modify widget_edit.fwx, so that after saving, it calls widget_show.fwx with the ID as an argument:
 
... Save the widget record
Server.Transfer('widget_show.fwx', M.widgetid)
 
Widget_show itself would contain something like this:
 
LPARAMETERS widgetid
IF PCOUNT() < 1
    M.widgetid = Request.Form('id')
ENDIF
... display the widget record
 

FoxWeb Support Team
support@foxweb.com email

Sent by David Hempy on 04/30/2004 04:47:38 PM: