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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rmz8

  1. rmz8

    How do I get Internet Explorer to display XML pages, and not the code?

    The reasoning for this is that XML doesn't do anything besides organize data. As you can see from the code you posted above, there is nothing that tells Internet Explorer how to display the data. If you want to format the XML data you can use XSL (Extensible Stylesheet Language) or a host of...
  2. rmz8

    Cannot shut down laptop

    I assume that you can probably force a shutdown by unplugging the laptop and removing the battery for several minutes (assuming the computer is not in hibernation). Pop it in and then try booting up. I believe only Macs retain their state during standby with the battery removed, so this should...
  3. rmz8

    Network Issue

    Sorry if these questions are issues you have already checked, but you have to ask the easy questions first: Is PC 1 on the same workgroup as PCs 2 and 3? Is File and Printer Sharing (via the network adapter properties dialog) enabled? Do you have a firewall enabled on PC 1 that limits access...
  4. rmz8

    automounting of network servers on osx

    You don't even have to make aliases. When the shares are mounted, simply go to your login items and add them as you would any other item. Ryan ;-]
  5. rmz8

    Order Paragraph Text Alphabetically

    Thanks Ryan ;-]
  6. rmz8

    Methods of passing hidden variable?

    You can pass a hidden variable by making it a hidden form field. For example: <form name=&quot;form1&quot; method=&quot;post&quot; action=&quot;nextpage.cfm&quot;> <input type=&quot;hidden&quot; name=&quot;hiddenField&quot; value=&quot;This is a hidden variable that you can then refer to on...
  7. rmz8

    Order Paragraph Text Alphabetically

    I did want to alphabetize a bunch of memo fields. What if I take the first word of each one of the paragraphs and then organize it that way? That would work except that some have HTML, so <font color=red> might be the first part of a paragraph. Clearly that would not be an effective means of...
  8. rmz8

    Order Paragraph Text Alphabetically

    How can I order a paragraph of text in a query. I tried using ORDER BY Var_Name ASC but it doesn't seem to organize the text alphabetically. Ryan ;-]
  9. rmz8

    Valide File Upload Field

    Thanks! Ryan ;-]
  10. rmz8

    Valide File Upload Field

    How can I create code that will validate a file upload field? The validation will just check to make sure that text has been entered in the file upload field. Ryan ;-]
  11. rmz8

    MM/DD/YY Formate Year Restricted SQL

    Thanks sylvano! Ryan ;-]
  12. rmz8

    MM/DD/YY Formate Year Restricted SQL

    In the date format MM/DD/YY how can I make a SQL statement that only returns records with the year 01? Thanks in advance. Ryan ;-]
  13. rmz8

    IE saving jpg images

    I am experiencing the same problem as first described and nothing has worked. Any image that I try to save, regardless of where it is on the web, will only save in BMP format. I have tried reinstalling IE and have even installed IE 6, but it still doesn't work. Ryan ;-]
  14. rmz8

    Writing for optimal speed

    Just to correct geofflilley, you use: <CFIF ParameterExists(&quot;Form.Variable&quot;)> to check if a variable exists. The existance of a parameter (whether it has been created) and whether it is defined (if the value is null or not) or not are two different things. Ryan ;-]
  15. rmz8

    How to preview post

    You can pass the posts as a form value and then refer to it on the preview page. For example, let's say a user types in their text in the MESSAGE textbox. Upon clicking preview, the preview template will retrieve the information that was posted. You refer to the textbox in the form of...

Part and Inventory Search

Back
Top