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

    Editing / entering multi-line text in Svr Mgr table view

    [repost from "svr admin" forum last week - no joy there...] I have just "upgraded" from SQL Server Enterprise Mgr 2000 to 2005. (I like to be an early adopter...). This was done for no real reason and I wish i'd not bothered. Anyway, I have some text fields in which I hold some lines of code...
  2. JulianUK

    Editing multi-line field entries

    I have just "upgraded" from SQL Server Enterprise Mgr 2000 to 2005. (I like to be an early adopter...). This was done for no real reason and I wish i'd not bothered. Anyway, I have some text fields in which I hold some lines of code. In EM2000, opening the table directly allowed me to insert...
  3. JulianUK

    using Flash toshow <div>, but movie stays on top

    Hi I have a simple html login page with a Flash built "tour" of the site on one page. on some of the Flash frames, there are URL links that fire a Javascript function on the originating HTML page, to show (using visibility) a <div> section (which shows an enlarged version of the graphic the...
  4. JulianUK

    SQLServer 2005 reliability

    Hi I am trying to persuade the powers that be to upgrade our SS 2000 to 2005 for a major project. One view that is holding things up is that it is generally "unstable", or at least unproven. Is this baseless nonsense or not? Julian
  5. JulianUK

    passing variables from 1 server to another

    Hi I'm not sure this is the correct place for this question but here goes anyway... I have 2 non-secure web sites that require a single "portal" at which point the user enters username and password. depending on a locally (to the portal) stored parameter for each user, the user is redirected...
  6. JulianUK

    request.form(i) is there a 'name' property?

    Hi Is there a 'name' property (or the like) when using Request.Form(index)? i.e. i need to get the name of a particular element by it's index, rather than by it's name. The reason being that I'm iterating through all form elements, but want to ignore those of a certain name. It's got me...
  7. JulianUK

    detecting UP or DOWN of a NumericUpDown

    afternoon / morning I'm trying to detect which button (up or down) was fired during the ValueChanged event. I can tantalisingly see the "pushed" property during debug in my local variables navigator, but can't seem to get at it. What do I need to do? Thanks Julian
  8. JulianUK

    CHARINDEX vs LIKE ... in a WHERE clause

    Hi all I have a need to use either CHARINDEX or a LIKE pattern to find the occurrence of a single char in a field, within a WHERE clause. e.g. WHERE field1 like '%X%' vs. WHERE CHARINDEX('X', field1) > 0 Which would be more efficient? I've gone for the CHARINDEX so far. Thanks Julian
  9. JulianUK

    asp Files getting truncated in DW MX

    [originally posted to the Macromedia DM forum with absolutely no response.] Hi I have a problem when using Dreamweaver MX, whereby it truncates a certain asp file of mine, at the same point when it opens it. Of course, when I subsequently mod then save the file, it is truncated for good with...
  10. JulianUK

    troubles with an &quot;onfocus&quot; in a &lt;select&gt;

    Hi A niggling problem I want my select box to change colour when it receives focus. So... onfocus=&quot;this.style.background='#4F58FF';&quot; onblur=&quot;this.style.background='#4F588F'&quot; Dark blue, to light blue, and back. Trouble is, only the current <option> gets the colour change...
  11. JulianUK

    StringGrid: right justify column

    Hi I'm trying to acheive a simple right justification on text on a column in a stringgrid on a form. by default, they are all left justified. how can I do this? Many thanks Julian
  12. JulianUK

    Stored procedures - do they get compiled?

    Hi Can someone please tell me what is done upon creation of a SQL Server 2k stored procedure in terms of any sort of compilation? I have a stored proc that builds its own SQL based on the params its given and i'm concerned that any optimisation that normally takes place at creation time cannot...
  13. JulianUK

    css background def: IE5.5 vs IE6 - problem.

    Hi I give up sometimes with the lack of consistency between versions of - well, everything! I have a problem with CSS between IE5.5 and IE6. 6 does not show my background as defined in the stylesheet. Simple example, my .css is as follows: body {background: black url(\1-bg.jpg) 0 0 no-repeat...
  14. JulianUK

    Alternative to server.execute (for IIS4 / asp2)?

    Hi I have a piece of ASP3 code and i want to do the equivalent in IIS4 / asp2. Any ideas for an alternative to server.exec? in iis5: -------- ...shared page HTML... .. <% if varPage = &quot;menu1&quot; then server.execute(&quot;menupage1.asp&quot;) elseif varPage = &quot;menu2&quot; then...
  15. JulianUK

    Server.Execute problem with IIS 4.0

    Hi I cannot get my Server.Execute to work on an IIS intranet installation, whereas the same simple code works fine on an IIS 5 set up. Is this command not supported in IIS4 ? Julian
  16. JulianUK

    altering a class thats used more than once on a page

    Hi If I have a class, and I use it in more than one place, I can't then seem to change the attributes of that class later on, using Javascript. If the class is only used in one place, the script changes the attribute fine. Am I trying something fundamentally wrong or is there a way around...
  17. JulianUK

    keyword search on this site.

    Morning! Does this keyword search actually work on this website? I'm searching for &quot;browser OR version&quot; here, fulltext or subject search, but it returns nothing, even when I can see threads from today/ yesterday with at least &quot;browser&quot; in them. I've done a few searches in...
  18. JulianUK

    Parsing SQL from ASP pages containing chars like &quot; ' &quot; etc.

    Hi I have an ASP page which accepts several address lines from text inputs. I have obvious problems if the user enters values contining apostrophes (') as they get passed to SQL Server as parameters for a stored proc, and the SQL falls over. Is there a recognised way of parsing parameters...
  19. JulianUK

    Changing style of a &lt;a&gt; tag in the declaration itself?

    Hi I have a feeling this is a tedious question to some but I haven't been able to find my answer in the archives - for that I apologise. Can I change the style of a link (in my case, simply the colour on hover) in the actual <a> declaration and not in a prior <style> declaration? something...
  20. JulianUK

    Cancelling an OnKeyPress event

    Hi I'm having trouble cancelling an OnKeyPress event from a function (e.g. when and invalid key is pressed). the event is on an INPUT of type Text. i've followed a few examples in these archives, but one that appears to be someone elses solution doesn't work for toffee on my machine! Here is...

Part and Inventory Search

Back
Top