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

    DIV Positioning and DOCTYPE Conflict?

    elegidito, Thank you for your swift response - that was a great help and it now works again! Does the same thing apply to Netscape and Firefox? ~tg
  2. thegentleman

    DIV Positioning and DOCTYPE Conflict?

    I have a fairly simple piece of code that displays a small description window when you roll over certain glossary words - the window is positioned wherever your mouse sits on the page: function moveElement(element) { var e = window.event; if (e.pageX || e.pageY) { MouseX = e.pageX...
  3. thegentleman

    Glossary using DIV and innerHTML scan

    Chessbot, Thank you for that - I feel a bit stupid now since I used the getElementById function in the functions above. Thanks again, ~tg
  4. thegentleman

    Glossary using DIV and innerHTML scan

    Thanks for clearing that up Chris. At least now I know that it cannot be done I can work on something else. It won't be too much trouble to minimise the number of words the function searches for on any given page - this could be done server-side to speed things up. Which just leaves the issue...
  5. thegentleman

    Glossary using DIV and innerHTML scan

    Hi, I've pieced together the following code from various sources throughout tek-tips but have hit on a couple of problems. The function of this code is to scan the text of a loaded page for specific keywords - when they are found it 'draws' a hidden table with a discription of the word that...
  6. thegentleman

    Issue with document.body.innerHTML not being set properly,

    This is a great function - is there anyway I can limit this further so that it only highlights keywords in a specified block of text? I've put a DIV tag around the text I would like this function to apply to but I can't seem to modify the code to search just the text in the DIV tag. Any ideas...
  7. thegentleman

    Flash and Microsoft Access Connectivity on CD ROM

    Thanks for the response bill, I have a couple of further questions though: This particular software tool will be designed to select a subset of records from an Access database, and then pass this subset (or totals from fields or similar) to the Flash for graphical display. The selection can be...
  8. thegentleman

    Flash and Microsoft Access Connectivity on CD ROM

    Is it possible for Flash to read in data from an Access database whilst both are running from a CD. I appreciate that data could not be written to the database but could it be read? ~tg
  9. thegentleman

    List Selected Rows in Subform

    I have a subform displaying a datasheet something like this: Line ID | Booking Ref | Cost ---------------------------- 1 | 625467 | 2567 2 | 625467 | 657 3 | 788676 | 7635 4 | 677788 | 764 Because it is a datasheet the user can highlight any number...
  10. thegentleman

    Display Non-duplicate Records

    Thanks for the input PH but unfortunately I cannot get this to work. Is it possible to do it in two stages? The first query making a table and then the second removing the records I don't want? ~tg
  11. thegentleman

    Display Non-duplicate Records

    Well, at the moment it goes something like: SELECT TABLEA.BOOKING, TABLEA.VALUE, TABLEB.VALUE FROM TABLEA INNER JOIN TABLEB ON TABLEA.VALUE = TABLEB.VALUE WHERE TABLEB.VALUE >=(TABLEA.VALUE-(([TABLEA.VALUE]/100)*10)) And TABLEB.VALUE <=(TABLEA.VALUE+(([TABLEA.VALUE]/100)*10))
  12. thegentleman

    Display Non-duplicate Records

    Thanks PHV, that's perfect! I wonder of ou could help me with another problem I am having with this same set of data? Again I'm comparing the two and I want to produce a set of results where the Booking is the same and where the value field matches within a given tolerance (say 10%). I have...
  13. thegentleman

    Display Non-duplicate Records

    Hi, I have two identical tables A and B both with similar sets of data. What I want to do is create a query that displays all of the data in table A where one field (X) is the same, but where field (Y) is not the same in table B. E.G TABLE A ID BOOKING VALUE 23 6876 23...
  14. thegentleman

    Length of Multiple Array

    Thanks Dan, I eventually worked out a way around this. The reason why it got so complicated is because this is all being generated from a database. var l1 = new Array(); var l2 = new Array(); var l3 = new Array(); l1[0] = new Array(); l1[1] = new Array(); l1[2] = new Array(); l1[3] = new...
  15. thegentleman

    Length of Multiple Array

    Any further help with this would be greatly appreciated. ~tg
  16. thegentleman

    Length of Multiple Array

    Thanks for the input Jeff. I adjusted the code to reflect your first point and the code now looks like this: ar[0] = new Array(); ar[0][0] = new Array(); ar[0][1] = new makeOption(&quot;NONE&quot;,&quot;0&quot;); ar[1] = new Array(); ar[1][0] = new Array(); ar[1][1] = new...
  17. thegentleman

    Length of Multiple Array

    Hi, I am creating a function that requires large arrays of products split into 4 levels: ar[0] = new Array(); ar[0][0] = new makeOption(&quot;NONE&quot;,&quot;0&quot;); ar[1] = new Array(); ar[1][0] = new makeOption(&quot;NONE&quot;,&quot;0&quot;); ar[2] = new Array(); ar[2][0] = new...
  18. thegentleman

    ASP Connection to Access Database – Security Questions

    Thanks again for all your help Funka. I have now got this thing working. Untill next time... ~tg
  19. thegentleman

    ASP Connection to Access Database – Security Questions

    I'm beginning to understand and to check the theory I assign the user &quot;Everyone&quot; permissions to the database and the folder and hey-presto it is now working. Now all I need to do is get the asp page working with a specific user account and not &quot;Everyone&quot;. So obviously the...
  20. thegentleman

    ASP Connection to Access Database – Security Questions

    I went to the exact place you specified and all I saw in the list was all the files and folders in the web-root but because I have placed the database in question beneath the web root it wasn't there! Therefor I added a new virtual directory that point to the path of the database and this is...

Part and Inventory Search

Back
Top