Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. you could just say that in your PM...if we chose PHP you want to do that if not you want to do XHTML/CSS
  2. instead of test.submit try this insteaddocument.myform.submit();
  3. that will only put line breaks in the cource code not in html that is rendered
  4. you can store the fname in a Session variable...it will be accessable on all pages
  5. aspnetguy

    PDF's

    I am not sure what you are asking.The thicker lines are 2px thick (combo of 2 1px borders). If you chage in the classes all 1px to 2px you will have the thinner lines as 2px and the thicker lines as 4px.
  6. Guys if you haven't voted for the manager or what project to do please do so...the poll closes tomorrow.
  7. that won't work but you could pass 'B','C' and use document.getElementById()...you'd have to add an id="C", etc of course
  8. aspnetguy

    PDF's

    Yup...give it time you will understand.I used to struggle with colspan and rowspan alot but I can do them in my sleep now...although I use CSS layouts alot more now so it isn't as important anymore.
  9. get him involved. If we have no one interested in helping with flash then the project for sure won't have any.
  10. what does =\. mean...it kinda looks like a guy thats drooling
  11. aspnetguy

    PDF's

    that you cannot do...it is the combination of joining lines from inside squares...alll borders are only 1px wide but were it is thick it ts 2 borders side by side from adjacent cells.
  12. aspnetguy

    PDF's

    replace <td> </td> with <td>1</td> or any other number you want.EDIT: are you familiar with how tables work or just not this complicated?
  13. aspnetguy

    PDF's

    here is the complete code of the soduku board only using 4 classes <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head> <title>Test</title> <style> #grid{border:1px solid #000} #grid td{padding:5px;border:1px solid #000} #grid td.rcell{border-bottom:0px} #grid td.ncell{border-right:0px;border-bottom:0px} #grid td.bcell{border-right:0px} #grid td.xcell{border:0px;padding:0px;} </style></head><body> <table id="grid" cellspacing="0" cellpadding="0" width="100"> <tr> <td class="xcell"> <table cellspacing="0" cellpadding="0" width="100"> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="bcell"> </td> <td class="bcell"> </td> <td> </td> </tr> </table> </td> <td class="xcell"> <table cellspacing="0" cellpadding="0" width="100"> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="bcell"> </td> <td class="bcell"> </td> <td> </td> </tr> </table> </td> <td class="xcell"> <table cellspacing="0" cellpadding="0" width="100"> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="bcell"> </td> <td class="bcell"> </td> <td> </td> </tr> </table> </td> </tr> <tr> <td class="xcell"> <table cellspacing="0" cellpadding="0" width="100"> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="bcell"> </td> <td class="bcell"> </td> <td> </td> </tr> </table> </td> <td class="xcell"> <table cellspacing="0" cellpadding="0" width="100"> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="bcell"> </td> <td class="bcell"> </td> <td> </td> </tr> </table> </td> <td class="xcell"> <table cellspacing="0" cellpadding="0" width="100"> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="bcell"> </td> <td class="bcell"> </td> <td> </td> </tr> </table> </td> </tr> <tr> <td class="xcell"> <table cellspacing="0" cellpadding="0" width="100"> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="bcell"> </td> <td class="bcell"> </td> <td> </td> </tr> </table> </td> <td class="xcell"> <table cellspacing="0" cellpadding="0" width="100"> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="bcell"> </td> <td class="bcell"> </td> <td> </td> </tr> </table> </td> <td class="xcell"> <table cellspacing="0" cellpadding="0" width="100"> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="bcell"> </td> <td class="bcell"> </td> <td> </td> </tr> </table> </td> </tr> </table> </body></html>
  14. aspnetguy

    PDF's

    Yes my code only had 3. What I was asking why did you make 9? And why didn't you just use the code I gave you?
  15. I can't get this drag and drop code to work in FireFox...it works fine in IE. Anyone see the trouble? <html><head> <title>OnMouseMove</title> <script type="text/javascript"> //------------------------------------------------------------- //Get Mouse Position Methods //------------------------------------------------------------- var _x; var _y; var _posx; var _posy; onload= function() { _posx = document.getElementById('posx'); _posy = document.getElementById('posy'); } function getPos(e) { if (!e)var e = window.event||window.Event; if('undefined' != typeof e.pageX) { _x = e.pageX; _y = e.pageY; } else { _x = e.clientX + document.body.scrollLeft; _y = e.clientY + document.body.scrollTop; } _posx.value = _x; _posy.value = _y; } function getX() { return _x; } function getY() { return _y; } if(window.Event && document.captureEvents) document.captureEvents(Event.MOUSEMOVE); document.onmousemove = function(){getPos();dragWindow();} //------------------------------------------------------------- //Create Window Methods //------------------------------------------------------------- var _w = 450; var _h = 150; var _border = '1px solid #818181'; var _c = 0; var _pos = 'absolute'; var _t = 250; var _l = 50; var drag = false; var winObj; function createWindow() { var win = document.createElement('div'); win.style.width = _w + 'px'; win.style.height = _h + 'px'; win.style.border = _border; win.style.position = _pos; win.style.top = (_t + (_c*5)) + 'px'; win.style.left = (_l + (_c*5)) + 'px'; win.id = 'window' + _c; _c++; win.onmousedown = dragAndDrop; document.onmouseup = dragAndDrop; document.body.appendChild(win); } function dragAndDrop(e) { drag = !drag; if(!e)var e = window.event; if(drag) { if(document.all) winObj = e.srcElement; else winObj = e.target; var tmpWin = document.createElement('div'); tmpWin.id = 'tmpWin'; tmpWin.style.width = this.style.width; tmpWin.style.height = this.style.height; tmpWin.style.border = '1px dashed #dedede'; tmpWin.style.position = this.style.position; tmpWin.style.top = this.style.top; tmpWin.style.left = this.style.left; document.body.appendChild(tmpWin); } else { var win = winObj; var obj = document.getElementById('tmpWin'); win.style.top = obj.style.top; win.style.left = obj.style.left; document.body.removeChild(obj); } } function dragWindow() { var obj = document.getElementById('tmpWin'); if(drag) { if(obj) { var x = getX(); var y = getY(); obj.style.top = y + 'px'; obj.style.left = x + 'px'; } } } </script></head><body> x <input type="text" size="5" id="posx"/> <br/> y <input type="text" size="5" id="posy"/> <br/><br/> <a href="java script:createWindow()">Create Window</a></body></html>
  16. aspnetguy

    PDF's

    what was wrong iwth what I gave you? You do not need 9 different classes.
  17. well here http://www.w3schools.com/asp/default.aspand here http://www.w3schools.com/asp/asp_ado.aspwould be a good place to start.
  18. aspnetguy

    PDF's

    you do not give a border style or color in the first line and you need to seperate attributes with (, change this#grid td{padding:5px border:1px}to#grid td{padding:5px; border:1px solid #000}
  19. To be cool .Seriously, I have no real need for it I am mostly just playing with it. I only gave it a 9Gb partition.If I like it enough I may use it all the time for surfing and email, etc and only boot into Windows to play my games.
  20. aspnetguy

    COPPA

    you can create an activation system. Have the email you send to the parents email include a n activation code (randomly generated) and the link to the activation form.They just put in the code and hit send and the account gets activated. You could even make it more automated and just have a link in the email that sends the activation code via $_GET
  21. everything looks to be in order
  22. aspnetguy

    PDF's

    here is a sample...see if you can figure it out from this <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head> <title>Test</title> <style> #grid td{padding:5px;border:1px solid #000} #grid td.rcell{border-bottom:0px} #grid td.ncell{border-right:0px;border-bottom:0px} #grid td.bcell{border-right:0px} </style></head><body> <table id="grid" cellspacing="0" cellpadding="0" width="100"> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="ncell"> </td> <td class="ncell"> </td> <td class="rcell"> </td> </tr> <tr> <td class="bcell"> </td> <td class="bcell"> </td> <td> </td> </tr> </table> </body></html>
  23. var CopyObject = EntryObject;
  24. aspnetguy

    PDF's

    you can make 50 different classes if you want....make as many as you need to get it to look right
×
×
  • Create New...