+ Reply to Thread
Page 87 of 363 FirstFirst ... 3777858687888997137187 ... LastLast
Results 861 to 870 of 3627

Thread: Clipboard Game

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

    Re: Clipboard Game

    Code:
    Intensive
    Working on something?

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

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

    Re: Clipboard Game

    well not anymore - it was for a post in the php forum.

    Code:
    http://forum.codecall.net/php-forum/9170-unknown-column-member-where-clause-help-php-new-post.html

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

    Re: Clipboard Game

    Code:
    http://forum.codecall.net/php-forum/9170-unknown-column-member-where-clause-help-php-new-post.html
    checking...

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

    Re: Clipboard Game

    Code:
    #include <iostream>
    
    using namespace std;
    
    int main() 
    {
        bool z = false;
        
        
        // do while, for and while loop
        
        do { // do all of these loops, while z is false
           for (int i = 0; i <= 10; i++) { // until i is greater than 10, perform these while loop
               cout << i << "=" << i;   
               
               while (z == false) { // perform these as long as z is false
                     int b = 4;
                     int c = 12;
                     int d = 5;
                     
                     cout << b << " + 1 = " << b + 1; 
                     cout << "\n";
                     
                     cout << c << " - 2 = " << c -2 << ". C which now equals 10 + 4 = 14" << c + 4 << "\n";
                     d = d + 1; // increase d
                     
                     if (d == 10) { // when d is greater than 10, change z to true which should break the while loop, and the do while loop as well.
                        b = 10;
                        c = 14;      
                        z = true;
                     }
               } 
           }    
        } while (z != true);
        
        cin.get();
    }

  6. #865
    Join Date
    Jul 2006
    Location
    Amherst, New York, United States
    Posts
    6,277
    Blog Entries
    26
    Rep Power
    20

    Re: Clipboard Game

    Code:
    [Removed warez link ~ John]

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

    Re: Clipboard Game

    Code:
    http://s204.photobucket.com/albums/bb52/jwebmaster/?action=view&current=HPIM2163.flv

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

    Re: Clipboard Game

    Code:
    Mustang

  9. #868
    Join Date
    Mar 2008
    Posts
    7,145
    Rep Power
    86

    Re: Clipboard Game

    Code:
    #include <iostream>
    
    using namespace std;
    
    int main() 
    {
        bool z = false;
        
        
        // do while, for and while loop
        
        do { // do all of these loops, while z is false
           for (int i = 0; i <= 10; i++) { // until i is greater than 10, perform these while loop
               cout << i << "=" << i;   
               
               while (z == false) { // perform these as long as z is false
                     int b = 4;
                     int c = 12;
                     int d = 5;
                     
                     cout << b << " + 1 = " << b + 1; 
                     cout << "\n";
                     
                     cout << c << " - 2 = " << c -2 << ". C which now equals 10 + 4 = 14" << c + 4 << "\n";
                     d = d + 1; // increase d
                     
                     if (d == 10) { // when d is greater than 10, change z to true which should break the while loop, and the do while loop as well.
                        b = 10;
                        c = 14;      
                        z = true;
                     }
               } 
           }    
        } while (z != true);
        
        cin.get();
    }

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

    Re: Clipboard Game

    Code:
    Infinity 2008 (Klaas Remix)

  11. #870
    Join Date
    Mar 2008
    Posts
    7,145
    Rep Power
    86

    Re: Clipboard Game

    Code:
    function validate() {
    if(document.frmContact.txtComments.value == "") {
    document.getElementById("error").innerHTML = "<h1 style=\"color:red;\">ERRORS</h1><ul><li>The message field cannot be empty.</li></ul><hr />";
    } else {
    document.getElementById("error").innerHTML = "";
    document.frmContact.btnContact.disabled=true;
    document.frmContact.submit();
    }
    }
    
    function showEmail() {
    if (document.frmContact.chkReply.checked=true) {
    document.getElementById("email").innerHTML = "<label for=\"txtEmail\">E-mail:</label> <input type=\"text\" name=\"txtEmail\" />";
    }
    }
    
    function hideEmail() {
    document.frmContact.chkReply.checked=false;
    document.getElementById("email").innerHTML = "";
    }
    
    function comments() {
    window.location = "guest.php";
    }

+ 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