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 strongm 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: xjs
  • Order by date
  1. xjs

    Firefox cannot read secure stylesheet with XHTML doctype

    I had checked that too. I made sure that the page validated as XHTML strict and the problem still occured. I also tried an XHTML transitional doctype and had the same results. The problem doesn't happen on an unsecure server. I'm not sure what else to try.
  2. xjs

    Firefox cannot read secure stylesheet with XHTML doctype

    monksnake, I did try that before and had the same problem. Thanks for the suggestion. xjs
  3. xjs

    Firefox cannot read secure stylesheet with XHTML doctype

    Hi all, I have been searching the web looking for a solution and can not find the answer I need. I have an XHTML web page coded with an XHTML strict doctype that references a style sheet on a secure server. IE6 renders this page as expected but Firefox 2.0.0.3 seems to ignore the stylesheet...
  4. xjs

    Content Print.css

    Delete this line: <link rel="stylesheet" type="text/css" media="print" href="it2/itsd/style/style_content_print.css" /> Take out the red part of the following but keep everything else: <link rel="stylesheet" type="text/css" media="screen" href="it2/itsd/style/style_content_screen.css" /> Then...
  5. xjs

    Content Print.css

    Without seeing the code, I'm going to guess that you might find multiple <style> tags between your <head> tags similar to below: <style type="text/css" media="screen">@import url(content.css);</style> <style type="text/css" media="print">@import url(content_print.css);</style> If this is the...
  6. xjs

    Web page reverts to previous version using Dreamweaver to FTP

    I use Dreamweaver MX 6.0 to FTP files between my local hard drive and a remote server. Occasionally, I find that a web page which has been saved locally and uploaded to a remote server mysteriously reverts back to a previously saved version of the file on BOTH my local hard drive and remote...
  7. xjs

    getString()

    tarwn, i haven't tried i your suggestion yet but it looks like its exactly what i was looking for. thank you.
  8. xjs

    getString()

    i wrote a bad SQL statement above. let me make this clear. i only want FIELD1 and FIELD2 in my recordset so i write the SQL to select only FIELD1 and FIELD2 as shown below but get an error because i have a WHERE and ORDER BY that needs FIELD3 and FIELD4 respectively. strSQL = SELECT FIELD1...
  9. xjs

    getString()

    i want to use getString() to optimize code. i have &quot;WHERE&quot; and &quot;ORDER BY&quot; in my SQL statment but don't want those fields to display on my table. strSQL = SELECT FIELD1, FIELD2 WHERE FIELD3='something' ORDER BY FIELD4&quot; i want to display only FIELD1 and FIELD2 in a table...
  10. xjs

    Need result of aggregate function on form using DAO

    i think i'm in the wrong forum but i found the syntax i was looking for, thanks. rs.Fields(0)
  11. xjs

    Getting the result of an aggregate function using DAO

    i found the snytax i was looking for, thanks. rs.Fields(0)
  12. xjs

    Getting the result of an aggregate function using DAO

    This seems to be an easy one but I can't find what I'm looking for. Can anyone provide the syntax to reference the result of an SQL statement that uses an aggregate function with DAO? SELECT SUM(Cost) FROM table... How do I reference or get the result of &quot;SUM(Cost)&quot; from this query...
  13. xjs

    Run-Time Error 3601 -- Too Many Parameters

    at a quick glance you need to adjust your query string and quote marks. strSQL = &quot;SELECT PATIENT.ID FROM tblPATIENTS &quot; strSQL = strSQL & &quot;WHERE PATIENT.ID = &quot; & Forms!MyForm!txtID & &quot;;&quot; Set rs = Currentdb.OpenRecordset(strSQL)
  14. xjs

    Need result of aggregate function on form using DAO

    This seems to be an easy one but I can't find what I'm looking for. Can anyone provide the syntax to reference the result of an SQL statement that uses an aggregate function with DAO? SELECT SUM(Cost) FROM table... I want to update the value of a text field on a form but am not sure how to...
  15. xjs

    Anyone Know if Xpress Will Run on Windows ME?

    i am currently using quark 5 demo on windows me
  16. xjs

    Rounding down / truncating numbers in ASP

    &quot;Fix&quot; was the fix. Very much appreciated. Thank you, Tarwn... xjs
  17. xjs

    Rounding down / truncating numbers in ASP

    thank you all for the help, i'll try both ways.
  18. xjs

    Rounding down / truncating numbers in ASP

    Does anyone know how to strip a decimal so that a rounded down integer is returned? Would I have to parse text from the number and remove the decimal and everything to the right of it? It sounds like it should be easy but I can't find what I need on the web. Am I missing something? Thanks.
  19. xjs

    print content only

    it looks like it works in ie only. you see the html, word doc gets printed. i just tried/tested it in nn and it doesn't work at all. (i should have known that. thanks for keeping me honest.) nn 4.08 printed the actual html page, not the alternate file. use javascript to sniff the browser and...
  20. xjs

    print content only

    this also works to print other file types like a word document, not just html. <link rel=alternate media=print href=&quot;printcontent.doc&quot;>

Part and Inventory Search

Back
Top