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

    Changing the List bullet image on collapse/expand

    kaht, It worked just fine. Great job! Thank you very much
  2. Zoom1177

    Changing the List bullet image on collapse/expand

    It sounds great kaht, thank you again, i'll try it and let you know how it worked out.
  3. Zoom1177

    Changing the List bullet image on collapse/expand

    I am really stuck here, if someone can help me that would be great I am using a different function and style to toggle the driven-menu that i have and it's working Perfectly the only problem is that at the node of collapsed items it shows the Plus character "+" and when it expands it shows the...
  4. Zoom1177

    Changing the List bullet image on collapse/expand

    Sorry i forgot to mention something: The code need to check and see if the current item is a List or an Item because if it's a List it should assign it the plus.gif again. I think there is some code i read about assiging SRC"path" where path is the plus/minus path
  5. Zoom1177

    Changing the List bullet image on collapse/expand

    It worked great, THANKS However, when i tried to add more ul under the li it collapse back up to the Main List instead of opening the more lists under What i need actually is something like this: List1 List2 List3 Item1 Item2 Item3 and each list...
  6. Zoom1177

    Changing the List bullet image on collapse/expand

    Thanks kaht, I'll try it and let you know how it works out by the way: this application is for Intranet and we're sure of the browser being used will always be IE, but thanks anyway. As for indentation, yes i do thanks :)
  7. Zoom1177

    Changing the List bullet image on collapse/expand

    Hi, I have a tree menu that expands and collapse with the default XHTML bullets I would like to add couple of lines to the existing javascript functions that i have to change the those bullets to the Windows Standard Plus and Minus images, which i have them in files called: plus.gif and...
  8. Zoom1177

    problem with Array

    thanks ecwcee
  9. Zoom1177

    reading parts of string

    You could use a function called Mid it returns a specified number of characters from any position in a string example: dim strExtract strextract ="Find Me in here" response.write mid(strextract,6,2) this will write the word: Me i hope that helped
  10. Zoom1177

    problem with Array

    I am trying to do a test by just putting a table in an array and i am having some problems all i need for now is just to print each row in the table so i wrote the following in the body of the page <% dim lowcount dim highcount dim counter dim myarray() myarray = rsmenu.getrows() lowcount =...
  11. Zoom1177

    Attaching problem

    Hi, I've got a database file(MDF) from a book it's called Bigpubs2000.mdf I am trying to attach that file to the database and it's asking me about the location of the log file, which is not included in the book. Is there is a way i can create a log file for that mdf? NOTE: I am attaching it...
  12. Zoom1177

    Filtering problem

    ecwcee, Sorry it took me long to respond You're script worked Thank you! here is the part you wrote <% dim lasttblhead dim currtblhead lasttblhead ="" while not rsSearch2.eof currtblhead = rsSearch2.fields.item("expertise").value if currtblhead = lasttblhead then %> <table...
  13. Zoom1177

    A subquery question

    Thanks r937, I will.
  14. Zoom1177

    A subquery question

    Catadmin, I can tell you right now that it will kill the performance, because the sports table is just an example, what i have actually (in one table) is a 4 tier category(parent/child/child/child) and i have 5 different parents!! and if those were the end of it i would've just created a...
  15. Zoom1177

    A subquery question

    r937, You're absolutely right, something not meant to be done with sql. However, some habits are hard to drop. Yes i am using both Javascript and VBscript. And you're right the script will be able to break the table to what i need. Thanks for your hellp. AlexCuse, No need to apologize at...
  16. Zoom1177

    A subquery question

    Catadmin, Thanks for the link, it helps a lot AlexCuse, I understand that no one have time and i dont want anyone to write for me. Some people appreciate examples, i posted some of my code in the same question in ASP as i said there (not here as it's not will be usefull here) i am creating...
  17. Zoom1177

    A subquery question

    Thanks all i found a way to know how many sports are they in the table before i start the loop because users will add more sports down the road here it is declare @var1 int select distinct sport from sport set @var1= @@rowcount print @var1 There is no need to use "Print" i just used it so i...
  18. Zoom1177

    Filtering problem

    ecwcee, Thanks and i am glad some of the difficulties are the same we can share ideas. As for more display suggestions, they will be always appreciated. In my opinion, and to save more time down the road, i would love to do everything on SQL Server but unfortunatly sometimes it's not...
  19. Zoom1177

    Filtering problem

    NOTE: Search% is a parameter that receives the txtSearch text box from the Search page.

Part and Inventory Search

Back
Top