Results 1 to 3 of 3

Thread: Test Page for Copy HIGHLIGHT-Tagged Code From Fourms [IE Addin]

Threaded View

  1. #1

    Thread Starter
    PoorPoster iPrank's Avatar
    Join Date
    Oct 2005
    Location
    In a black hole
    Posts
    2,729

    Test Page for Copy HIGHLIGHT-Tagged Code From Fourms [IE Addin]

    This thread is test page for Copy HIGHLIGHT-Tagged Code From Fourms [IE Addin]


    vb Code:
    1. ' Hello World in Visual Basic 6
    2.  
    3. Private Sub Form_Load()
    4.     Print "Hello World"
    5. End Sub

    vb.net Code:
    1. 'Hello World in Visual Basic .NET (VB.NET)
    2.  
    3. Imports System.Console
    4.  
    5. Class HelloWorld
    6.  
    7.     Public Shared Sub Main()
    8.         WriteLine("Hello, world!")
    9.     End Sub
    10.  
    11. End Class
    CSharp Code:
    1. // Hello World in Microsoft C# ("C-Sharp").
    2.  
    3. using System;
    4.  
    5. class HelloWorld
    6. {
    7.     public static int Main(String[] args)
    8.     {
    9.         Console.WriteLine("Hello, World!");
    10.         return 0;
    11.     }
    12. }

    CPP Code:
    1. // Hello World in C++ (pre-ISO)
    2.  
    3. #include <iostream.h>
    4.  
    5. main()
    6. {
    7.     cout << "Hello World!" << endl;
    8.     return 0;
    9. }


    PHP Code:
    1. <?php
    2.   // Hello World in PHP
    3.   echo 'Hello World!';
    4. ?>

    Code:
    ' Use normal Ctrl+C on CODE blocks
    ' Hello World in Visual Basic 6
     
    Private Sub Form_Load()
        Print "Hello World"
    End Sub
    Last edited by iPrank; May 24th, 2007 at 01:11 PM.
    Usefull VBF Threads/Posts I Found . My flickr page .
    "I love being married. It's so great to find that one special person you want to annoy for the rest of your life." - Rita Rudner


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width