Dec 092017
 
Nice PD library of TC-callable menu, window and data input routines.
File TCU_31.ZIP from The Programmer’s Corner in
Category C Source Code
Nice PD library of TC-callable menu, window and data input routines.
File Name File Size Zip Size Zip Type
AA-READ.ME! 6822 2610 deflated
BUTTON.C 2213 887 deflated
BUTTON.CUF 354 219 deflated
BUTTON.EXE 46361 29794 deflated
DEMO.C 11038 2939 deflated
DEMO.EXE 50157 31477 deflated
FCOMP.DOC 25235 6873 deflated
FCOMP.EXE 45765 28546 deflated
FSHOW.EXE 49657 31790 deflated
PULLDOWN.C 7054 1315 deflated
PULLDOWN.CUF 629 304 deflated
PULLDOWN.EXE 47389 30169 deflated
SAMPLE.CUF 2525 713 deflated
SELECT.C 1513 587 deflated
SELECT.EXE 45143 29153 deflated
TCU.DOC 71684 16226 deflated
TCU.H 21522 3890 deflated
TCU_C.LIB 51712 19572 deflated
TCU_CPP.LIB 1536 528 deflated
TCU_H.LIB 52736 20520 deflated
TCU_L.LIB 53248 20117 deflated
TCU_M.LIB 47104 19258 deflated
TCU_S.LIB 45568 18744 deflated
WINDOWS.C 1815 596 deflated
WINDOWS.EXE 13667 8789 deflated

Download File TCU_31.ZIP Here

Contents of the FCOMP.DOC file



Turbo-C Utilities - Forms Compiler, V3.1
========================================


Foreword
--------

Suggestions, comments and complaints (hopefully not the latter!) will be
accepted electronically to:

Karl Keyte
European Space Operations Centre
Robert-Bosch Strasse 5
D-6100 Darmstadt
West Germany

Voice : +(49) 6151 902041 (Business)
+(49) 6150 2499 (Private)
e-Mail : [email protected]
Bix : kkeyte




Disclaimer
----------

No responsibility taken for anything which may result from using the forms
compiler. If anything unusual _does_ result, I'd be interested to know!


Operation
---------

Function : The forms compiler is used to convert a form source file into
either an internal format object file or a real relocatable
object file which may be linked with your application. The
former offers flexibility in that the form specification
may be changed without recompiling or linking the application
and the resulting executable size is likely to be smaller as
it does not contain the form body itself. An internal format
object file (default extension .CFO) is loaded with the
service 'load_form'. Relocatable object units allow an
application to be completely standalone, embodying any forms
which it requires in the executable image. The disadvantage
is that if the form is changed, the application must be
relinked with the new form object. The applications are also
larger as the body of the form takes part of the image. The
service 'load_image_form' is used to load a form which has
been linked as an object into the application. 'unload_form'
is used to free the form (and hence memory) regardless of the
type of object chosen.

The forms compiler does a thorough parsing and error reporting
of the source form. If an error is detected no object form is
generated. See 'Return Value' in the TCU users guide under
'load_form' for further information.


Syntax : fcomp [Object-filename]

Extensions default to .CUF for the source file, .CFO for an
internal format object file and .OBJ for a relocatable object
file.

Options are:

/keep
Instructs the compiler to keep the intermediate .CFO
file when a relocatable object file (.OBJ) is being
generated. If the option '/nokeep' is used when only
an internal format object (.CFO) file is being generated,
it will be deleted, forcing the compiler to perform only
a syntax check of the form specification.

/loadname=PUBLIC_NAME
Tells the compiler to produce a relocatable object file
with the specified public symbol name. This name is
used in the application program to reference the form.
The '/object' option is automatically forced when this
option is specified. All loadnames are CASE SENSITIVE!


/memory
Display memory load statistics about the form. This
displays two values: the first is the number of bytes of
memory required after issuing a 'load_form' or a
'load_image_form' service call; the second the number of
bytes required while the form is actually displayed on
the screen. Note that the amount of actual dynamic memory
required is the same with both services.

