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: jmswe
  • Order by date
  1. jmswe

    CSS and XSL?

    Is it true that you cant refer an external .css file from the xsl file? Do you have to manually copy over all the css tags you want to use into the .xsl document? If so whats the rationale for this? If you have 100 xsl file and want to make a style change you have to edit 100 documents? Thats...
  2. jmswe

    Wont unload!

    During this loop Dim i shouldstop = False For i = 0 To sec DoEvents If shouldstop = True Then Settings_Click (1) End Exit Function End If Sleep 1000 Text1.Text = "Väntar " & sec - i Next the cmdquit and cmdclose events wont fire when...
  3. jmswe

    ArrayList containing Objects. Help!

    Im really new to java myself but.. Do you really need all that code just to acess a subfield in an object? I mean.. this isnt assembler right?
  4. jmswe

    Bug of the year?!

    Hi, thanks for the tips everyone! I use netscape 6 only for compatibility testing a new site i am developing. I will do a backup solution with session memories to rescue any netscape 6 users. Cant figure out what goes wrong. It works like a whistle in all other browsers. :)
  5. jmswe

    Bug of the year?!

    I have a very VERY strange bug. Im testing a website for netscape 6. My problem: Asp variables filled from request.form statements print all right and fine on screen for the users. BUT! they dont show up in netscape 6 page source. That means that my dynamically generated href javascript...
  6. jmswe

    Collapsable table question

    Ok.. will give it a try. Thanks for fast response!
  7. jmswe

    Collapsable table question

    Hi. thanks for your answer! But would that make all tables move down and up automaticly on expansion/detraction?
  8. jmswe

    Collapsable table question

    I know that this is not a doable thing in asp but i would like someone to suggest an appropriate teqnuiqe. I have: A dynamicall generated hitlist. (a long one) where mother entities have a number of child entities. What i want to do: I want every mother entity to be expandable so that child...
  9. jmswe

    Strange failures of basic functions

    wow.. looks like that would work. I thought asp was fail proof autoconverting types... :) thanks.
  10. jmswe

    breaking out of loops in ASP

    "exit do" should work.
  11. jmswe

    Strange failures of basic functions

    Hi I have a fairly large algorithm (about 700 lines) and have some strange problems. Namely: the regular compare operation does not work... that is "if n > hits then ..." does not execute even do n > hits. I have done checks by doing a response.write belov the if statement and it...
  12. jmswe

    Onload: work for all browsers?

    ok thanks!
  13. jmswe

    Onload: work for all browsers?

    Hi! Two questions: does the body onload event and document.formname.submit() command work on all reasonably new browsers?
  14. jmswe

    Help! Word replace format through vba...

    Im in trouble! I want to replace all instances of heading 1 in a document with heading 2.... no problem if you do it manually through the menus. But if i record i macro the macro dont do a thing! This is the code that dont do anything: Selection.Find.Style = wdStyleHeading1...
  15. jmswe

    Speed question, .seek vs. SELECT

    Ken, Thanks for your answer. Wy question was somewhat unclear... :) Ill try again: Is it faster to go through the entire table to find the record with the key you are looking for.. (maybe 100 different record in a loop) Or performing a sql search a 100 times, one time for each specific...
  16. jmswe

    Speed question, .seek vs. SELECT

    Addition: If i use select: Should i read in the entire table and search "manually" by looping through all records or should i search by the sql statement? (new statement for every record i want to read)
  17. jmswe

    Speed question, .seek vs. SELECT

    Hi! Im collection multiple, specific, values in a table. (Not the entire table.) using a for next loop in VBA Which is faster? Using .seek to find the key of the item im searching for and then reading in the data, or doing a new openrecordset with a changed sql statement for every loop of...
  18. jmswe

    Another treeview Q, please help!

    Dough! Found out that this wont work if you are dragging a child node.. then you will get an errror.. Does anyone know of a simple and reliable way to do this??
  19. jmswe

    Another treeview Q, please help!

    Phew! Solved it after some more digging and thinking.. :) Add this to your dragover sub: Private Sub TreeView2_OLEDragOver(data As Object, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single, State As Integer) Dim nodNode As node Set nodNode =...
  20. jmswe

    Another treeview Q, please help!

    When dragging a node near the bottom border of the treeview it automatically scrolls down. But it doesent scroll up when im near the top!.. Is there some setting to make it do this? Thanks in advance!

Part and Inventory Search

Back
Top