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!

Recent content by andybeh

  1. andybeh

    is null or not an object error

    This is the code that I am using: <script type="text/javascript"> var cnt=0; function newForm(objid) { cnt++; document.getElementById('form_count').value=cnt; obj=document.getElementById(objid); var dup=obj.cloneNode(true); var ie=(document.all &&...
  2. andybeh

    is null or not an object error

    Hi Dan, I actually just installed Firefox and Netscape to test it and neither of them even created the form elements. I have to admit, I am now looking at non javascript options to get this done even though they will be more cumbersome. cheers ab
  3. andybeh

    is null or not an object error

    I changed that line, but it still presents the "is null or not an object" error. When it looped through all the form elements, it displayed the field name so I'm still stuck. Cheers ab
  4. andybeh

    is null or not an object error

    Hi All, I'm pretty much a novice at javascript and have a hit a roadblock with a piece of code. I have a form which automatically adds new fields when the user tabs off of a certain field. This part of the code works fine, however when I try to set the options for a newly created 'select'...
  5. andybeh

    Redirect tomcat to another webserver

    Hi All, I had Tomcat 4.1 set up on win 2K and connecting to another webserver running Tomcat on Windows server 2003. Unfortunately the win2K server has gone to the IT graveyard recently. I have now built another server based on Windows Server 2003 but I can not configure it to connect to the...
  6. andybeh

    Manually removing Exchange 2003

    Hi All, WE are having colossal problems with removing an install of Exchange 2003. Upon rebooting, the server tries to restart the exifs service which does not exist. That's problem one. When I run the exchange setup cd and choose to uninstall Exchange, I get errors with activesync and OMA...
  7. andybeh

    Renaming table in Access database using SQL

    Hi All, Can someone help me with finding a way to rename a table in an Access 2000 database using SQL commands in asp please? Either the solution or a pointer to the right resource would be great. Cheers ab
  8. andybeh

    Passing a drop down menu option into an SQL statement

    Hi, Post your code so we can have a look at it. Most likely you are you have &quot;&quot; around a value that doesn't need it. Cheers ab
  9. andybeh

    How to sort the field' value after accessing them from MS Access

    Hi, Try setting up your sql select string like this: strSQL = &quot;Select * From tbladdressbook ORDER BY fldSurname DESC;&quot; Substitute tbladdressbook for your table name and fldSurname with the name of the field you want to sort by. If you want to sort from A-Z remove 'DESC'. Cheers ab
  10. andybeh

    Display a default page when no records are returned

    Hi, This is what I use: In the page that checks for the records insert the following (replace 'rs' with your recordset name): If rs.eof then response.redirect (&quot;null.asp?strError=3&quot;) End If In null.asp I use the following line to write the response. If strError = &quot;3&quot...
  11. andybeh

    ASP pages blank until refreshed

    Hi, This is a bit of a messy way to handle things, but you could try redirecting away from the page first. The page that you redirect to could send you back to the correct page thus forcing the refresh. Cheers ab
  12. andybeh

    Can't connect to my access db. can you help me?

    Hi, Just speculating, but it might be because 'Documents and Settings' contains whitespace. I'm not sure how well the web server would handle this? Cheers ab
  13. andybeh

    Using asp and jsp

    Hi All, I have a question that is way out of my experience level. Our company has an existing site which is written in asp but our ever-so-thoughtful manager has gone and bought some web-enabled software that is written entirely in jsp. The software runs on Apache Tomcat and I have been told...
  14. andybeh

    Reporting email usage statistics

    Hi All, I am after some advice on how to report on daily usage statistics for individual users. I was thinking there must be a way to interrogate the send and receive logs but I've got no idea where to start. I want to be able to show the number of emails and if possible how much data was...
  15. andybeh

    Connecting two sites through a vpn

    Hi, I have two sites that I want to connect through a VPN. Can someone please suggest either hot to do it or where to source the best information for doing this? Regards ab

Part and Inventory Search

Back
Top