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: *

  1. MasterKaos

    connecting to external SMTP server in office that uses MS Exchange

    Hi, At my current place of work we have the office mail on outlook connected to a MS Exchange server. I have a portable email client that tries to connect to my external mail server. I am able to receive mail without problems, but i am unable to send. I;m assuming this is becuase SMTP port 25...
  2. MasterKaos

    Excel: adding / subtracting times, and "negative time"

    Thanks GlennUK! Works wonderfuly. Just one more question, is it possible to input the time / min seperator as a dot rather than a colon? I've set the formatting on the column to be hh.mm but if i type in a dot it tries to do some calculation on it or something. The idea is i could enter data...
  3. MasterKaos

    Excel: adding / subtracting times, and "negative time"

    I'm trying to create a spreadsheet to keep track of horus worked, to see each day that i have worked more / less than the standard working day (7.5 hrs) For example: Start Time ¦ Break ¦ End Time ¦ Overtime 09:45 ¦ 0:45 ¦ 17:45 ¦ -0:15 09:00 ¦ 1:00 ¦ 18:00 ¦ 0:30 Then i...
  4. MasterKaos

    __call() not being called!

    running version 5.2.1. Don't you think if i was running < 5 i'd get syntax errors for 'public', etc? ---------------------------------------------------------------------------- The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts...
  5. MasterKaos

    __call() not being called!

    Am i doing something wrong here, or is this a PHP bug? <?php class Foo{ public function __call($name, $arguments){ return 'foo'; } } class Foo_Bar extends Foo { public function getFoo(){ return parent::getFoo(); //line 11 } } $foo = new Foo(); $foobar = new Foo_Bar(); echo...
  6. MasterKaos

    class diagram generation

    Huh? Search google you mean? I'm not looking for a tutorial, i know how to draw class diagrams. I just want software that can do this mundane task for me... If your search resulted in such software, perhaps you could provide a link? Thanks...
  7. MasterKaos

    class diagram generation

    Hi, Does anyone know of software that can convernt phpdoc comments into a UML class diagram? If it could generate php code based on class diagrams that would be neat as well! Preferably open source or free trial or some such. Cheers...
  8. MasterKaos

    mod rewrite: infinte GET vars

    We are developing a PHP framework which will feature SEF urls. The requirement is that mod rewrite will convert url elements into GET vars. We want to keep this nice and arbitrary for easy re-factoring. Here's the idea: www.domain.com/someclass/data/moredata =...
  9. MasterKaos

    mod_rewrite for SE friendly URLs

    I’m a total newb when it comes to regex, so I was wondering if someone could help me come up with the correct mod rewrite rule for the following scenario: When this url is requested domain.com/sub/directory/file.php This url is called domain.com/?p=sub.directory.file (or...
  10. MasterKaos

    switch between overlapping layers?

    well i'm getting there slowly but surely. Things are looking a lot better now. Seems sticking the whole thing in a good ole table helped plenty. That and having a few drinks with the mates before sitting down to the CSS again. CSS is a bit of a mystery to me, and maybe that's the key, not doing...
  11. MasterKaos

    switch between overlapping layers?

    I'm trying to achieve the effect of something similar to tabs in Windows dialogs, so that when clicked a tab shows a section relevent to that tab. I have managed to do something similar in the past, but now i can't get the divs to position correctly in FireFox. Looks fine in MSIE...
  12. MasterKaos

    image swaps and imagemaps

    Thanx BillyRay, that did the trick!!! Note to anyone that visits the above URL: the feature i sought help about now works, whereas other things may not since it's under development. ---------------------------------------------------------------------------- The first 90% of the code accounts...
  13. MasterKaos

    image swaps and imagemaps

    I am trying to swap the underlying imagemap that belongs to an image i am swapping. What i need to do is set the usemap attribute. I have had some success by using document.pic.setAttribute("usemap", "#map"); where pic is the id of the image element. This works correctly in FireFox, but not in...
  14. MasterKaos

    MySQL password doesn't work anymore

    A few weeks / months ago i set up MySQL 4.1.10a on my ClarkConnect gateway / router / dev server. Once it was up and running i changed the password for root to one i can remember quite well and always use for development work. I logged in successfully using that password, did some of the post...
  15. MasterKaos

    Problem with Floats in Firefox

    Thank you very much Vragabond!!! ---------------------------------------------------------------------------- The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.
  16. MasterKaos

    Problem with Floats in Firefox

    Once again I am pulling my hair out trying to get this to work: http://inprogress.uniquesolutions.com.au/smehub/performance_summary.php Looks correct in IE 6 on XP SP2, looks incorrect on Firefox 1.04, and probably most other browsers. I've tried all the combinations of clear:both that i...
  17. MasterKaos

    anchors not working on safari / msie mac

    Yes, i have been told it works on FireFox for mac. In my experience, IE for mac has been the biggest pain to get HTML to work on. I mean in the past, things that worked on everything from netscape 6 to Opera on wintel, firefox, mozilla etc on linux, and even sfari on mac, would not work on msie...
  18. MasterKaos

    anchors not working on safari / msie mac

    Hehe i meant graphic designers that don't take into account anything about HTML, CSS, standards, accessability, fast loading pages etc ;-) ---------------------------------------------------------------------------- The first 90% of the code accounts for the first 90% of the development time...
  19. MasterKaos

    anchors not working on safari / msie mac

    Hehe, yeah BillyRay is right, i'm touchy on that point ;-) Sorry if i went off BillRay, but this project has been a bit of a nightmare, and a lesson for me to stay far away from any site that's been designed / coded by a graphic designer. It is now a requirement that anyone wishing me to work...
  20. MasterKaos

    anchors not working on safari / msie mac

    Expected Behaviour: Click on "Brisbane", and the div where the text content is scrolls to the contact address of the Brisbane office. What is Happening in Safari: Click on "Brisbane", nothing happens. What is Happening in MSIE: Click on "Brisbane" entire page scrolls down to a blank area of...

Part and Inventory Search

Back
Top