Buy me a beer
Nanowrimo

ScriptFrenzy
Administration
Categories
Category Archives: Programming
C++ class notes
An algorithm is a step by step problem solving process in which a solution is reached in a finite amount of time. Structured programming involves dividing problems into smaller and smaller subprograms The maximum number of significant digits is called … Continue reading
PHP Basics
PHP can be embedded alongside HTML <h1>This is Default PHP Syntax</h1> <?php echo “<p>This is dynamic output</p>”; ?> <p>This is static output</p> You can use PHP as many times as needed within a given page <html> <head> <title><?php echo “This … Continue reading
Visual Basic Naming Conventions
Prefix Object Type Example ——————————————————- ani Animation button aniMailBox bed Pen Bedit bedFirstName cbo Combo box and drop down list box cboEnglish chk Checkbox chkReadOnly clp Picture clip clpToolbar cmd (3d) Command button (3D) cmdOk (cmd3dOk) com Communications comFax ctr … Continue reading
Handy Reference Guide
The code examples are Visual Basic .Net Symbol Relation Examples > greater than Decimal.Parse(AmountTextBox.Text) > LimitDecimal CorrectInteger > 75 < less than Integer.Parse(SalesTextBox.Text) < 10000 NameTextBox.Text < NameString = equal to PasswordTextBox.Text = “101″ <> not equal to FreshmanRadioButton.Checked <> … Continue reading
Reserved Words
Reserved words (also called keywords) are special words that are part of the JavaScript language syntax. abstract final public boolean finally return break float short byte for static case function super catch goto switch char if synchronized class implements this … Continue reading
Basic JavaScript
JavaScript programs run from within a Web page (either an HTML or XHTML document). That is, you type the code directly into the Web page code as a separate section. JavaScript programs contained within a Web page are often referred … Continue reading
XHTML Phrase Elements
<abbr> Specifies abbreviated text <acronym> Identifies an acronym <cite> Defines a citation <code> Identifies computer code <dfn> Marks a definition <em> Defines emphasized text <kbd> Indicates text that is to be entered by a visitor to a Web site <q> … Continue reading

