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 Chris Miller 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. ababbitt

    Dynamic Menus at runtime

    I have a need to create a menu structure at runtime that is completely dynamic. I have looked at using a Menu Control Array, but this will not work in my case due to the need to have branching sub-menus... Is there a way to create menus at runtime, that includes the ability to show submenus...
  2. ababbitt

    Displaying Blobs with plugins

    It did help. I now realize that if I want to force a file to download I need to add the line: Response.AddHeader "Content-Disposition","attachment;filename=Mypdf.pdf" and if I want to use the plug-in I should omit it. Thanks.
  3. ababbitt

    Displaying Blobs with plugins

    I have written a page that will display/download files stored as blobs in a database. Everything seems to be working just fine, except for one thing. If the MIME-type requires a plug-in to display properly, it does not use the plug-in. It just prompts the user to download/open the file. If...
  4. ababbitt

    Pulling Records from SQL VERY SLOW

    You will likely need to add an index to the table(s) effected by the queries. You could either add the index to the tables directly, based on the search criteria in you query...simply put and an index to the table for main filter in your where clause. Or you could use the Index Tuning Wizard...
  5. ababbitt

    what is wrong with this stored procedure?

    Try this. CREATE PROCEDURE StoredProcedure1 AS UPDATE ADOPT SET ADOPT.BrsID = (Select tblBrsCodes.BrsID FROM ADOPT, tblBrsCodes WHERE tblBrsCodes.BrsCode = ADOPT.brsno AND tblBrsCodes.road = ADOPT.road) GO
  6. ababbitt

    Setting absolute position of forms

    You should be able to do this by adding the Form1.Top, ComboBox1.Top & ComboBox1.Height numbers.
  7. ababbitt

    SQL Server Replication/Mirroring

    I am looking to develop a mirrored database system wherein two database servers would be Publisher/Subscriber. Is it possible to Replicate/Mirror SQL Server 7.0 databases without additional software? I am really just looking for a confirmation that my assumptions are correct. Thanks in...

Part and Inventory Search

Back
Top