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 Mike Lewis 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. maverick

    Updating a column in table ?

    In one field on all records I want to get rid of anything longer than 8 characters, I tried: SELECT LEFT(`colName`, 8); It didn't work of course... hehehe Can someone enlighten me? thanks, Mav
  2. maverick

    I am trying to separate my App into 4 parts...

    I solved the issue by setting properties in Proj2 and calling to set those onload because I felt as Sorwen does, that DLL's should be a single complete entity, I guess my problem was more that I couldn't remember if the was the right way to do it... Thanks so much guys! Mav
  3. maverick

    I am trying to separate my App into 4 parts...

    I have the main application and I added 3 new projects to the solution, I added them as DLL's so I can compile and update them separately, but my Proj2 DLL can't see variables or procedures in the Main App... Any ideas what I'm missing ? I think it's a scope issue but not quite sure how to fix...
  4. maverick

    Loading a Table to an Array

    ok I added prikey because they were getting out of order, here is more info: I have a report that I would like to change the header via this table, for example: record 1 = Report Header record 2 = Report Footer etc... But I need to create an expression that that can use the value of record 1...
  5. maverick

    Loading a Table to an Array

    Hey everyone, anyone know a quick way to load myArray() with the content of a table ? The table has no key or IDs, it just holds Label Captions tia +--------------------------+ | "Hacker by Heart" | | Yahoo! : saenzcorp | +--------------------------+
  6. maverick

    htaccess insight

    Sorry, http://www.indexsoft.com/passmanagerpro/index.px I have been on vacation... hth +--------------------------+ | "Hacker by Heart" | | Yahoo! : saenzcorp | +--------------------------+
  7. maverick

    Filter specific files

    Thanks for your help ! here is what I did, but if this does not workout, I will have a closer look at your code and see if I can make it work... I added, $self = basename($_SERVER['PHP_SELF']); to make it identify itself and then added, $file != "$self" to the if statement Seems to work...
  8. maverick

    Filter specific files

    I want to list files in a dir but NOT *.php files or *.htm files here is what I have so far; <?php if ($handle = opendir('.')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { echo "$file\n"; } } } closedir($handle); ?>...
  9. maverick

    about php includes ?

    this sounds interesting... can you elaberate on 4. referenced further by a basehref tag thanks +--------------------------+ | "Hacker by Heart" | | Yahoo! : saenzcorp | +--------------------------+
  10. maverick

    about php includes ?

    Hey guys, Is there any way to get a php files to reference images from it's own location rather them the location it's included from ? for instance; my index file has an include to a file in a dir called pages and the included file has images that are in a dir called images that is in the dir...
  11. maverick

    Sliding Cells ?

    Well I found some code to help me do this but now I can't seem to get it to work on two menus, I have a table with three cells in a row the middle is content and both sides have menus I found cool code that makes them float when I scroll but when I put in the code for the second menu, the...
  12. maverick

    Sliding Cells ?

    Well I found some code to help me do this but now I can't seem to get it to work on two menus, I have a table with three cells in a row the middle is content and both sides have menus I found cool code that makes them float when I scroll but when I put in the code for the second menu, the...
  13. maverick

    Sliding Cells ?

    Ok, I know this is a weir one, but... here goes "I'm try to be a good webmaster and not use frames" I have a include to my menu in one cell of a table on the left and my main cell for content on the right when I get a page that loads in the main cell, if the page is very long the menu centers...
  14. maverick

    Sliding Cells ?

    I didn't know includes were used in html I thought they were just in php thanks I will repost in HTML +--------------------------+ | "Hacker by Heart" | | Yahoo! : saenzcorp | +--------------------------+
  15. maverick

    Sliding Cells ?

    Ok, I know this is a weir one, but... here goes "I'm try to be a good webmaster and not use frames" I have a include to my menu in one cell of a table on the left and my main cell for content on the right when I get a page that loads in the main cell, if the page is very long the menu centers...
  16. maverick

    Cells or Frames ?

    WOW ! That really works well ! I'm very impressed, I have been looking for a simple solution to this issue, and you should see some of the complicated methods people have come up with... I will test this further, but so far so good ! Thanks Star4U --------------------------------------...
  17. maverick

    Cells or Frames ?

    Thanks, that was very informative, but I guess I didn't explain well enough... I need to be able to click a link in my menu that is in one cell and have the linked page open/load in another cell of the same table, which is what I can do with frames pretty easily hope this is a better...
  18. maverick

    Cells or Frames ?

    Hey guys, I've been asking many people, mostly friends... and everyone tells me not to use frames if at all possible but, It's so much easier to use frames then cells... for instance if I want to load a page with an include statement, but I want the page to load in a cell in a table, how do I...
  19. maverick

    How to create multiple subfolders at one time

    OK, it appears to by "Microsoft Scripting Runtime" if anyone know different please comment... tia -------------------------------------- "Hacker by Heart" saenzcorp@hotpop.com
  20. maverick

    How to create multiple subfolders at one time

    What Reference do you need to run FileSystemObject code ? I'm getting an error... tia ! -------------------------------------- "Hacker by Heart" saenzcorp@hotpop.com

Part and Inventory Search

Back
Top