1 2 3 4 5 6 > >>   Sort: Rank

How does one get a form to run on Unix?
How does one get a form to run on Unix? You need to design your form on your workstation. FTP or copy the Forms's FMB file to the Unix box. If you generate for a terminal environment (character based), the syntax is: f45gen USERID=userid/passwd@db_name MODULE_TYPE=FORM MODULE=module_name If you want...
2011-05-10, 3962👍, 0💬

How does one suppress or customize error messages in Forms?
How does one suppress or customize error messages in Forms? One can either set the message level using the system variable SYSTEM.MESSAGE_LEVEL or trap errors using the ON-ERROR or ON-MESSAGE triggers. MESSAGE_LEVEL: Set to 0, 5, 10, 15, 20, 25 to suppress all messages with severity below this level...
2011-04-05, 5265👍, 0💬

How To Write Ampersand Sign in Attribute Values
How To Write Ampersand Sign in Attribute Values? - XHTML Tutorials - Introduction To Tag and Attribute Syntax If you need enter an ampersand sign in an attribute value, you can not enter it directly. You must replace it with entity: &. Here are some interesting examples of quoted attribu...
2007-05-12, 5399👍, 0💬

What Is Wrong with My "checked" Attribute Values
What Is Wrong with My "checked" Attribute Values? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Attribute "checked" is an optional attribute for XHTML element "input". In XHTML specification, attribute "checked" has only predefined value: "checked". However, in HTML specification, att...
2007-05-12, 5280👍, 0💬

What Is the Relation between XHTML and HTML
What Is the Relation between XHTML and HTML? - XHTML FAQs - Introduction To XHTML 1.0 HTML (Hyper-Text Markup Language) is the original markup language for writing Web documents. XHMTL 1.0 is basically the same language as HTML 4.0. But XHTML 1.0 is defined in XML 1.0 syntax. XHTML 1.0 offers the fo...
2007-05-12, 5418👍, 0💬

What Is the Relation between XHTML and XML
What Is the Relation between XHTML and XML? - XHTML FAQs - Introduction To XHTML 1.0 XML (Extensible Markup Language) is a generic markup language to organize generic information into a structured document with embedded tags. XHTML is entirely based on XML. You can actually say that XHTML is a child...
2007-05-12, 5184👍, 0💬

How To Write Element Attributes Properly
How To Write Element Attributes Properly? - XHTML Tutorials - Introduction To Tag and Attribute Syntax If an attribute is allowed for an XHTML element, you must write the attribute inside the opening tag of this element. Here are some rules on writing element attributes: An attribute must have a nam...
2007-05-12, 5402👍, 0💬

What Is Wrong with My <meta> Tags
What Is Wrong with My <meta> Tags? - XHTML Tutorials - Introduction To Tag and Attribute Syntax If you are converting existing HTML documents to XHTML format, you may find some <meta> tags are written as: <meta name="Author" content="FYICenter.com"&gt ;<...
2007-05-12, 5271👍, 0💬

How To Write the Opening Tag of an XHTML Element
How To Write the Opening Tag of an XHTML Element? - XHTML Tutorials - Introduction To Tag and Attribute Syntax When you are writing an XHTML element, you must start with its opening tag, which contains the name of the element and attributes if needed. The opening tag is enclosed in a pair of angle b...
2007-05-12, 5597👍, 0💬

How To Quote Element Attribute Values Properly
How To Quote Element Attribute Values Properly? - XHTML Tutorials - Introduction To Tag and Attribute Syntax You know that attribute values must be quoted. But how to attribute values properly? Here are some basic rules you should remember: An attribute value must be quoted. An attribute value can b...
2007-05-12, 5452👍, 0💬

What Does an XHTML Document Look Like
What Does an XHTML Document Look Like? - XHTML FAQs - Introduction To XHTML 1.0 An XHTML document is a normal text file with predefined tags mixed with the text contents of the document. Tags are enclosed in pairs of angle brackets: "<" and ">". Below is how a simple XHTML document wil...
2007-05-12, 5075👍, 0💬

