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. boardtc

    XHTML writing text on image, full table not showing

    :-) I'm curious what would you do it you wanted the text in another position on the image?
  2. boardtc

    XHTML writing text on image, full table not showing

    Ah, yes, works great! Much cleaner. I was using a table because I did not know a better way, cheers. Thanks for taking the time to teach me.
  3. boardtc

    XHTML writing text on image, full table not showing

    That helped! progress, thank you. I saw the full height but not the full width of the image. I added a width, which worked. Then I noticed that removing the height: 100% had no effect. I resized as it was showing too wise in IE. Final code: #fullheighttable { border:0; padding:0...
  4. boardtc

    XHTML writing text on image, full table not showing

    Good spot. I added the px units but it has not solved the problem. I am still only seeing the top left of the image with the text on it.
  5. boardtc

    XHTML writing text on image, full table not showing

    I am drawing text on an image in the top left corner. I want the code to be XHTML. The text shows fine but only a little bit of the image shows as opposed to the whole amount. I've experimented for ages with this and my current code is: <table id="fullheighttable"> <tr><td class="photoHeight"...
  6. boardtc

    command line list of users?

    Thanks for the reply. I found a great util to do this. Check out http://www.appling.org/ss2xml/
  7. boardtc

    List all user updates

    Very cool. never noticed that. Thanks. Tom.
  8. boardtc

    List all user updates

    Is there a way to get a get a list of all the updates a user has made to a project? Thanks, Tom.
  9. boardtc

    command line list of users?

    Is there a way to get a list of the users defined in visual source safe admin form the command line? Thanks, Tom.
  10. boardtc

    accessing server_databases.php from other box

    Thanks. I can access stuff installed on the web server no problem. I'll readme on easyphp and se how I can look at the logs.
  11. boardtc

    accessing server_databases.php from other box

    I have easyphp running on my windows ny server working great. Previously I was able to do http://192.168.1.1/mysql//server_databases.php form my machine to access phpmyadmin. I have now moved to a new xp prp sp 2 box and when I do http://192.168.1.1/mysql//server_databases.php I get a 403 ...
  12. boardtc

    Join problem....

    interesting, ta for the post. we display the above list in a listview which allows them to navigate through players in the system. If they choose delete on one of the entries, we have a separate mapper that deals with deletes so this wouldn't be a problem for us methinks. cheers, tom.
  13. boardtc

    Join problem....

    Thanks a lot for the extra info. In this case if all the returned values are equal i'm happy with either row. I'm curious what your argument against distinst is... is it because it's just not exact enough and not "pure"...? Thanks again, tom.
  14. boardtc

    Join problem....

    Thanks for the tips. I tried : LEFT JOIN (Conditions D INNER JOIN ( SELECT distinct Owner_Oid, MaxCond = Max(Cond_TrainingStatusRO) FROM Conditions GROUP BY Owner_Oid ) DMax ON D.Owner_Oid = DMax.Owner_OID AND...
  15. boardtc

    Join problem....

    Panacing i was at the end of the day when i thought it had all been solved and then saw this example! yep duplicate LastUpdated fields. Actually I only started using LastUpdated because sometimes there are (legitimatly) duplicate Cond_TrainingStatusRO and I only want one record per person -...
  16. boardtc

    Join problem....

    Thanks for the info, very useful. Esquared- testing just came back with a duplicate being produced, 2 records for the same person with the same Cond_TrainingStatusRO. I've reproduced it myself running (your) the query....not out of the woods yet! will have to dig more tomorrow cheers, tom.
  17. boardtc

    Join problem....

    btw, why the groups bys?
  18. boardtc

    Join problem....

    Gentlemen - I bow my head to your sick skills! rac2 I started testing with your solution, it returned the correct number of rows (74)! But COND_TrainingStatusRO was returning 3 nulls where it shouldn't be...haven't figured out why it's not working yet... esquared...i plugged in your code and...
  19. boardtc

    Join problem....

    I'm sorry I'm not able to simplify this to make my question easier to understand. In the below query there are can be more than 1 conditions records returned for each person (if there are duplicate max COND_TrainingStatusRO). I only want 1 per person. So say there are 10 people and for 1 person...
  20. boardtc

    Updating null dates to all be different by 1 millisecond

    Got it ! declare @date datetime set @date = dateadd(week, -2, getdate()) update conditions set @date = LastUpdated = dateadd(s, 1, @date) where (LastUpdated is NULL)

Part and Inventory Search

Back
Top