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

    how do I write out to file

    I need to write out an html file and save it to my computer. I have all the html writing and I am putting it into a textbox but it is a lot of text to copy and paste into a file. I want to just save out to a file. Is there an easy way to do this? Thank you Aaron
  2. aarontra

    textbox and or table select item from list box?

    I have a form with a list box and a text box that both update a table to saves a value in a table which I use in some reports. Sometimes I know what the ClassID number is and just type it in the text box and press the button other times I select the ClassID from the list box. This all works...
  3. aarontra

    sort drop-down based on another drop-down

    I have 2 drop-down boxes and I want the first to sort the 2nd one. The 2nd drop-down box is not being sorted. 1st drop down: sort_Class_List Row Source Type: Value List Row Source data: 'class_name';'campus';'class_name';'start_date' Default Value: 'campus' On click: Private Sub...
  4. aarontra

    can you change the look of the 'Browse..' button?

    Can I can the look of the 'Browse..' button that comes with the file input form field? <form action=&quot;#ThisPageName#&quot; ENCTYPE=&quot;multipart/form-data&quot; METHOD=&quot;post&quot;> <input type=&quot;file&quot; Name=&quot;BannerGIF&quot; Value=&quot;#BannerGIF#&quot...
  5. aarontra

    Java and mac

    We are trying to get Java plug-in 1.4.1 working on a mac OS X 10.2. It seems like even though we upgraded the OS to 10.2 it is still running java 1.3. How do I find out which version of the Java plug-in is running? How do I choose which one to run? We have a java &quot;application&quot; that...
  6. aarontra

    css

    I need to have a vertical bar that is a little longer than the &quot;body text&quot; of the page, that seperates the &quot;link menu&quot; from the &quot;body text&quot;. And at the bottom our logo image. I am using style sheets. The problem of course is that the page looks good in I.E. (5.0...
  7. aarontra

    too much space between divs

    There is too much space in between div &quot;linkmenu&quot; and &quot;vbar&quot;. Everytime I try to make them closer it cuts off the text of &quot;linkmenu&quot;. I only want a little space between them. http://webapp.cdl.edu/Cats2002test/CATS2003.08.20.MML/test/test.html file: eport.css...
  8. aarontra

    extending a Join

    Here is the sql that works: SELECT Sessions.Title as SessionTitle, Sessions.*, Users.firstName as LPFirstName, Users.lastName as LPLastName, Users.Email as LPEmail, Users.CampusCompany as LPInstitution FROM...
  9. aarontra

    extending a Join

    Here is the sql that works: SELECT Sessions.Title as SessionTitle, Sessions.*, Users.firstName as LPFirstName, Users.lastName as LPLastName, Users.Email as LPEmail, Users.CampusCompany as LPInstitution FROM (Sessions LEFT JOIN SessionUsers ON (Sessions.SessionID =...
  10. aarontra

    view source

    When I view that source on my Coldfusion pages there is a lot of blank lines at the top of the file. (Windows, Coldfusion 4.5, I.E. 5.5) I do not remember this when coding ASP pages. Has anyone else seen this? Can and or how do I get rid of it? Not really that urgent, just annoying. Thank...
  11. aarontra

    mailto: bcc not working for mail client Outlook

    <A HREF = &quot;mailto:#toemail#?subject=test&bcc=#bcc#&quot;>Send Email To Found Set</A> Does anyone know how to make the above code work for Outlook? bcc contains a comma dilim. list of email addresses. (don't even need a subject) Thank you Aaron
  12. aarontra

    combining sql statements?

    I have two columns in my table called tshirtsize and tshirtcolor, which I want to encode into a 3 character code. [Sleeve][Size][color] [S|L] [1-6] [B|G] where tshirtsize = 'Short Sleeve M' tshirtcolor = 'Stonewashed Blue' result should be: S2B I would like to do this in sql. Here is...
  13. aarontra

    I have two columns in my table call

    I have two columns in my table called tshirtsize and tshirtcolor, which I want to encode into a 3 character code. [Sleeve][Size][color] [S|L] [1-6] [B|G] where tshirtsize = 'Short Sleeve M' tshirtcolor = 'Stonewashed Blue' result should be: S2B I would like to do this in sql. Here is...
  14. aarontra

    SQL and Single Quote Problem

    I do not feel I a getting consistent results with trying to handle single quotes in sql with cold fusion. I thought the function PreserveSingleQuotes() helped with data with single quotes in it. not sure why the code below would does not work <cfset UpdateUser2_sql = &quot; update mytable...
  15. aarontra

    session variables not working

    Something is wrong with our web and I can't figure it out. application.cfm <CFAPPLICATION NAME = &quot;#ApplicationName#&quot; CLIENTMANAGEMENT = &quot;YES&quot; SESSIONMANAGEMENT = &quot;YES&quot;> Pages that have session variables give this error...
  16. aarontra

    help w/ regular expressions

    I am trying to have a generic way of finding out about the realtionships of pages to one another. Like page form1.cfm post to form1handler.cfm And page usecustomtags.cfm uses custom tags <cf_font>,<cf_wrapper> ... I have it so I can read the directory loop through each file, but I am having...
  17. aarontra

    custom tag

    say I have a custom tag called &quot;mycustomtag.cfm&quot; How and or what is the best way to dissallow it from being called by itself? i.e www.myweb.edu/myfolder/mycustomtag.cfm why? because if it gets called by itself it breaks Thank you Aaron
  18. aarontra

    19.0 instead of 19

    In the loop below <CFLOOP QUERY=myquery> <A HREF=&quot;mypage.cfm?myvar=#myvar#&qvar=#myquery.ID#&quot;>edit occurence</A> </cfloop> the variable myvar is not part of the query. CF makes the value of 19 into 19.0 ?myvar=19.0&qvar=2 Other links on the page use ?myvar=#myvar# without...
  19. aarontra

    Output entire sql statement that gave database error

    In ColdFusion I like the way you can dynamicly create queries to the database. But how do I display the entire sql statement that causes a database error? Of course we are using MS Access. Aaron
  20. aarontra

    don't know fieldname

    In ColdFusion is there a way to specify a field in a query when you do not know what the name of the field is? What to be able to select any table in a database with one page. I have done it with ASP, but ColdFusion? Thank you Aaron

Part and Inventory Search

Back
Top