Unix and Linux Discussions Tagged with field |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
5,769 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
134,783 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
5 |
5,911 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,060 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
14,992 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,615 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,137 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,683 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,860 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,469 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,245 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,478 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
5,092 |
Shell Programming and Scripting |
|
|
|
1 |
2,237 |
UNIX for Beginners Questions & Answers |
|
|
|
17 |
5,695 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,693 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,745 |
UNIX for Beginners Questions & Answers |
|
|
|
27 |
6,672 |
Shell Programming and Scripting |
|
|
|
2 |
1,431 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,681 |
Shell Programming and Scripting |
|
|
|
7 |
3,347 |
Shell Programming and Scripting |
|
|
|
4 |
2,234 |
Shell Programming and Scripting |
|
|
|
9 |
3,750 |
Shell Programming and Scripting |
|
|
|
2 |
1,857 |
Shell Programming and Scripting |
|
|
|
3 |
2,586 |
Shell Programming and Scripting |
|
|
|
1 |
3,949 |
Shell Programming and Scripting |
|
|
|
6 |
9,280 |
Shell Programming and Scripting |
|
|
|
6 |
2,208 |
Shell Programming and Scripting |
|
|
|
11 |
10,196 |
Shell Programming and Scripting |
|
|
|
1 |
1,759 |
Shell Programming and Scripting |
|
|
|
8 |
6,036 |
Shell Programming and Scripting |
|
|
|
4 |
3,038 |
Shell Programming and Scripting |
|
|
|
2 |
2,347 |
Shell Programming and Scripting |
|
|
|
5 |
9,659 |
Shell Programming and Scripting |
|
|
|
1 |
2,726 |
Shell Programming and Scripting |
|
|
|
6 |
4,513 |
Shell Programming and Scripting |
|
|
|
7 |
4,951 |
Shell Programming and Scripting |
|
|
|
2 |
7,203 |
Shell Programming and Scripting |
|
|
|
3 |
5,933 |
Shell Programming and Scripting |
|
|
|
2 |
2,133 |
Shell Programming and Scripting |
form_field_validation(3CURSES) Curses Library Functions form_field_validation(3CURSES)
NAME
form_field_validation, set_field_type, field_type, field_arg - forms field data type validation
SYNOPSIS
cc [ flag... ] file... -lform -lcurses [ library... ]
#include <form.h>
int set_field_type(FIELD *field, FIELDTYPE *type...);
FIELDTYPE *field_type(FIELD *field);
char *field_arg(FIELD *field);
DESCRIPTION
set_field_type() associates the specified field type with field. Certain field types take additional arguments. TYPE_ALNUM, for instance,
requires one, the minimum width specification for the field. The other predefined field types are: TYPE_ALPHA, TYPE_ENUM, TYPE_INTEGER,
TYPE_NUMERIC, and TYPE_REGEXP.
field_type() returns a pointer to the field type of field. NULL is returned if no field type is assigned.
field_arg() returns a pointer to the field arguments associated with the field type of field. NULL is returned if no field type is
assigned.
RETURN VALUES
field_type() and field_arg() return NULL on error.
set_field_type() returns one of the following:
E_OK The function returned successfully.
E_SYSTEM_ERROR System error.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|MT-Level |Unsafe |
+-----------------------------+-----------------------------+
SEE ALSO
curses(3CURSES), forms(3CURSES), attributes(5)
NOTES
The header <form.h> automatically includes the headers <eti.h> and <curses.h>.
SunOS 5.11 31 Dec 1996 form_field_validation(3CURSES)