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

    vertical-align in netscape

    Does anyone have a simple workaround to get vertical-align working in a table cell in Netscape? I have a select list (size>1) and a note after the list, all in one table cell. Putting vertical-align:top around the note works fine in IE but not netscape. I realise it's a well known bug in...
  2. iminore

    Word printing apostrophe as 'g'

    I haven't seen it myself but a friend says that whenever she has an apostrophe in a Word document it prints as a 'g', even though it is displayed correctly. Any ideas anyone ?
  3. iminore

    sp_executesql like comparison

    I'm getting all records returned with this: declare @strexec nvarchar(800), @strsearch nvarchar(80) set @strsearch = N'%law%' set @strexec = N'SELECT TitleID,title FROM Titles where title like @strsearch$' execute sp_executesql @strexec, N'@strsearch$ nvarchar' , @strsearch$ = @strsearch any...
  4. iminore

    SQL many values statement

    Suppose I have a table of companyids and orderids: companyid 3 orderid 4 5 6 3 7 3 9 Is there a single SQL statement that will return all the orderids as a delimited string for companyid 3, say, without looping through a...
  5. iminore

    backup defaults

    This may be a simple request - but I'd love to know the answer. Is there a way of changing the defaults on the 'Backup' pane? In particular to change the default to 'overwrite existing media'.
  6. iminore

    Frames on Apple Mac

    Does anyone know what restrictions there are on using frames on an Apple Mac.
  7. iminore

    Frames on Apple Mac

    Does anyone know what restrictions there are on using frames on an Apple Mac.
  8. iminore

    url resolution

    Does anyone have any info on url resolution. I don't mean parsing or validating the syntax of an url - actually checking programmatically that it exists.
  9. iminore

    request.form value

    When using request.form if I examine individual fields (request.form("a")) then a value of 'a b' is returned correctly. If I look at the whole request.form value then blanks etc are converted to their http equivalents. Is there a way of getting the original whole request.form value...
  10. iminore

    Regular expression match value

    look at this code: set regx = new RegExp regx.IgnoreCase = True regx.Global = True regx.Pattern = Sch set reMatches = regx.Execute(DtlRow) if reMatches.Count>0 then for each objMatch in reMatches DtlRow=regx.Replace(DtlRow,&quot;<b style='background-...
  11. iminore

    network IIS stops working

    We run IIS on a windows 2000 server. From my PC I can see pages thro IE for days then suddenly the dreaded 'the page cannot be found'. If I restart my PC then all will be well. Any ideas?
  12. iminore

    date object month error

    Open this file below in your browser. What month is displayed in the date? <html> <head> </head> <body onload=&quot;javascript:var vardate = new Date(2003,10,25);alert(vardate.toString())&quot;;> </body> </html>
  13. iminore

    IIS 6.00 windows 2003 ASP

    Would appreciate any advice on running standard ASP pages on IIS 6.0 running under windows 2003
  14. iminore

    IIS 6.0 on Windows 2003

    Can anyone briefly say how to configure IIS 6.0 on a windows 2003 box to run standard ASP pages.
  15. iminore

    Replication polling subscription server

    I've set up Transactional Replication between two sql2000 servers over the internet. It works beautifully. However on the publishing server once a connection is made the server keeps polling the subscription server to port 139. I've installed SP3. Replication works fine, every 15 minutes but...
  16. iminore

    table cell with select list

    here is the code: <table><tr><td><select size=3><option>aaa<option>bbb<option> ccc</select>note</td></tr></table> I want the 'note' text to appear at the top of the table cell, not at the bottom. Please don't suggest more table cells there are reasons why it's like this.
  17. iminore

    CDONTS in SQL Server 2000

    Running SQL Server 2000 on NT4. Generating an email using sp_OACreate 'CDONTS.NewMail' works fine when done via query analyser but does nothing when used in a stored proc. Nothing gets put in the 'pickup' folder. A beer to the man with the answer.
  18. iminore

    IDENTITY_INSERT not working

    I'm running this in ASP: objConn.Execute(&quot;set identity_insert Keywords on&quot;) objConn.Execute(&quot;insert into Keywords (keywordid,keyword) values(1,'abc')&quot;) I keep getting the message that identity_insert is not set on for table. I see references to dbo qualification in related...
  19. iminore

    HTTP error 403

    I'm displaying an asp page that reads a few tables but does nothing exceptional. However intermittently I get the dreaded error &quot;You are not authorized to view this page&quot; HTTP error 403. I can refresh and it's then fine. Any ideas ?
  20. iminore

    exception c000008e

    We are running SQLServer 7 with SP4 installed. When trying to open a particular table to view the records we are getting the following message: SQLDumpExceptionHandler: Process 11 generated fatal exception c000008e EXCEPTION_FLT_DIVIDE_BY_ZERO On Microsofts site it says this was fixed with...

Part and Inventory Search

Back
Top