Date:  03/20/2002 08:23:35 AM Msg ID:  000456
From:  Joe Goldsmith Thread:  000456
Subject:  Check Box Status
If a field type is logical and I use a checkbox on a form for input, how do I use VFP to identify if it is checked or not and then store T or F as the field value please?

I am using for the form field:

<INPUT TYPE="checkbox" NAME="home" VALUE="<%=Request.Form("home")%>">

and then storing the result in:

M.home = Request.Form('home')

before inserting the response into the table field, "home".

Many thanks,

Joe