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

    checking the browser

    Crystal One way (there are lots) is this set objBC=Server.CreateObject("MSWC.BrowserType") if objBC.browser = "IE" then .... whatever for IE else .... Others end if Not one of the best, but it would do what you want. Does rely on a file called...
  2. ibby

    Learning JAVA

    I have always found the WROX series pretty good for picking up new stuff, I don't know if they have a JavaScript one, but worth a try. The other series I tend to look at is the Visual QuickStart series by Peachpit Press. I think both series are written in easy to understand styles, but they...
  3. ibby

    Screen Object

    Any views on this one. Following code used to perform a simple browser check. <html> <head> <title>Test Page</title> <meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;> <script language=&quot;JavaScript&quot;> <!-- window.location =...
  4. ibby

    MS Access 2000 Connection Problem

    Yes, most of my SQl looks like the second string, it was only the string variables that I had to change. One side effect of changing the connection method was the on the names of outputs from a query. If I had outputs from two tables, e.g. SELECT a.id, b.id ..... then I used to be able to...
  5. ibby

    MS Access 2000 Connection Problem

    Yep, guestg has the answer, I have just changed the few places where I had the double double quotes and, hey, it works irrespective of the way you connect. I am assuming there are subtle differences between the drivers, hence one worked and two did not. Question of style/correctness - I am...
  6. ibby

    MS Access 2000 Connection Problem

    Nick Thanks for the reply. Code segment is as follows. I am pretty sure (always willing to be proved wrong!) that the SQL is OK for two reasons - one it works withthe connect method that does work and I have copied it as text and pasted it into Access in the query design view and it is OK. I...
  7. ibby

    MS Access 2000 Connection Problem

    Having a problem connecting to an Access Database, getting the following error in a login script. However I don't think the login script is at fault, i think it is my connection to the database. I have three methods of connecting of which one works and two do not. With the one that works my...

Part and Inventory Search

Back
Top