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

    Number of Pages in a Word Doc?

    Hi, Does anyone know of a way to count the number of pages in a word document? CES
  2. handle87

    Uploading Files Using a PDA and Blazer 4.0...

    Hi, Does anyone know how to upload files using a PDA with Blazer 4.0 as the web browser? Any suggestions? CES
  3. handle87

    Upload files...

    Hi, Does anyone know how to go about uploading files through the web using Blazer 4.0 web browser on client side and php on server side?
  4. handle87

    Insert into SQL Server and Time Out...

    Hi, I am having a problem inserting a number of records into a SQL Server database... I am reading from a csv file and inserting a row for each line in the file. Sometimes I get a time out...there could be maybe 1000 records to be inserted...anyone have any ideas on how to get around this...
  5. handle87

    Force Refresh

    Hi, I realise that this is a client side problem but figured that it would be better asked in here... After a user clicks the log out button I dont want them to be able to go back via the browsers back button without hitting the server again(refreshing the page). CES
  6. handle87

    Join Query Problem...

    Hi, I am having a problem writing a join query.... What I want to get is all the records from Table1 and join it to Table2... if there is no matching record in Table2 I would like to see NULL values in the fields... I thought it would be a LEFT JOIN but does not seem to work... Here is one...
  7. handle87

    system32\drivers\pci.sys is missing or corrupt

    Hi, Out of the blue I am getting the error message: system32\drivers\pci.sys is missing or corrupt Things I have done: - I have not added anything new to my pci - I have swapped the memory modules - I have tried removing the pci devices - I cannot boot into safe mode.. get the same error...
  8. handle87

    Empty Fields or Null...

    Hi, In a MySQL table if you have a field that is empty, does it still hold that space? And also, if you put a Null value in it does that change anything? CES
  9. handle87

    Empty Field or Null...

    Hi, In a table if you have a field that is empty, does it still hold that space? And also, if you put a Null value in it does that change anything? CES
  10. handle87

    Regular Expression... Can't figure it out...

    Hi... I just can't figure out how to use regular expressions and preg_replace... $pattern = "[A-Z][a-z]+"; $replacement = "XXX"; $string = "Test"; echo preg_replace($patterns, $replacements, $string); I need to above to echo "XXX" can someone please tell e the silly thing I am going wrong?? C
  11. handle87

    Update multiple records in a loop problem...

    Hi, I am having a problem updateing multiple records at a time in a loop... in a MySQL database. I am trying to run an UPDATE query about 5 times in a while loop... I have printed the strings to the screen and am able to run thm directly on the MySQL database... but they do not work in code...
  12. handle87

    VBScript runtime error '800a01fb'

    Hi, I have ahd this script running without problem for a while now and just yesterday it started to fail every time it is run... the error message I am getting is: Microsoft VBScript runtime error '800a01fb' An exception occurred: 'xml.Send' /includes/functionList.inc, line 38 basically...
  13. handle87

    Get Current Exchange Rate...

    Hi, Does anyone have any goods ideas on how to get a current exchange rate.. I just need it for Canadian to US dollars.. Ideally would like to be able to just automatically download a file from the internet once or twice a day.. maybe schedule a task to run it? Any ideas? I know Yahoo has a...
  14. handle87

    What Data Types..

    Hi, If I am using a Float in an MS SQL Db what data type can I use in ASP? Or should I change the field to a different data type?
  15. handle87

    All Records From Two Tables

    Hi, I have two tables lets say table A and Table B.. Table A Fields: Name Currency Income Table B Fields: Name Currency Credits I need to return all the rows from both tables and sort of combine them into a new view that would look like.. Table New Fields: Name Currency Income Credits The...
  16. handle87

    Does a Stored Procedure return a recordset?

    Hi, I would like to run a stored procedure that returns a recordset object.... rs.Open "Exec _sp_AMS_Monthly_Internal_CSR " & CDbl(request.form("exchangeRate")) & ",'" & CDate(fromdate) & "','" & CDate(todate) & "'",dbConn If I run the command EXEC _sp_Update_Reporting_Period '05/05/05'...
  17. handle87

    Divide not returning decimal values

    Hi.. When I divide and the result is a decimal I am getting 0 returned instead of the decimal number... CASE WHEN a.PricingStr <> 'PreP' THEN 21/31 ELSE 20/10 END As Total I am real new to this.. any ideas why I am geting 0 returned instead of the decimal number?
  18. handle87

    Case in select...

    Hi, I am a little new at this type of programming and wondered if someone could let me know what I am doing wrong here... I am getting the following errors: Server: Msg 8120, Level 16, State 1, Line 32 Column '_EnrollmentsByCSR$$$_Cancelled_Details_V.ChrgStatus' is invalid in the select list...

Part and Inventory Search

Back
Top