User Profile

Collapse

Profile Sidebar

Collapse
eboyjr14
eboyjr14
Last Activity: Oct 9 '07, 01:47 AM
Joined: Apr 28 '07
Location: Las Vegas, NV
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • No, I do not get any errors in Firefox ( which is weird ) and when that function is called, it goes to the first tab. When the document gets loaded, it calls Spry.Widget.Tab bedPanels("Tabb edPanels1") just create it at first.Thanks for your help....
    See more | Go to post

    Leave a comment:


  • Here's what I have finally came up with and gave up with ( does not work )
    [CODE=javascript]
    function addMainTab(titl e, content)
    {
    document.getEle mentById('Tabbe dPanels1').firs tChild.innerHTM L += '<li class="TabbedPa nelsTab" tabindex="0">'+ title+'</li>';
    document.getEle mentById('Tabbe dPanels1').last Child.innerHTML += '<div class="TabbedPa nelsContent">'+ content+'</div>';...
    See more | Go to post

    Leave a comment:


  • Spry Tabbed Panels ( Dreamweaver CS3 ) question.

    I have Dreamweaver CS3 and I'm trying out the new Spry stuff like the tabbed panels ( and I like it =P ). I am using the tabbed panels and need to know how to dynamically create a new tab with javascript with some content inside ( and switch to it ). Also, I need to figure out how I can delete tabs at "runtime"? I have tried many things to do this, but Firefox has no new errors in the Error Console and nothing is happening...
    See more | Go to post

  • Javascript dynamically change onkeydown event?

    I have this UserScript for Grease monkey. but I can't get the onleydown event to fire in FIREFOX only. I've looked everywhere!


    [CODE=javascript]// ==UserScript==
    // @name iGoogle Suggest
    // @namespace Devin Samarin
    // @description This automatcally selects the top result for your query.
    // @include *google.com/ig*
    // ==/UserScript==
    function makeRequest() {...
    See more | Go to post

  • eboyjr14
    started a topic Metacity error: The file format is invalid

    Metacity error: The file format is invalid

    I have this xml metacity thing, and it is giving off this error:

    The file format is invalid.
    [code=xml]
    <?xml version="1.0"?>
    <metacity_theme >
    <info>
    <name>Royale</name>
    <author>Devin Samarin</author>
    <copyright>Devi n Samarin, 2007</copyright>
    <date>June 30, 2007</date>
    <description>Ro yale...
    See more | Go to post

  • eboyjr14
    replied to Javascript is not my usual thing...
    Try adding this JavaScript code right before the error:

    And next time,
    Use CODE tags around your code:
    Code:
    ..code goes here..
    Code:
    function getArgs(){
       var args = new Object();
       var query = location.search.substring(1);     // Get query string
       var pairs = query.split("&");                 // Split at ampersand
       search_array = query.split("&");
    ...
    See more | Go to post

    Leave a comment:


  • eboyjr14
    replied to Users Unable To Login To My Site
    in PHP
    What do you have so far?

    I recommend using SESSIONS.
    They are very easy to use.

    In your php.ini file, when session.auto_st art is set to 1, you can just have a variable set that will save until the cookies are deleted or the browser is restarted.

    Just set them like this:

    $_SESSION['username'] = "eboyjr14";

    On the client side, they don't see the value of username,...
    See more | Go to post

    Leave a comment:


  • eboyjr14
    replied to Background Processes on Startup
    in C
    Awesome! Thxxxxxxxxxxxxx xxxxxxxxxxxxxxx xxxx!...
    See more | Go to post

    Leave a comment:


  • eboyjr14
    replied to Background Processes on Startup
    in C
    I pretty new to C++ so I don't know how to do that. I have searched Google for an answer, but can't seem to find that. I am running it for Windows XP....
    See more | Go to post

    Leave a comment:


  • eboyjr14
    replied to stopping setInterval()
    When you call setInterval(), save the returned number. (let's say it is setVar )

    Then you would call clearInterval( setVar ); to stop it.
    See more | Go to post

    Leave a comment:


  • eboyjr14
    started a topic Background Processes on Startup
    in C

    Background Processes on Startup

    I want to have a program that runs ( shown below ) that doesn't show that little black window. ( as a background process ):

    Code:
    #include <cstdlib>
    #include <iostream>
    #include <time.h>
    
    using namespace std;
    
    void startPro()
    {
         system("START C:/PROGRA~1/Yahoo!/Messenger/YahooMessenger.exe");
         system("START C:/PROGRA~1/MOZILL~1/firefox.exe");
    ...
    See more | Go to post

  • eboyjr14
    replied to C++ strtok
    in C
    but... it could be any number, not 2. But... I already figured it out. I would show you the source but its on my iPod and I don't have it with me. Thx, anyway!...
    See more | Go to post

    Leave a comment:


  • eboyjr14
    replied to Dime In a Bottle...
    Hahahaha. Very funny... I guess I could count that....
    See more | Go to post

    Leave a comment:


  • eboyjr14
    replied to Dime In a Bottle...
    That's exactly right!...
    See more | Go to post

    Leave a comment:


  • eboyjr14
    replied to Dime In a Bottle...
    Yeah.... whoops, yeah. It is a bottle.
    See more | Go to post

    Leave a comment:


  • eboyjr14
    replied to C++ strtok
    in C
    Remeber there may not be a +2 or whatever, it could just be Db4
    See more | Go to post

    Leave a comment:


  • eboyjr14
    started a topic Dime In a Bottle...

    Dime In a Bottle...

    Let's say you have a wine glass... with a dime inside. There is a cork on the bottle:


    Code:
                                     .`               
                                   oNMMdyooo-         
                                   dMMMMMMMM+         
                                 :mMMMMMMMMMN`        
                                 yMMMMMMMMMMM`        
                                 dNdMMMMMMosM`
    ...
    See more | Go to post

  • eboyjr14
    replied to Problem compiling, not sure why...
    in C
    Good... I had the same problem when I realized that I had my program still running. ;)
    See more | Go to post

    Leave a comment:


  • eboyjr14
    replied to What compiler do you use?
    in C
    I use

    Bloodshed Dev-C++

    it is free
    the g++.exe is pretty strict ( a good thing ).
    it also does C and C++

    http://www.bloodshed.n et/devcpp.html
    See more | Go to post

    Leave a comment:


  • eboyjr14
    replied to Line Break Madness!
    in PHP
    Instead of using $_GET vars, you should use $_POST since the user cannot see what they sent and they can send a really long message if they want. GET vars has a limited amount of info.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...