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 Wanet Telecoms Ltd 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 waiterm

  1. waiterm

    AJAX calls and TinyMCE

    Hi, I am loading content into two divs on a page using Ajax, one page contains a textarea that I want to make a TinyMCE WYSIWYG editor. Basically the TinyMCE initialisation script isn't waiting for the other two pages to load before it runs. Therefore sometimes it works and sometimes it...
  2. waiterm

    AJAX calls and TinyMCE

    Thank you, my bad, I didn't realise there was a specific Ajax forum. Rob Waite http://www.hostpipe.co.uk/
  3. waiterm

    AJAX calls and TinyMCE

    Hi, I am loading content into two divs on a page, one of which contains a textarea that I want to make a TinyMCE WYSIWYG editor. Basically the TinyMCE initialisation script isn't waiting for the other two pages to load before it runs. Therefore sometimes it works and sometimes it doesn't. The...
  4. waiterm

    Overflow error in MD5 script

    Many thanks for that, in the debug &H80000000 was actually throwing out a 0 value, whilst the lX8 and lXY were throwing our corresponding positive and negative numbers, both greater than 4B values, hence the overflow like you said, however it wasn't even possible to convert them to 8B. I didn't...
  5. waiterm

    Overflow error in MD5 script

    Hi I'm integrating an MD5 script within a login page and for some reason when I moved the site from the testing environment to the live server I started getting an Overflow Error whenever someone tries to login: Microsoft VBScript runtime error '800a0006' Overflow: 'lResult' /***/***.asp...
  6. waiterm

    error '80040e37' object not found...after changing table owner

    Yes reference changes worked. Although, rather than changing the ASP code throughout the site, I was rather hoping I could simply change the database owner to match the live version of the site, that way I don't have to trawl through the entirety of my code changing table and stored procedure...
  7. waiterm

    error '80040e37' object not found...after changing table owner

    Noted regarding using 'sa', luckily it's just on our testing server so will change ASAP. Many thanks for your help. Rob Waite http://www.hostpipe.co.uk?src=TT
  8. waiterm

    error '80040e37' object not found...after changing table owner

    Code is very simple, Set Con = Server.CreateObject("ADODB.Connection") Con.Open "DRIVER={SQL SERVER};SERVER=t4pserver;DATABASE=mycroscope;Uid=sa;Pwd=********;language=british" SET RS = Server.CreateObject("ADODB.Recordset") userSQL = "SELECT * FROM tbl_AdminUsers WHERE US_Username = '" & sUser...
  9. waiterm

    error '80040e37' object not found...after changing table owner

    Hi, I'm getting the following error when I try and access any table on our test server: Microsoft OLE DB Provider for ODBC Drivers error '80040e37' [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'tbl_AdminUsers'. /admn/login.asp, line 24 I can access the tables fine...
  10. waiterm

    Turn off 500.100 Errors on IIS

    Typical, fixed it just afte rposting! The custom error message in IIS is the 'The page cannot be displayed' blah blah rubbish! If you click the 'Set to default' button for it then it displays the error messages in the browser as normal. Daft! Rob Waite http://www.hostpipe.co.uk?src=TT
  11. waiterm

    Turn off 500.100 Errors on IIS

    I'm running IIS on my laptop which is Windows XP Pro SP2. However, rather than getting useful error messages within my page, like I get from MS Server 2003, my laptop throws up 'The page cannot be displayed, HTTP 500.100 - Internal Server Error - ASP error blah blah' This isn't useful, because...
  12. waiterm

    HSBC API Integration

    Hi, Does anyone know of a good turutorial/guide for integrating an ASP shopping basket with HSBC's API. The CPI is too complicated and the documentation for the API is rubbish. Any help would be greatly recieved. Rob Waite http://www.hostpipe.co.uk?src=TT
  13. waiterm

    Check server date/time defaults

    Yeah, I found that article earlier on but it is for Client side rather than Server side which is what I am more interested in finding. Any thoughts? Rob Waite http://www.hostpipe.co.uk?src=TT
  14. waiterm

    Check server date/time defaults

    Hiya guys, Is there any means in ASP of checking what the server's default date and time settings are? ie I'm having trouble with UK (d/m/y) and US (m/d/y) dates when porting scripts to various servers...and it's doing my nut ! Many thanks in advance Rob Waite http://www.hostpipe.co.uk?src=TT
  15. waiterm

    Tables to CSS

    Hi, I'm currently dynamically building my tables from a recordset. i.e. multiple columns and as many rows as in the recordset with column headers. However, in a bid to move my sites over to CSS I'm finding it difficult to reproduce anything as efficient as the tables used to produce. I...

Part and Inventory Search

Back
Top