/object
Directs the compiler to produce a relocatable object file
(.OBJ) rather than an internal format object file (.CFO).
If the '/keep' option is specified together with the
'/object' option, both types of object will be generated.

/verbose
Displays information about the fields within the form as
it is being compiled.


Output : The forms compiler outputs an error list if errors were
detected. If no errors were detected, an object file is
generated.


Source Format
-------------

The CUF file defines the structure, size and attributes of the form and its
fields. It comprises lines which identify form elements. Blank lines may be
used to increase clarity and comments may be added. Comments must start with
the '!' character. All characters following the comment identifier will be
ignored.

Lines may be continued on more than one file line by placing the '&' symbol
at the end of a source line. This takes the following line as part of the
same logical line.

The following elements may be used to define the form. Spaces are not
significant, though each element must use only one line which may be up to 255
characters long:

SIZE = ,

The width and height include a perimeter box, meaning that
they specify the absolute size of the form as it will
appear. If any field positioning element contradicts the
specified form size, the form will not load.

TYPE =

The linestyle is SINGLE,DOUBLE or BLANK to define whether
the form should appear in a single or double lined perimeter
box, or surrounded only by blank spaces.

COLOUR = /

This definition defines the colour of the form text and
background. The background colours are:

Black, Blue, Green, Cyan, Red, Magenta, Brown,
LightGray

The foreground colours include the above and in addition:

DarkGray, LightBlue, LightGreen, LightCyan, LightRed,
LightMagenta, Yellow, White

INPUT = /

These colours are used for input field areas. The colours
are as above.

TCOLOUR = /

These colours are used for the form title string (if one is
used). The colours are as above.

