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

    Convert file dialogue when opening word doc

    Hi, I have a page that uses Response.Transmitfile to open a word document. About a week ago some users are getting a "Convert file" dialogue when opening such a document. Users in the same network some get the dialogue, some can't. Can anyone help me approach this problem.
  2. MrGandalf

    Custom validator designtime support

    Hi, I have made a custom validator (derived from BaseValidator object) for which I want to give the ErrorMessage property a default value. How can I achieve this? Do I have to override the ErrorMessage propertie of the base? Using the new keyword? Can someone supply me a sample code? Tx in...
  3. MrGandalf

    Replace string in Response

    Hi, Can anyone tell me how I can replace a string in the Response? And in which event to do this. I have a 3party tool that injects some javascript function into the page. I want to filter this function. Thanks in advance.
  4. MrGandalf

    using symbols

    Hi, I have a windowsform with some buttons on it with the following captions: ?, ? and ?. When I restart my computer these letters turn into i, g and s. What is going on? How can I use these special characters?
  5. MrGandalf

    How to browse resultset

    Hi, I have a stored procedure that hase some SQLstatements. From time to time I want to see the resultset from a particular SQL statement. How can I achieve this?
  6. MrGandalf

    When to use database name

    Hi, Can anyone tell me when to use database name in SQL? For example: Select * from zodata.client OR Select * from client What is the difference? I get the error : Invalid object name client
  7. MrGandalf

    order by slows down query

    Hi, I have an SQL that gives 6000 rows back as result. When I use an order by the execution time of the SQL is almost 3 minutes, without the order by 3 SECONDS. Does anyone have an explanation?
  8. MrGandalf

    Indexes Computed Fields

    Hi all, Is it possible to create computed indexes in SQL Server 2000? For example you have a table client with fields clientnr, name, postal. I want an index on clientnr+name+postal instead of clientnr, name , postal.
  9. MrGandalf

    Include Font in project

    Hi all, Is it possible to include a paricular font in a windows form project. I have a form where I use a particular font, but when I install the application the font isn't recongnized. How can I export this font to a client?
  10. MrGandalf

    Advice SQL Server 2000 tools and t-sql editor

    Hi all, Can someone advice me with better tools for SQL Server 2000 and t-sql editor? As a lazy programmer I look for tools which at least support intellisense when writing Stored procedures/custom functions.
  11. MrGandalf

    Evaluate multiple expressions in case when

    Hi all, How can I use multiple (boolean) expressions in the where clause? For example: Select * From Client Where case when age>18 then redhair and blueeyes else blond and greeneyes end = 1 This gives an error. Can I write in another way?

Part and Inventory Search

Back
Top