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 wOOdy-Soft 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 aarontra

  1. aarontra

    Scroll disable

    This sort of works, but the forms flickers. Private Sub Form_MouseWheel(ByVal Page As Boolean, ByVal Count As Long) Me.Form.Recalc End Sub
  2. 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
  3. aarontra

    textbox and or table select item from list box?

    Thank you GingerR Your questions helped me figure it out. Now the textbox updates the list box. Me.Class_List = Me.ClassID_textbox and the list box updates the textbox Me.ClassID_textbox = Me.Class_List Thanks again Aaron
  4. aarontra

    textbox and or table select item from list box?

    The form is Unbound. Everything is Unbound Yes No No Do they need a Control Source? Thank you Aaron
  5. 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...
  6. aarontra

    sort drop-down based on another drop-down

    Thank you willir! That worked perfect. Now I can make expand on it to make it sort by more than one field. Thanks again Aaron
  7. 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...
  8. aarontra

    Why do I keep getting this error?

    Do any custom tags have any CFINCLUDE(s) ? Like this custom tag. <CF_BTMapBlaster ... > Aaron
  9. aarontra

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

    Thank you all. I can figure out to what Wullie suggested. When I press the 'brower' button it works. Then when I press the 'Upload' button, it does not submit the form, it clears 'file1'. Then when I click it again it submits the form, but of course 'file1' is empty! I took out...
  10. aarontra

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

    I could only change the border of the 'Browse..' button: <input type=&quot;file&quot; Name=&quot;BannerGIF&quot; style= &quot;border: 1px solid #greenhex#;&quot; size=&quot;50&quot; > And it changes the border to the file input form field and the 'Browse..' button. Aaron
  11. 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...
  12. aarontra

    inserting a template into a hidden field

    replace the double quotes around template=&quot;&quot; with template='' <input type=&quot;hidden&quot; name=&quot;doc&quot; value= &quot;<cfinclude template='../Secure/Req/eSignDocs/#rsLoginVerification.docNumber#/Doc.cfm'>&quot;> This works for any nesting of double quotes. Aaron
  13. 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...
  14. aarontra

    css

    I &quot;decrease font&quot; on Netscape. That helped a lot. How do I avoid having user have to adjust their font size? should I set the font size? Also if I resize the window the text overlaps the images. Is there a way to avoid this? I am using &quot;absolute&quot; positioning, because I can...
  15. 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...

Part and Inventory Search

Back
Top