Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. I would have trouble starting a flash app from scratch but I worked on a very conplex app while on my college work term...I learned alot btu doubt I could reproduce it.From that answer I just looked on the Macromedia site...hehe
  2. wouldn't you use this eventMovieClip.onPressand have is execute a function that redirects the url??I do not know much ActionScript...I am trying
  3. http://www.learnflash.com/flashtutorials2.htmhttp://www.flashkit.com/tutorials/http://www.echoecho.com/flash.htmThose are the first 3 results I got from googel...learn to use it....it can find anything
  4. aspnetguy

    ASP login

    yes, the seesion variables will be carried between pages so if you set them once you authenticate the user on the login page you can check to see if they are logged in on all other pages before proceeding. YOu will need to execute the select staement on the page where you setup their profile form and populate that form with the result you get from the select statement.
  5. aspnetguy

    page height 100%

    That line is read only by IE and ignored by all other browsers. This lets me set IE specific attributes. The '-' is one of serveral none IE CSS hacks.so the value above that line is what all browsers read then IE get s new value on the next line since IE is the one always out of whack.
  6. The above query does not give me an error and executes correctly.How ever this query is giveing the 'updateable query' error. UPDATE Daily SET CashAccount = (SELECT SUM(Record.Price) FROM Record, Trans WHERE ((Record.TransID)=(Trans.TransID)) AND ((Trans.TransCash)=True))- (SELECT SUM(Record.Price) FROM Record, Trans WHERE ((Record.TransID)=(Trans.TransID)) AND ((Trans.TransCash)=False))WHERE ((Daily.Date)=วันที่); All I did was download the db and open it I did not change any permissions.Perhaps you could just download it form the link you provided and it may work.
  7. you could try singing up herehttp://www.phpbbforfree.com/but I am not sure...sorry thats the best I can do. You may need to set it up on your local machine for testing.
  8. aspnetguy

    page height 100%

    this is from one of the sites I am designing. you may have ot play with the percentages to get it to do exactly what you want. html, body { margin: 0px; height: 100%; background: #000; color: #b8b8b8; font-family: verdana, sans-serif; font-size: 7pt; } .wrapper { height: 100%; -height: 100%; width: 439px; margin: auto; border-left: 3px solid #313131; border-right: 3px solid #313131; } .menu { float: left; width: 120px; height: 78.4%; /*FF*/ -height: 78.6%; /*IE*/ border-right: 3px solid #313131; padding: 5px; padding-top: 0px; margin: 0px; } .menu a { display: block; color: #BE6B0F; } .menu a:hover { color: #EE7C1D; } .banner { border-bottom: 3px solid #313131; border-top: 3px solid #313131; padding: 0px; margin: 0px; } .content { float: left; width: 296px; padding: 5px; padding-top: 0px; } HTML <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><head> <title>=CAFL= Bravery Valor Honor!</title> <link rel="stylesheet" type="text/css" href="cafl.css"/></head><body> <div class="wrapper"> <img src="images/caflbanner.gif" alt="" class="banner"/><br/> <div class="menu"> <!-- #include file="menu.inc" --> </div> <div class="content"> <div style="font-size:8pt;font-weight:bold;text-align:center;padding-top:5px"> Welcome to =CAFL=! </div><br/>content </div> </div></body></html>
  9. That link ends up at the cjb homepage.Now that I think about the info I gave you above was for IPB...I think phpbb has seperate template files if I remeber correctly. If you use a host like cbj that provides the board alrewady setup you probably can't access the templates.
  10. Well try using some other skins....by installing them it will help you see the different components of a phpbb skin.There is basically 2 parts. The 'headers' or the layout of the template and the CSS (most work involved) you can modify the existing css classes to make the site look how you want.You never know you may find a skjn that is close to what they want and you need to make only some small changes.Good luck
  11. aspnetguy

    Amazing sites

    Yup flash can do some amazing things...I wish I knew more about it.
  12. You can get skins/mods in lots of places. Try some of them out first to see how they work before attempting your own.http://www.phpbbstyles.com/http://www.phpbb-design.com/
  13. aspnetguy

    Comment ....

    yup and c# and php and javascript
  14. Once you have PHP and MySql installed and the phpBB folder in your server root, you can naviagate to install.php.The package you downloaded should have step by step instructions on how to install.
  15. aspnetguy

    Comment ....

    .myClass{ width:100px; color:#b8b8b8; /*This is the comment*/ background-color: #fff;}
  16. aspnetguy

    Post website

    Go with a host it is much cheaper and less work then trying to host it your self.Brinkster is really good and have very cheap packages.
  17. aspnetguy

    = Uuer Input

    Or change your password, lol
  18. aspnetguy

    SQL: get row num

    $rownum = 0;$i = 0;$resource = mysql_query ("SELECT * FROM orders");$numberOfRecords = mysql_numrows($resource);while($i < $numberOfRecords){ if(mysql_result($resource,$i,'id') == '5'); $rownum = $i; $i++;}
  19. Did you right click the db itself and them set the permissions from there??? Your problem is a permissions issue.
  20. ok sorry...to get them to overlap you will have to use position absolute...I didn't understand that at first....try wrapping both tables in a div then set a width and put margin: 0 auto on the div. Remove maring: 0px auto from both tables.Also instead of absoute use position relative. You will have to adjust the 90px...it should be relative to the enclosing div not the whole page.That should work
  21. oops, sorry for the double post.
  22. change #menustrip{position:absolute;top:90px;background: white;margin:0px auto;height:10px;width:780px;} to #menustrip{background: white;margin:0px auto;margin-top:90px;height:10px;width:780px;} it is your position:absolute that is messing it up, try doing it without that
  23. aspnetguy

    Quick Question

    You raise a good question. I am not 100% sure how PHP does it but in JavaScript if you declare a global variable and then change the value within a function the new value now becomes the global value so anytime the global variable is called (in or outside of a function) the value is whatever the last process set it to not necessarily the original value.Hope that helps...give it a test and see if PHP works the same way...I suspect that it does.
  24. To acheive a nice clean horizontal menu useHTML <ul> <li><a href="">blah</a></li> <li><a href="">blah</a></li> <li><a href="">blah</a></li> <li><a href="">blah</a></li> <li><a href="">blah</a></li></ul> CSS li{display:inline}
  25. aspnetguy

    asp characters

    you can use for a space but there is no character for a tab.You can use CSS to do this. Use divs and margins
×
×
  • Create New...