+ Reply to Thread
Page 38 of 363 FirstFirst ... 2836373839404888138 ... LastLast
Results 371 to 380 of 3627

Thread: Clipboard Game

  1. #371
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,174
    Blog Entries
    13
    Rep Power
    114

    Re: Clipboard Game

    Code:
    $_POST["contact_email"]

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many

     
  3. #372
    Join Date
    Mar 2008
    Posts
    7,145
    Rep Power
    86

    Re: Clipboard Game

    Code:
    http://www.youtube.com/watch?v=QZev4cC7Qzg&feature=related

  4. #373
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,174
    Blog Entries
    13
    Rep Power
    114

    Re: Clipboard Game

    And for the last time tonight before I log off...
    Code:
    $_POST["contact_email"]

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  5. #374
    Join Date
    Mar 2008
    Posts
    7,145
    Rep Power
    86

    Re: Clipboard Game

    Code:
    htmlspecialchars($_POST["contact_email"]);


  6. #375
    Join Date
    Mar 2008
    Location
    The North Pole
    Posts
    13,174
    Blog Entries
    13
    Rep Power
    114

    Re: Clipboard Game

    What the heck, just one more, then I'm out.
    Code:
    $_POST["contact_email"]

    Quote Originally Posted by Jordan View Post
    Good members, like yourself, stick around and post for ages to come!
    Mr. Xav | Blog | Forums

  7. #376
    Join Date
    Aug 2006
    Posts
    11,209
    Blog Entries
    6
    Rep Power
    101

    Re: Clipboard Game

    Code:
    ref=

  8. #377
    Join Date
    Mar 2008
    Posts
    7,145
    Rep Power
    86

    Re: Clipboard Game

    Code:
     import java.awt.*;
    
       public class MovingRects extends SimpleAnimationApplet2 {
    
         public void drawFrame(Graphics g) {
    
                // Draw one frame in the animation by filling in the background
                // with a solid red and then drawing a set of nested black
                // rectangles.  The frame number tells how much the first
                // rectangle is to be inset from the borders of the applet.
    
             int width;    // Width of the applet, in pixels.
             int height;   // Height of the applet, in pixels.
    
             int inset;    // Gap between borders of applet and a rectangle.
                           //    The inset for the outermost rectangle goes
                           //    from 0 to 14 then back to 0, and so on,
                           //    as the frameNumber varies.
    
             int rectWidth, rectHeight;   // The size of one of the rectangles.
    
             width = getWidth();      // Find out the size of the drawing area.
             height = getHeight();
    
             g.setColor(Color.red);         // Fill the frame with red.
             g.fillRect(0,0,width,height);
    
             g.setColor(Color.black);         // Switch color to black.
    
             inset = getFrameNumber() % 15;   // Get the inset for the
                                              //             outermost rect.
    
             rectWidth = width - 2*inset - 1;   // Set size of outermost rect.
             rectHeight = height - 2*inset - 1;
    
             while (rectWidth >= 0 && rectHeight >= 0) {
                g.drawRect(inset,inset,rectWidth,rectHeight);
                inset += 15;       // Rects are 15 pixels apart.
                rectWidth -= 30;   // Width decreases by 15 pixels
                                   //                 on left and 15 on right.
                rectHeight -= 30;  // Height decreases by 15 pixels
                                   //                 on top and 15 on bottom.
             }
    
          }  // end drawFrame()
    
       }  // end class MovingRects

  9. #378
    Join Date
    Aug 2006
    Posts
    11,209
    Blog Entries
    6
    Rep Power
    101

    Re: Clipboard Game

    Code:
    ref=

  10. #379
    Join Date
    Mar 2008
    Posts
    7,145
    Rep Power
    86

    Re: Clipboard Game

    Code:
    Assist in event set-up and tear-down (chairs, tables, etc), hand out event flyers/ postcards and collect market research data from attendees (a verbal survey).

  11. #380
    Jaan Guest

    Re: Clipboard Game

    Code:
    http://www.rate.ee/users/Rag3

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Intercepting Clipboard events
    By mnirahd in forum C and C++
    Replies: 1
    Last Post: 02-01-2011, 12:49 PM
  2. The Clipboard - VB.NET
    By Vswe in forum Visual Basic Tutorials
    Replies: 2
    Last Post: 11-13-2009, 08:14 AM
  3. Copy To Clipboard Help - Probably easy fix...
    By Souluna in forum JavaScript and CSS
    Replies: 1
    Last Post: 07-07-2009, 05:16 AM
  4. Clipboard
    By dirkfirst in forum C# Programming
    Replies: 3
    Last Post: 07-14-2006, 10:06 AM

Tags for this Thread

Bookmarks

Posting Permissions

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