TITLE = ""<br /><br /> Defines the title to be used in the form. The default is for<br /> no title.<br /><br /> TEXT = @<x>,<y>; [<colour-definition>;] "<body of text>"<br /><br /> Defines a fixed text string to be displayed in the form.<br /> 'x' and 'y' specify the coordinates of the start of the<br /> text relative to the top-left corner of the INNER form.<br /> The INNER form is defined as the usable part of the form,<br /> i.e. that area which excludes the perimeter box.<br /><br /> COLOUR = <foreground>/<background><br /><br /> Sets the field colour to the new colour instead of the<br /> default set with the main 'COLOUR=' keyword.<br /><br /><br /> FIELD = @<x>,<y> [;NAME=<name>] ;<field-type> [;<attributes>]<br /><br /> Defines an input field area on the form. 'x' and 'y' are as<br /> for the TEXT operator. 'NAME=...' allows an optional name to<br /> be given to a field for use with 'get_field_id' and may be<br /> up to 8 characters in length. Case is not significant.<br /> 'field-type' must be specified is one of the following:<br /><br /> String Numeric Date Logical Choice<br /><br /> Each type may (and in the case of string, numeric and<br /> choice types, must) take modifiers which are enclosed in<br /> brackets. The following are valid modifiers:<br /><br /> String (NN) : Where NN represents the length of<br /> the field.<br /><br /> Numeric (NN) : Integer field, length NN<br /> Numeric (NN,D) : Floating point field, NN long with<br /> D decimal places.<br /><br /> Date : Date field<br /> Date (DayFirst) : Date has day number first (default)<br /> Date (MonthFirst) : Date has month number first<br /><br /> Logical : Logical field<br /> Logical (YesNo) : Use Yes/No mnemonics<br /> Logical (TrueFalse) : Use True/False mnemonics<br /> Logical (OnOff) : Use On/Off mnemonics<br /> Logical (Full) : Use full mnemonic, not just single<br /> letter. The 'Full' keyword may be<br /> used with one of the other options<br /> as in 'Logical (OnOff, Full)'<br /><br /> Choice (NN) = "<list>" : Where NN represents the length of<br /> the field. List represents the<br /> list of choices using the '|'<br /> character as a separator.<br /> E.G. Choice(6)="One|Two|Three"<br /><br /> Button = "<name>" : Where <name> represents the name<br /> displayed for the button in the<br /> form. <br /><br /> Attributes relate to field initial values, ranges and string<br /> templates. The following are valid attributes:<br /><br /> Range (<minimum>,<maximum>)<br /><br /> Valid only for Numeric and Date fields. If either the<br /> minimum or maximum (but not both!) are omitted, there<br /> will be no check at this end of the range. The specified<br /> values must be of the type of the field. For date<br /> ranges, the keywords 'Yesterday', 'Today' and 'Tomorrow'<br /> are valid, as in:<br /><br /> Field = @3,3; Date (MonthFirst); Range (,Today)<br /><br /><br /> Value=<value><br /><br /> Sets an initial value for the field. This is valid for<br /> all types, and the specified value must be of the type<br /> of the declared field. String values must be enclosed<br /> in quotes. If a range is specified, it must be first,<br /> and the value must be within the specified range. For<br /> Choice types the value is an integer specifying the<br /> ordinal choice number, i.e. 3 represents the third<br /> item in the choice list.<br /><br /> Template=<template-string><br /><br /> Sets a template for a string field. A template defines<br /> the valid characters at the corresponding positions in<br /> the string. The following template characters are valid:<br /><br /> 'a' : Allows alphanumeric characters only<br /> 'A' : As 'a', but forces alphabetic characters to<br /> uppercase.<br /> '!' : Allow any character, but force alphabetic<br /> characters to uppercase.<br /> '#' : Allow only numeric characters and '.' and '-'<br /><br /> Any other character allows any input character<br /> in the string.<br /><br /> Character deletion and insertion may not be performed in<br /> a portion of a string field where a template applies.<br /> This means that a template of "!!!!" will not allow the<br /> insertion or deletion of characters in the first 4<br /> positions. If the input field is larger that the template<br /> insertion and deletion may be performed in the positions<br /> after the template length.<br /><br /> The template string must be enclosed in quotes.<br /><br /> Colour = <foreground>/<background><br /><br /> Sets the field colour to the new colour instead of the<br /> default set with the 'INPUT=' keyword.<br /><br /> NoEnter<br /><br /> Sets the field as read-only by disabling the edit<br /> cursor entering the field. May be changed with the<br /> 'set_field_mode' function.<br /><br /> REPEAT = <repeat_count><br /> ENDREPEAT<br /><br /> The REPEAT/ENDREPEAT statements allow repetition of a block<br /> of form declarations. This is particularly useful for tables<br /> and other structures which require repeated fields and/or<br /> text. The first entry following the REPEAT is used to<br /> determine the starting row of the repetitions. Rows are<br /> incremented automatically by 1 implying that all repeated<br /><br /><br /> fields must be on the same line. If the fields require names,<br /> the symbol '##' may be inserted into the name. This will be<br /> replaced with the repetition number during compilation. The<br /> following is an example repeat section:<br /><br /> REPEAT = 10<br /> TEXT = @10,5; "Entry :"<br /> FIELD = @18,5; Name=ENTRY_##; Numeric(2)<br /> ENDREPEAT<br /><br /> This extract would produce ten fixed text fields and ten<br /> numeric input fields named ENTRY_01 to ENTRY_10.<br /><br /> Repeat clauses may not be nested, and each REPEAT must have<br /> a corresponding ENDREPEAT.<br /><br /><br />Error Report<br />------------<br /><br />The following is a complete list of compile-time errors and a description of<br />the meaning.<br /><br /><br />Message: '=' sign expected<br /><br />Meaning: Each identifier in the CUF form is followed by a '=' sign according<br /> to the syntax described in the above section.<br /><br /><br />Message: Bad or missing button select text<br /><br />Meaning: The button select text was either not present or not enclosed in<br /> quotes.<br /><br /><br />Message: Bad or missing choice field length<br /><br />Meaning: The length of a choice field was not specified or specified<br /> incorrectly.<br /><br /><br />Message: Bad or missing choice selectors in choice type declaration<br /><br />Meaning: A choice type does not contain a valid list of selectors, or the<br /> selector string is incorrectly delimited, i.e. not quoted.<br /><br /><br />Message: Bad or missing numeric field length<br /><br />Meaning: A numeric field must have its length specified. A line in the<br /> source file violated this rule.<br /><br /><br />Message: Bad or missing repetition count in REPEAT statement<br /><br />Meaning: A REPEAT clause was specified with an invalid or missing repetition<br /> count.<br /><br /><br />Message: Bad or missing string field length<br /><br />Meaning: All string fields must specify a length. A line in the source file<br /> violated this rule.<br /><br /><br />Message: Bad or missing text literal in TEXT specification<br /><br />Meaning: A TEXT specification requires a screen location and a text literal<br /> (in quotes). A line in the source file was found to be missing the<br /> literal, or the literal was invalid.<br /><br /><br />Message: Choice type option is too large for specified field size<br /><br />Meaning: A choice selector item is longer than the specified field size for<br /> the field.<br /><br /><br />Message: COLOUR or INPUT identifier not specified before FIELD or TEXT<br /><br />Meaning: The colours must be specified fully before the first FIELD or TEXT<br /> keyword.<br /><br />Message: ENDREPEAT without REPEAT<br /><br />Meaning: An ENDREPEAT statement was encountered when no REPEAT block was<br /> active.<br /><br />Message: Error opening form CUF file for Input<br /><br />Meaning: The CUF file could not be opened. This normally indicates that the<br /> specified file does not exist, though it could indicate a problem<br /> with the media.<br /><br /><br />Message: Field name already defined<br /><br />Meaning: A field name has already been given to the field. A second<br /> definition is not permitted.<br /><br /><br />Message: Field name is already defined for another field<br /><br />Meaning: Another field has already been defined with the name field name.<br /> A field name is 1-8 characters, case insensitive.<br /><br /><br />Message: Field name too long (>8 characters)<br /><br />Meaning: A field name may be from 1 to 8 characters in length.<br /><br />Message: Field position (@x,y) not first specifier in declaration<br /><br />Meaning: The location of a field in a form must be the first specification<br /> in the source line after the FIELD= or TEXT= keywords.<br /><br /><br />Message: Field size is too large for choice type field<br /><br />Meaning: The specified field size is too large for a choice type, i.e.<br /> more than 20 characters.<br /><br /><br />Message: Field type not specified<br /><br />Meaning: All FIELD operation lines must contain a specification of the type<br /> of the field.<br /><br /><br />Message: Field value specified in VALUE lies outside valid user range<br /><br />Meaning: An initial value (if present) must be valid according to the user<br /> specified range.<br /><br /><br />Message: Field would lie outside form area<br /><br />Meaning: The positioning and length of the field would cause at least part<br /> of the field to lie outside the form area.<br /><br /><br />Message: Form title string too large for form width<br /><br />Meaning: The form title string is too large for the width specification<br /> made with the SIZE keyword. It may be a maximum of 6 characters<br /> less than the form width.<br /><br /><br />Message: Illegal syntax in range parameter(s)<br /><br />Meaning: Syntax error in RANGE specification. See description of CUF source<br /> format above.<br /><br /><br />Message: Invalid date constant specified in VALUE declaration<br /><br />Meaning: The date constant specified in the VALUE section is invalid. Check<br /> date keywords such as 'DayFirst' and 'MonthFirst'.<br /><br /><br />Message: Invalid date specified in range<br /><br />Meaning: The date constant specified in the RANGE section is invalid. Check<br /> date keywords such as 'DayFirst' and 'MonthFirst'.<br /><br /><br />Message: Invalid form type in TYPE specifier<br /><br />Meaning: Form type may be SINGLE or DOUBLE. An invalid type was specified.<br /><br /><br />Message: Invalid integer specified in VALUE declaration<br /><br />Meaning: The integer specified for a VALUE is invalid. Check against the<br /> specified field length, remembering possible negative values.<br /><br /><br />Message: Invalid logical constant specified in VALUE declaration<br /><br />Meaning: A logical value is invalid. Check that the value specification<br /> matches with the logical mode. For example, a value of TRUE may<br /> not be assigned to a logical field of type YESNO.<br /><br /><br />Message: Invalid string syntax for specification of form title<br /><br />Meaning: The string specified for the form title is of an invalid length or<br /> is not enclosed in quotes.<br /><br /><br />Message: Invalid VALUE for choice item or out of range of choices<br /><br />Meaning: The initial VALUE specified for a choice type is invalid. It was<br /> either incorrectly specified or is out of range for the number of<br /> selectors available.<br /><br /><br />Message: Maximum range specification too large for field<br /><br />Meaning: The maximum value in the RANGE specification is too large for the<br /> field size.<br /><br /><br />Message: Maximum range value is smaller than minimum<br /><br />Meaning: The maximum value in the RANGE specification is smaller that the<br /> minimum value.<br /><br /><br /><br />Message: Minimum range specification too large for field<br /><br />Meaning: The minimum value in the RANGE specification is too large for the<br /> field size.<br /><br /><br />Message: Minimum range specification too small for field<br /><br />Meaning: The minimum value in the RANGE specification is too small for the<br /> field size.<br /><br /><br />Message: Missing COLOUR or INPUT specification<br /><br />Meaning: The COLOUR and/or INPUT specifications were found to be missing and<br /> the defaults could not be located.<br /><br /><br />Message: Missing field position specifier<br /><br />Meaning: The field position specifier (@X,Y) is not present. This must<br /> follow the FIELD and TEXT keywords directly.<br /><br /><br />Message: Missing form size (SIZE) specification<br /><br />Meaning: A size specification must be present in every form. It is missing<br /> from this form definition.<br /><br /><br />Message: Missing or illegal colour in colour specification<br /><br />Meaning: A colour specification for COLOUR or INPUT is invalid. Either no<br /> colours have been specified, or those which are given are invalid.<br /><br /><br />Message: Missing or illegal colour in field colour specification<br /><br />Meaning: A colour specification in a field definition is invalid. Either no<br /> colours have been specified, or those which are given are invalid.<br /><br /><br />Message: Missing parameter(s)<br /><br />Meaning: General syntax error indicated that expected parameters are not<br /> specified. Check the syntax.<br /><br /><br />Message: Missing value in VALUE specification<br /><br />Meaning: A VALUE specification must contain an initial value.<br /><br /><br />Message: No more space for choice strings<br /><br />Meaning: Too many or too large choice selectors have been specified. They<br /> must be reduced or abbreviated.<br /><br /><br />Message: No range specified with RANGE<br /><br />Meaning: A RANGE specification must contain one or both of minimum and<br /> maximum values. A comma must separate them, even if one is not<br /> specified.<br /><br /><br />Message: Not string field type in attempt to declare TEMPLATE<br /><br />Meaning: The TEMPLATE keyword has been used for a field of a type other than<br /> String. This is invalid.<br /><br /><br />Message: Out of memory<br /><br />Meaning: Insufficient memory was available to compile the form.<br /><br /><br />Message: Range not permitted for specified field type<br /><br />Meaning: Ranges have no meaning for String or Logical fields.<br /><br /><br />Message: Redefinition of field range<br /><br />Meaning: The RANGE keyword was used more than once for a single field.<br /><br /><br />Message: Redefinition of field type<br /><br />Meaning: The field type has been specified more than once for a single<br /> field.<br /><br /><br />Message: REPEAT blocks may not be nested<br /><br />Meaning: A REPEAT statement was encountered inside an already active REPEAT<br /> block, i.e. no ENDREPEAT had been met.<br /><br /><br />Message: REPEAT without ENDREPEAT<br /><br />Meaning: A REPEAT statement had no matching ENDREPEAT statement when the<br /> end of file was reached.<br /><br /><br />Message: Repetition count in REPEAT is out of range<br /><br /><br />Meaning: The repetition count specified in the REPEAT statement was either<br /> 0 or too large.<br /><br /><br />Message: SIZE specification must appear before first FIELD or TEXT<br /><br />Meaning: The form SIZE keyword must appear before any active FIELD or TEXT<br /> items.<br /><br /><br />Message: String literal longer than field length<br /><br />Meaning: A string literal value may not exceed the field size in length.<br /><br /><br />Message: String literal not in quotes<br /><br />Meaning: All string literals must be enclosed in quotes (", NOT ')<br /><br /><br />Message: Syntax error in ENDREPEAT statement<br /><br />Meaning: The ENDREPEAT statement was followed by some unexpected text.<br /><br /><br />Message: Syntax error in field option specification<br /><br />Meaning: A field option must be enclosed in parentheses and conform to the<br /> syntax outlined in the previous section.<br /><br /><br />Message: Too many fields in form<br /><br />Meaning: Too many fields have been specified in the form - Each TEXT and<br /> each FIELD counts as a field to the compiler. Reduce the number,<br /> possibly by combining TEXT items which will on the same screen row.<br /><br /><br />Message: Too many parameters specified<br /><br />Meaning: Too many parameters were specified for an element. Check the<br /> syntax.<br /><br /><br />Message: Unrecognised CUF identifier<br /><br />Meaning: An invalid CUF file identifier was encountered, i.e. not one of<br /> BUTTON, CHOICE, COLOUR, DATE, FIELD, INPUT, LOGICAL, NAME, NOENTER,<br /> NUMERIC, TCOLOUR, TEXT, TITLE, TYPE, RANGE, SIZE, STRING, TEMPLATE,<br /> VALUE, '@'.<br /><br /><br />Message: VALUE specified for button type field<br /><br />Meaning: A VALUE clause is invalid for button type fields.<br /></div></div><br><br> </div><!--/entry --> </div><!-- .entry-container --> <footer class="post-footer postdata fix"> </footer><!-- .post-footer --> <div class='postdata line'> <span class='line-date'><span class='icon'> </span>December 9, 2017</span> <span class="comments"><span class="icon"> </span><a href="#respond">Add comments</a></span> </div> <section id="comments"> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title"><span class="icon"> </span>Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/list/C/TCU_31.ZIP/INFO/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://www.pcorner.com/wp-comments-post.php" method="post" id="commentform" class="comment-form"><span></span> <p> <label for='comment' class='textarea suf-comment-label'>Your Comment</label> <textarea name='comment' id='comment' cols='60' rows='10' tabindex='4' class='textarea'></textarea> </p><p class="form-allowed-tags">You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: <code><a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> </code></p> <p> <label for='author' class='suf-comment-label'>Name</label> <input type='text' name='author' id='author' class='textarea' value='' size='28' tabindex='1' /> (required) </p> <p> <label for='email' class='suf-comment-label'>E-mail</label> <input type='text' name='email' id='email' value='' size='28' tabindex='2' class='textarea' /> (required) </p> <p> <label for='url' class='suf-comment-label'>URI</label> <input type='text' name='url' id='url' value='' size='28' tabindex='3' class='textarea' /> </p> <p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Submit Comment" /> <input type='hidden' name='comment_post_ID' value='4298' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="84478f589e" /></p><p style="display: none !important;"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="179"/><script>document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form> </div><!-- #respond --> </section> <!-- #comments --> </article><!--/post --> <nav class='post-nav fix'> <table> <tr> <td class='previous'><a href="https://www.pcorner.com/list/UNP/FIXSCG.ZIP/INFO/" rel="prev"><span class="icon"> </span> UNP – FIXSCG.ZIP</a></td> <td class='next'><a href="https://www.pcorner.com/list/UNP/DB3UNP.ZIP/INFO/" rel="next"><span class="icon"> </span> UNP – DB3UNP.ZIP</a></td> </tr> </table> </nav> </div><!-- content --> </div><!-- main col --> <div id='sidebar-shell-1' class='sidebar-shell sidebar-shell-right'> <div class="dbx-group right boxed warea" id="sidebar"> <!--widget start --><aside id="block-6" class="dbx-box suf-widget widget_block"><div class="dbx-content"> <h2 class="wp-block-heading">Donate</h2> </div></aside><!--widget end --><!--widget start --><aside id="block-7" class="dbx-box suf-widget widget_block widget_text"><div class="dbx-content"> <p>Please help defray the cost of running this free service, send Zelle payment to The Programmer's Corner at donation@pcorner.com</p> </div></aside><!--widget end --><!--widget start --><aside id="text-7" class="dbx-box suf-widget widget_text"><div class="dbx-content"> <div class="textwidget"><div style="display:inline-block;width:160px;height:1200px;overflow:hidden"> <div style="height:600px;overflow:hidden"> <script type="text/javascript"> amzn_assoc_placement = "adunit0"; amzn_assoc_enable_interest_ads = "true"; amzn_assoc_tracking_id = "zca-20"; amzn_assoc_ad_mode = "auto"; amzn_assoc_ad_type = "smart"; amzn_assoc_marketplace = "amazon"; amzn_assoc_region = "US"; amzn_assoc_linkid = "ea8faac85a6c9ee94ab5174bccaeb487"; amzn_assoc_emphasize_categories = "13900871"; amzn_assoc_fallback_mode = {"type":"search","value":"DOS Windows"}; amzn_assoc_default_category = "All"; </script> <script src="//z-na.amazon-adsystem.com/widgets/onejs?MarketPlace=US"></script> </div> <div style="width:160px;height:600px;overflow:hidden"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" style="display:inline-block;width:160px;height:600px" data-ad-client="ca-pub-8001169946558833" data-ad-slot="3404908173"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div></div> </div></aside><!--widget end --><!--widget start --><aside id="text-4" class="dbx-box suf-widget widget_text"><div class="dbx-content"> <div class="textwidget"><div class="alignleft" style="height:250px"> <script type='text/javascript'> amzn_assoc_ad_type = 'banner'; amzn_assoc_tracking_id = 'zca-20'; amzn_assoc_marketplace = 'amazon'; amzn_assoc_region = 'US'; amzn_assoc_placement = 'assoc_banner_placement_default'; amzn_assoc_linkid = 'IHR4HJGBAKD7GTXW'; amzn_assoc_campaigns = 'primemain'; amzn_assoc_p = '12'; amzn_assoc_banner_type = 'promotions'; amzn_assoc_banner_id = '1MDTME9E9G651CJTDA82'; amzn_assoc_width = '300'; amzn_assoc_height = '250'; </script> <script src='//z-na.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&Operation=GetScript&ID=OneJS&WS=1'></script> </div></div> </div></aside><!--widget end --><!--widget start --><aside id="text-6" class="dbx-box suf-widget widget_text"><div class="dbx-content"> <div class="textwidget"><div class="alignleft" style="height:250px"> <script type='text/javascript'> amzn_assoc_ad_type = 'banner'; amzn_assoc_tracking_id = 'zca-20'; amzn_assoc_marketplace = 'amazon'; amzn_assoc_region = 'US'; amzn_assoc_placement = 'assoc_banner_placement_default'; amzn_assoc_linkid = 'ITD6QMTPEKWARMWK'; amzn_assoc_campaigns = 'student_usa'; amzn_assoc_p = '12'; amzn_assoc_banner_type = 'promotions'; amzn_assoc_banner_id = '048JV5R198MXDXRBR1R2'; amzn_assoc_width = '300'; amzn_assoc_height = '250'; </script> <script src='//z-na.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&Operation=GetScript&ID=OneJS&WS=1'></script> </div></div> </div></aside><!--widget end --><!--widget start --><aside id="text-5" class="dbx-box suf-widget widget_text"><div class="dbx-content"> <div class="textwidget"><div class="alignleft" style="height:250px"> <script type='text/javascript'> amzn_assoc_ad_type = 'banner'; amzn_assoc_tracking_id = 'zca-20'; amzn_assoc_marketplace = 'amazon'; amzn_assoc_region = 'US'; amzn_assoc_placement = 'assoc_banner_placement_default'; amzn_assoc_linkid = 'VDMKO73JLHN6K4FF'; amzn_assoc_campaigns = 'echo'; amzn_assoc_p = '12'; amzn_assoc_banner_type = 'promotions'; amzn_assoc_banner_id = '146870N94VDD8MAPHT02'; amzn_assoc_width = '300'; amzn_assoc_height = '250'; </script> <script src='//z-na.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&Operation=GetScript&ID=OneJS&WS=1'></script> </div></div> </div></aside><!--widget end --><!--widget start --><aside id="block-3" class="dbx-box suf-widget widget_block widget_text"><div class="dbx-content"> <p></p> </div></aside><!--widget end --></div><!--/sidebar --> </div> </div><!-- /container --> </div><!--/wrapper --> <footer> <div id='page-footer'> <div class='col-control'> <div id="cred"> <table> <tr> <td class="cred-left">© 2018 <a href='http://www.pcorner.com'>The Programmer's Corner</a> by Personalized Computer Systems </td> <td class="cred-center"><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-8001169946558833" data-ad-slot="6568049104"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </td> <td class="cred-right"></td> </tr> </table> </div> </div> </div> </footer> <!-- 22 queries, 54MB in 0.895 seconds. --> <!-- location footer --> <script type='text/javascript'> //<![CDATA[ jQuery(document).ready(function($) { $('html').MagicLiquidizerTable({ whichelement: 'table', breakpoint: '780', headerSelector: 'thead td, thead th, tr th', bodyRowSelector: 'tbody tr, tr', table: '' }) }) //]]> </script> <script type='text/javascript' src='https://www.pcorner.com/wp-includes/js/comment-reply.min.js?ver=6.2.4' id='comment-reply-js'></script> <script defer type='text/javascript' src='https://www.pcorner.com/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1688929866' id='akismet-frontend-js'></script> </body> </html> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/ Object Caching 18/44 objects using disk Database Caching 18/37 queries in 0.325 seconds using disk Served from: www.pcorner.com @ 2024-03-19 09:25:13 by W3 Total Cache --><script>(function(){if (!document.body) return;var js = "window['__CF$cv$params']={r:'866c69f189495a52',t:'MTcxMDg0MDMxMy41NTgwMDA='};_cpo=document.createElement('script');_cpo.nonce='',_cpo.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js',document.getElementsByTagName('head')[0].appendChild(_cpo);";var _0xh = document.createElement('iframe');_0xh.height = 1;_0xh.width = 1;_0xh.style.position = 'absolute';_0xh.style.top = 0;_0xh.style.left = 0;_0xh.style.border = 'none';_0xh.style.visibility = 'hidden';document.body.appendChild(_0xh);function handler() {var _0xi = _0xh.contentDocument || _0xh.contentWindow.document;if (_0xi) {var _0xj = _0xi.createElement('script');_0xj.innerHTML = js;_0xi.getElementsByTagName('head')[0].appendChild(_0xj);}}if (document.readyState !== 'loading') {handler();} else if (window.addEventListener) {document.addEventListener('DOMContentLoaded', handler);} else {var prev = document.onreadystatechange || function () {};document.onreadystatechange = function (e) {prev(e);if (document.readyState !== 'loading') {document.onreadystatechange = prev;handler();}};}})();</script><script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>