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 gkittelson 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: *

  1. jasmak

    Open Excel With Internet Explorer

    I have an Excel spreadsheet application that uses VBA to link to various spreadsheets on several servers. It has a customized menu bar written in VBA as well. What I would like to do is browse to an ASP page on my website that will open this spreadsheet application within Internet Explorer...
  2. jasmak

    Help optimizing a query

    ## Creates a global temp table. We need a global temp table in this example because if it is not declared global, it will be in scope only while the EXEC statement runs. This means we won't be able to reference it later to do our update. Hope that helps.
  3. jasmak

    Help optimizing a query

    I think tlbroadbent would probably know best as to what the correct way to do this one would be, but I would re-write it as: SET NOCOUNT ON DECLARE @y int DECLARE @x int DECLARE @temp varchar(50) DECLARE @strSQL varchar(8000) Set @y = 1 Set @x = 1 SET @strSQL = 'SELECT * INTO ##UPDATE ' SET...
  4. jasmak

    Overflow Error in ASP but Not COM Object

    2147217833 Err.Des: Arithmetic overflow error converting numeric to data type numeric. I receive the above error message when sending a data string to a stored procedure that is referenced from a COM object in my ASP page. If I test the same data by running it in VB with COM only it works...

Part and Inventory Search

Back
Top