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 bkrike 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: TAMSIN
  • Content: Threads
  • Order by date
  1. TAMSIN

    Run-time error '2001': You canceled the previous operation

    Hi, I'm developing an accesss front-end using odbc to a backend database. I've just started getting this error: Run-time error '2001': You canceled the previous operation when I click a button which replaces one subform with another. The line of code it breaks on is...
  2. TAMSIN

    javascript instead of vb script resources?

    hi, i'm using javascript instead of vbscript for asp scripting, because i'm much more familiar with java. its ok most of the time, but i do get stuck sometimes :-) and all the asp sites on the internet seem to be about vbscript. I was wondering if anyone knew of any good resouces for asp using...
  3. TAMSIN

    keywork metatags in .asp

    Hi, don;t really understand how search engines work with indexing .asp pages. if I had metatags in the .asp page with values set using ASP e.g. from a database, would these get picked up by search engines? Thanks!
  4. TAMSIN

    before update event

    Hi, On a bound form, I'm trapping the before update event, and using ADO to send an update query to the database (just using access as the front end here). To stop Access trying to do the update itself, I've got Cancel = True at the end of the beforeupdate sub. But this means that Access still...
  5. TAMSIN

    quote in entity reference

    Is it possible to have an entity reference with a quote in it? I'm using xsl to transform xml to html, but I'd like to put some html in entity references, for easy of changing certain things throughout the site. e.g I'd like an entity reference that puts: <img src=&quot;pic.gif&quot...
  6. TAMSIN

    pass-through query /bound forms

    Hi, I'm using access as the front-end to a postgreSQL database using odbc, and I'm looking for the best way to talk to the database. I don't want to use directly linked tables because the sql that gets generated isn't really optimised for postgreSQL, so I'm looking at ADO, pass-through queries...
  7. TAMSIN

    pass variables to form in dialog mode

    Hi, Not sure what the best approach to this would be. I have a button which opens a form in dialog mode, which I want to pass three integers to, to use to set up the contents of some combos etc. But because its in dialog mode, the code after DoCmd.OpenForm .. doesn't run til its closed. And...
  8. TAMSIN

    windows reboots if running mcafee active shield

    I guess this is a fairly common problem - about 50% of the time, when I try to shutdown my computer, it reboots instead. VERY annoying! Its windows 98 SE, and I've followed the advice in other posts, and found that if I shutdown mcafee active shield first (or disable it from starting up at all...
  9. TAMSIN

    apache-ssl rpm install

    I want to install apache-ssl using rpms, which I've found. I'm running Redhat with Apache &amp; openssl already installed (via rpm). Anyone point me to some notes on how to do this? - all the instructions I can find refer to tars etc &amp; I'm not sure what I should actually need to do after...
  10. TAMSIN

    image above table containing form

    I am trying to put an image above a table without a gap between them. I'm using margin-top in css to make sure there isn't a gap. But if the table contains a form, the gap seems to be much bigger. (And of course, its different again in Netscape cf IE). Has anyone come across this? Thanks Tamsin
  11. TAMSIN

    getting coordinate from input type=image

    Hi, I know that an input type=image passes the x & y coordinates rather than the name & value, but I can't work out how to get these values. I've written the following (much simplified from what I really want to do!) which I call from an onSubmit trigger on the form: function...
  12. TAMSIN

    retrieving autonumber id

    Hi, Sorry if this has been asked before, but I can't work it out: I'm doing an insert into an access table, which has an autonumber id. after the insert, I wantto retrieve the ID which was allocated so that I can query back the new record. I'm trying to do it like this (only one person will...
  13. TAMSIN

    alternate image if one doesn't exist?

    Any ideas please: I have a page which displays a list of products from the database. For each product I also want to display an image. The images are all named based on the ProductID from the database - ie 1.gif, 2.gif etc. However, for some product IDs , there is no image. In this case, I...
  14. TAMSIN

    Resize window onLoad

    Hi, I know I can open a window with certain features using: window.open(test.htm,'','scrollbars=yes,resizable=no,width=200,height=200') but is it possible to just have a normal link to a page (ie. A HREF=&quot;test.htm&quot; target=&quot;_blank&quot;) and then the file has some sort of onLoad...
  15. TAMSIN

    this.value in Netscape?

    Hi! I wrote a validation script, which worked fine in IE, then tried it in Netscape & it all fell apart... I think I've narrowed it down to the fact that I was passing this.value to my validation function. In IE that was fine, but in Netscape it seems to pass null. I tried the following...
  16. TAMSIN

    counting certain records?

    Can anyone tell me how to do this... I have one table account (account_id integer) and another table user(user_id integer, state varchar, account_id integer). The possible states for a user are 'new','active' and 'inactive'. I want to run a query to give me the following output: account_id...

Part and Inventory Search

Back
Top