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 TouchToneTommy 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
  • Content: Threads
  • 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

    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...
  4. 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...
  5. 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...
  6. 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?
  7. 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...
  8. 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...
  9. 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!
  10. jmswe

    TreeView.DragIcon

    Hi! Im coding in access and i have a problem: TreeView2.DragIcon = TreeView2.SelectedItem.CreateDragImage returns error "method not supported by object"... what is wrong, some property or what? Please help! :) /John
  11. jmswe

    Treeview events

    Hi! I have big problems with treeview events. I work in access visual basic.. My problem: On the properties for the ms treeview object there is no event field for basic things as mousedown and of course not for more advanced things as OLEDrag. Where do i register this so that theese events...
  12. jmswe

    Im going nuts! :) (open.recordset)

    I want to access a table in my database for some editing I use: Dim rst As Recordset Set rst = CurrentDb.OpenRecordset("table1") An get error "type mismatch". I guess i have missed to reference some library since i seem to have to manually reference a library...
  13. jmswe

    Newbie question (Forms), Please help. :)

    Hi! Im trying to set up an order system (not really but the mechanics are the same). I have an order (main form) and a subform. On the subform i want to be able to select the products (when i select one i want an empty line to appear) the prouct info should then be collected from the...
  14. jmswe

    Automating "insert/file" in WORD

    Hi! I want to call word from access and automate a process where several word documents are combined into one, in the same manner as the "insert/file" menu function. (its different manual sections that need to be combined to a big manual) I need to perform it withouth dialogs since...
  15. jmswe

    Merging multiple word documents

    Hi! To make a long story short> I need a way to merge word documents from the commandline or by somekind of language or script. The effect should be like merging several txt docs by using "copy file1.txt+file2.txt destination.txt". How do i do this? ps. i cannot do this in word...

Part and Inventory Search

Back
Top