1. Enable / Disabled - data entry fields at runtime - CSharp/C#
2. Allow Data Entry if Field is Null, Disable if Field is not Null
I have a form which has a field Start Date. I want to only let the user enter a date if there is no date in the field and never be able to edit the field. I have experimented with On Enter and On Click and enabling and disabling the field but can't get it to work. Any suggestions? Thanks in advance
3. Disable Form text fields after Data entry - Access Forms
4. How to disable data entry fields
I have a data entry form that displays in datasheet view. I have a checkbox field called Issue. When the Issue field is left UNCHECKED I want a date field named Completion Date and a checkbox field named FollowUp to be disabled so no data entry can be inputted into those fields unless the Issue checkbox is checked. How can I accomplish this? -- Lorraine
5. Fields disappers if data entry set yes - Microsoft Office Access
6. Fields disappers if data entry set yes!!
Hi, I have form that it is used for entering data in table. When I set the Data Entry Property to yes, all the data fields in that form disappear!!! Moreover, the form record source is a table not a query. Please advice??
7. Disable fields in a form on open & enable with button click data e - Access Forms
8. CLEAR ALL DATA ON THE FIELDS for data entry (ASP.NET Web program)
Hi all,
I have a data entry form in ASP.NET (Web development) which has some
fields (field1,..., fieldN) , button ADD THIS RECORD, and button CANCEL.
In button ADD THIS RECORD, I have VB.NET Sub function to add this record
into the table. I would like to CLEAR ALL DATA ON THE FIELDS to perform
next data entry after adding a new record NOT BY assign the value "" for
each field, but by one line of code.
For example (in my code) :
Dim myStr as string="INSERT INTO TABLE1(Col1, Col2,..., ColN)
VALUES(field1.text, field2.text, ..., fieldN.text)"
Dim myConnection as ODBCConnection= New ODBCConnection(strConn)
myConnection.Open()
myCommand = New OdbcCommand(mystr, myConnection)
myCommand.ExecuteNonQuery()
myConnection.Close()
field1.text="" ' I like to use one line of code NOT by the
assignment value for each field
field2.text=""
......
fieldN.text=""
Could you suggest what I need to use for this purpose ? Thanks in
advance