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 wOOdy-Soft 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 phillyman

  1. phillyman

    Microsoft Office (Excel) & COM

    Thanks Shuchi!! I think I can handle the code, but I was really curious about the performance of Excel in MTS. I don't think that the office components are multi-threaded, so I figured there may be a problem when multiple instances of Excel are needed at the same time. Have you had any...
  2. phillyman

    Microsoft Office (Excel) & COM

    Has anyone had any experience referencing Microsoft Office applications in an server-side COM object? I'm writing a small intranet application, with maybe 10 total users, that uses a server-side COM object to create an Excel spreadsheet from an ADO recordset. That spreadsheet is then...
  3. phillyman

    How do I get Sum of Databound Table Column

    Well, Once you have a recordset on the page, let's call it 'rsPhoneData' with columns 'name' and 'phone', then you should be able to bind the table as below. <table datasource=&quot;#rsPhoneData&quot;> <tr> <th>Name</th> <th>Phone</th> </tr> <tr>...
  4. phillyman

    How do I get Sum of Databound Table Column

    Does anyone know how to get the total sum of all the values in a databound column in a databound table? I've got a table that's bound to an XML data island where one column lists a bunch of numbers. I would like to have a row at the bottom total up the numbers. Any ideas? Scott Wilkinson
  5. phillyman

    Limiting Returning Recordset to X rows

    I'm setting up an ASP page that makes a call to a DB2 database of banking transactions. I'd like to display the last 10 transactions by date for a particular account number. In SQL Server, I use the &quot;SELECT TOP 10&quot; syntax to load a recordset with the top 10 rows by date but this...
  6. phillyman

    Alternatives to Microsoft SiteServer

    Has anyone had any luck building a decent personalization/membership service similiar to whats offered in Microsoft SiteServer? I've been looking at alternatives to SiteServer using ASP and a SQL database, but could use some help. SiteServer works ok, but it can be a real pain to administer...
  7. phillyman

    Forwarding a form to a second ASP page

    From Wrox ASP 3.0... &quot;The transfer method stops execution of the current page and transfers control to the page specified in the supplied URL. The user's current environment(session state and any current transaction state) is carried over to the new page.&quot; Server.Transfer(url) This...
  8. phillyman

    Forwarding a form to a second ASP page

    Hi everyone... I have somewhat of a large form that is sent to an ASP page for processing. I would like to be able to take the form and forward it to a third ASP page without having to redo the entire form or save a bunch of new parameters. Is there a way to forward a form to another page and...
  9. phillyman

    Disk Drive Missing in Windows 98(No Drive Letter Assignment)

    Due to a bunch of problems, I recently had to reinstall Windows 98. I have three hard drives in my system. Anyway, I reformatted the C Drive, reinstalled Windows 98 and got the system up and running. All three drives show up in the BIOS ok and all three also show up in the Windows 98 Device...

Part and Inventory Search

Back
Top