Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
C

cdmlb hotmail com

@cdmlb hotmail com
About
Posts
11
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Animated div textbox?
    C cdmlb hotmail com

    I think I got the OOP working better now, but I'm dumb and can't get it to animate any comments? block1 = new AnimBlock("body1", "content1", 200); block2 = new AnimBlock("body2", "content2", 200); block3 = new AnimBlock("body3", "content3", 200); AnimBlock.prototype.DisplayBlock = DisplayBlock; AnimBlock.prototype.OpenBlock = OpenBlock; AnimBlock.prototype.CloseBlock = CloseBlock; function AnimBlock(body, content, speed) {     this.body = body;     this.content = content;     this.speed = speed;     this.size = 0; } function DisplayBlock() {     if(document.getElementById(this.content).style.display == "block")     {         document.getElementById(this.body).style.height = "0px";         document.getElementById(this.body).style.padding = "0px";         document.getElementById(this.content).style.display = "none";         this.CloseBlock();     }     else     {         this.OpenBlock();         document.getElementById(this.content).style.display = "block";         document.getElementById(this.body).style.padding = "20px";         document.getElementById(this.body).style.height = "auto";     }          this.size = 0; } function OpenBlock() {     if(this.size <= 100)     {         document.getElementById(this.body).style.height = this.size+"px";         this.size++;         setTimeout(function(){this.OpenBlock();}, this.speed);     } } function CloseBlock() {     if(this.size >= 0)     {         document.getElementById(this.body).style.height = this.size+"px";         this.size--;         setTimeout(func

    Web Development csharp javascript html css tutorial

  • Animated div textbox?
    C cdmlb hotmail com

    yeah I know if have to put an if statment at some time for the open and close functions just took them out for not until I can get the oop part of it working first cdmlb

    Web Development csharp javascript html css tutorial

  • Animated div textbox?
    C cdmlb hotmail com

    No one not even going to look at it thanks? cdmlb

    Web Development csharp javascript html css tutorial

  • what is the diffrent between visted link and unvisted link
    C cdmlb hotmail com

    This could help if you are using IIS webserver for your C# asp.net concept. The IIS log files show every single page visited, and all links clicked on. Not for just the current session, but all sessions. Found this made with that suck VB.net, but could be converted to C# in some litle time, since the function name are all prety much the same when it comes to .NET stuff. http://www.15seconds.com/issue/021119.htm IIS log files are normaly stored on in location C:\WINDOWS\system32\Logfiles Prety sure no attibute for a visited link only diff is that a visited link is stored in the browsers history, you click on a link and it gets added to the history/log-files. cdmlb

    Web Development html question

  • what is the diffrent between visted link and unvisted link
    C cdmlb hotmail com

    I'm prety sure it's possible, I have it in my head, but could be tricky. Could always try to use cookies, sessions, you want to do this with what language, because would not be able to do it with just html, you would have to do some javascript, or maybe even server side stuff like asp or php? cdmlb

    Web Development html question

  • what is the diffrent between visted link and unvisted link
    C cdmlb hotmail com

    The syntax is the same, the thing that changes the color is the BROWSERS history and not the html itself. If you want to change the colors of links using Cascading Style Sheets - CSS a {     color: Blue; } a:visited {     color: Red; } cdmlb -- modified at 21:41 Sunday 2nd April, 2006

    Web Development html question

  • Animated div textbox?
    C cdmlb hotmail com

    I'm tring to make Animated div textboxes using the litle OOP that javascript has but ending up with some dead ends. Yeah I have no clue what I'm doing went it comes to OOP with javascript Any hints on what I could do to make a box like this in OOP us jscript? It's easy to do when it's not animated, don't even need OOP. Only reason I need OOP when animted is to keep track of the box being open and closed to animate for each height of each box, but since not sure how to do the OOP using jscript, it's behaving weird. LIVE DEMO NOT ANIMATED http://cdmlb.homelinux.net/sites/wip/projects/prog_script/javascript/text_block/text_block.html LIVE DEMO ANIMATED NOT WORING TO WELL PLAY AROUND WITH EACH BOX A FEW TIMES THE CODE ON THIS PAGE IS THE OOP VERSION< BUT FOR THE DEMO TRIED TO DO IT WITH NO OOP, BECAUSE OOP SUCKS WITH JSCRIPT http://cdmlb.homelinux.net/sites/wip/projects/prog_script/javascript/anim_text_block/anim_text_block.html


    HTML <div id="main1" class="main">         <div id="header1" class="header">                 <a href="javascript:block1.DisplayBlock;" class="title">CLICK HERE TO OPEN AND CLOSE<⁄a>         <⁄div>         <div id="body1" class="body">                 <p id="content1" class="content">                         SOME TEXT GOES HERE.                 <⁄p>         <⁄div>         <div id="footer1" class="footer">         <⁄div> <⁄div>


    CSS .main {         border: blue thin outset; &

    Web Development csharp javascript html css tutorial

  • How do you do an inline a:hover in a tag?
    C cdmlb hotmail com

    [HOW TO DO IT??](javascript:DisplayBlock('content1'))

    How do you do an inline a:hover in a TAG, and not in the HEAD or EXTERNAL FILE...

    cdmlb cdmlb

    ASP.NET javascript tutorial question

  • C# Code works under win2000 but not XP
    C cdmlb hotmail com

    Ever hear to try/catch blocks Ex:

    public void Example()
    {
    try
    {
    //Your Executable code here
    }
    catch(Exceptopn){} //Catches all Excetions
    catch(Excetion e) //Catches all Exceptions also
    {
    //What do you want to do when an excetion has happend
    Console.WriteLine(e.ToString()); //Helps to Debug and find
    //the specific Excetion
    }
    /*
    finaly
    {
    //Code that will always Execute even with Excetion or not
    //The finaly block is optional and is not needed
    }
    */
    }

    One part of my progs #region Constructor private Game(Control cTarget) {   try   {     this.target = cTarget;     this.target.GotFocus += new System.EventHandler(this.Restore);     this.graphics = new GraphicsHandler(this.target);     this.sounds   = new SoundHandler(this.target);     this.keyboard = new InputHandler(this.target);     this.presentState    = new GameState();     this.previousState   = new GameState();     this.presentData     = new GameData();     this.presentDataTemp = this.presentData.DeSerialize();     this.physics = new GamePhysics();     this.InitGame();     Timer.Init();   }   catch(Exception e)   {     MessageBox.Show("ERROR WHILE INITIALIZING GAME " + e.ToString());     return;   }   this.presentState  = GameState.Initialized;   this.previousState = GameState.Initialized;   this.GameLoop(); } #endregion cdmlb

    C# help csharp sysadmin security

  • ???how to a:hover inline???
    C cdmlb hotmail com

    :omg::wtf::eek::eek::sigh: :omg::wtf: how to a:hover inline I know how to do it in the header. I know how to do it in an external css file. But looking online for examples to make the hover effect inline in a tag does not seem to work, most people show examples and they say this should work, and they also says, but it does not. Anyone know how to make the hover effect of an anchor inline work? cdmlb

    ASP.NET css tutorial question

  • how to a:hover inline
    C cdmlb hotmail com

    how to a:hover inline I know how to do it in the header. I know how to do it in an external css file. But looking online for examples to make the hover effect inline in a tag does not seem to work, most people show examples and they say this should work, and they also says, but it does not. Anyone know how to make the hover effect of an anchor inline work? cdmlb

    Web Development css tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups