Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: nexius
  • Order by date
  1. nexius

    Session Variables Life Time Too Short

    That's it, thanks
  2. nexius

    Session Variables Life Time Too Short

    Hi I have a site that relies heavily on session variables. After awhile tho, the session variables seem to be deleted automatically and I'm wondering if there is a way to keep them alive longer? Any help appreciated.
  3. nexius

    Tricks to speeding up the load time...

    Alright well I've got it down to a few seconds now... And I'm pretty much out of ideas. Can anyone tell me if this seems a little slow? http://www.3delement.com/newsite
  4. nexius

    Tricks to speeding up the load time...

    Thanks DRJ478. I tried what you said, and outputed the total time it took to generate it... I couldn't believe that it was 7 seconds. Obviously this needs optimizing Thanks again
  5. nexius

    Tricks to speeding up the load time...

    Hey I've almost finished a web page based on php but I find that the loading time is too slow. Now, the php script is executed on the server, so shrinking the size of the php script isn't going to speed anything up, is it? ( I'm using some unnecessary includes that could be organized ) Then...
  6. nexius

    explorer.exe is hogging my CPU

    Thanks Linney Somehow gator had snuck its way into my computer!
  7. nexius

    explorer.exe is hogging my CPU

    During the last week or so, I've encountered a problem where my computer slows down very gradually until I can barely do anything! I have a 3 Ghz with 512 Ram so it should theoretically be blazingly fast. The problem is explorer.exe (when I look in the processes under the task manager) takes up...
  8. nexius

    Resizing parts of a table... ?

    Here's some code if you're too lazy to look it up function fixTables() { var tableLength = document.images['imgSpan'].width; for (var i=0; i< 9; i++) { var elemName = 'cell' + i; document.getElementById(elemName).style.width = tableLength - lengths[i]; } } In my case, there is...
  9. nexius

    Resizing parts of a table... ?

    Hey joelmac, have you got it yet? Sorry I really should have described my solution... I know how frustrating that can be when you finally find a thread with the same problem and all the guys says is : "I fixed it! Woohoo!" Anyway What I did was I included a blank image of zero height in the...
  10. nexius

    Flushing only the written parts of a buffer to a file (using fstream)

    Hi I'm using fstream to log some messages to a file and there are some cases where it's important to flush the buffer to the file instead of letting it flush when the buffer is full. This works, it's just that along with the written parts of the buffer, it writes all this garbage to the file...
  11. nexius

    Where is my C/C++ tab in project properties? It's not there...

    I just got Visual studio .NET (I use it at work all the time) but for some reason when I view project properties, my visual studio doesn't have a c/c++ tab... I looked in the help files but it didn't tell me anything. Anybody know why? THanks
  12. nexius

    VS Net :: Project recompiles every build! Why?

    Hi I have a solution in VS.NET with a number of projects that I'm working on. A lot of the time, a project depends on another and so before building it VS NET checks to see whether the dependent project has been compiled yet, and most times it will find that it is up to date. However, one...
  13. nexius

    Resizing parts of a table... ?

    YAY I figured it out Nevermind :)
  14. nexius

    Resizing parts of a table... ?

    The page does work though when I just call changeDims with 'cell' instead of 'cell[1]' btw I only need this to work with IE...
  15. nexius

    Resizing parts of a table... ?

    Hey I think I have a pretty good idea of how to do it now but I can't get your idea to work... Here's a test page I wrote that doesn't work: <html> <head> <title>Untitled Document</title> <script> function changeDims(elemName, w, h) { document.getElementById(elemName).style.width = w...
  16. nexius

    Resizing parts of a table... ?

    Thanks Spiny, that helps Now I need to figure out how to get the width of each table... I tried giving the table an ID and writing: document.getElementById(tableID).style.width But this doesn't return anything... Unless I set it equal to something first. Is there another way to find the...
  17. nexius

    Resizing parts of a table... ?

    Hi The site I'm working on right now includes a php script that builds a table so that it looks like a tree of links. The problem is that there is no way to tell what the final width of the table will be... And since I need to specify exact widths for each column (otherwise it looks odd), I'm...
  18. nexius

    Keeping cells of table at fixed width!

    Thanks tviman That must be it then. The problem with that is there is no way to pre-calculate the width of the table... At the moment I am planning on building the table via php, then once it loads fixing the widths of the cells with javascript.... Reading up on some javascript now
  19. nexius

    Keeping cells of table at fixed width!

    Hi I'm working on this php script that generates a tree of links. This works great in netscape/mozilla but in IE some cells are much to wide and look ugly. See http://www.3delement.com/newsite/index.php?tree=a:5:{i:109;i:1;i:2;i:1;i:1;i:1;i:63;i:1;i:81;i:1;}#81 I don't know what else to do...

Part and Inventory Search

Back
Top