Is XHTML Element Name Case Sensitive
Is XHTML Element Name Case Sensitive? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Yes, XHTML element names are case sensitive. All element names must be written in lower case letters. Here are some valid and invalid XHTML element names: <html> - Valid name. <HTM...
2007-05-12, 6242👍, 0💬

What Are Predefined Attribute Values
What Are Predefined Attribute Values? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Some XHTML attributes have predefined values. If an attribute has predefined values, you must use one of the predefined values. For example, attribute "valign" of element "td" has 4 predefined values "...
2007-05-12, 5095👍, 0💬

What Is Wrong with My <br> Tags
What Is Wrong with My <br> Tags? - XHTML Tutorials - Introduction To Tag and Attribute Syntax If you are used HTML syntax, you may write your <br> tags as in the paragram below: <p> I love the way you look at me,<br> Your eyes so bright and blu...
2007-05-12, 5136👍, 0💬

What Is an XHTML Element Attribute
What Is an XHTML Element Attribute? - XHTML Tutorials - Introduction To Tag and Attribute Syntax An element attribute is a predefined property about this element. Element attributes allows you to provide additional information to the element. Most XHTML elements have some common attributes. But many...
2007-05-12, 5053👍, 0💬

Is Attribute Name Case Sensitive
Is Attribute Name Case Sensitive? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Yes, attribute names are case sensitive. You must write all attribute names in lower case letters. Here are some valid and invalid attribute names: <a href="http://dev.fyicenter.com ">- Valid...
2007-05-12, 5361👍, 0💬

How To Closing an XHTML Element
How To Closing an XHTML Element? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Every XHTML element must be closed. There are two ways to close an XHTML element: Using a closing tag, which is the element name prefixed with "/" and enclosed in a pair of angle brackets: "<" and "&...
2007-05-12, 5199👍, 0💬

What Is a Required Attribute
What Is a Required Attribute? - XHTML Tutorials - Introduction To Tag and Attribute Syntax A required attribute is an attribute required by the XHTML element. When you write an XHTML element, you must include all attributes required by this element in the opening tag. Optional attributes can be omit...
2007-05-12, 5330👍, 0💬

How To Enter Element Content
How To Enter Element Content? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Most of XHML elements allow you to specify contents. But there are some XHTML elements that do not allow any contents. If an XHTML element does allow element content, you need to enter the content between the ...
2007-05-12, 5640👍, 0💬

What Are the XHTML Elements Defined with EMPTY Contents
What Are the XHTML Elements Defined with EMPTY Contents? - XHTML Tutorials - Introduction To Element Content Syntax The following XHTML elements are defined to use the EMPTY content model: <meta ... /> - Element to provide meta data to the document. <link ... /> - Element...
2007-05-12, 4937👍, 0💬

What Is XHTML
What Is XHTML? - XHTML FAQs - Introduction To XHTML 1.0 XHTML stands for Extensible Hyper-Text Markup Language. XHTML is a scripting language that authors can use to embed text tags into a text document to add structural and formatting information. More precisely, XHTML gives authors the means to: P...
2007-05-12, 5141👍, 0💬

What Is the Relation between XHTML and the Web
What Is the Relation between XHTML and the Web? - XHTML FAQs - Introduction To XHTML 1.0 The Web is a publisher technology based on the Internet to allow publishers to publish hyper linked documents to be viewed by Internet users. XHTML is the next generation language that used to compose those hype...
2007-05-12, 4968👍, 0💬

What Is the Relation between XHTML and HTTP
What Is the Relation between XHTML and HTTP? - XHTML FAQs - Introduction To XHTML 1.0 HTTP (Hyper-Text Transfer Protocol) is an Internet communication protocol, that allows a viewer's computer talking to a publisher's computer to fetch XHTML documents. The viewer's computer issues a HTTP request mes...
2007-05-12, 5226👍, 0💬

How To Reduce the Display Size of an Image
How To Reduce the Display Size of an Image? - XHTML 1.0 Tutorials - Understanding Inline Images and Image Maps If an image embedded inline is too big when displayed in a browser, you can use "width" and "height" attributes to reduce the image's display size. The display width and height should be pr...
2007-05-12, 5129👍, 0💬

1 2 3 4 5 6 > >>   Sort: Rank