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: *

  1. mcmoyer

    SmartViewerJava.asp

    param name=HasZoomControl value=true or false
  2. mcmoyer

    CFINPUT uppercase question

    Maybe this is too simple, but couldn't you just do some preproccessing with <cfset myTxtInput = UCase(myTxtInput)> MCMoyer
  3. mcmoyer

    session time out

    I've used this javascript: setTimeout('alert(\&quot;Automatic logout in 3 minutes\&quot;)',1020000); the number 1020000 is the number of milliseconds to wait before performing this action. As far as resetting the session, as long as the user refreshes the page from the server or requests...
  4. mcmoyer

    passing CF variables through open( ) in JS then perform CFQUERY

    If I'm reading this right, this is what I would do. In your javascript function, you would need to have something like this: window.open('myCFM.cfm?myTxtFld=' + myform.myTxtFld.value,'_blank',''); myCFM.cfm would have the reference URL.myTxtFld in your query then. The form variables are...
  5. mcmoyer

    Crystal report problem

    I believe the cfreport tag needs a fully qualified path with the drive letter.
  6. mcmoyer

    Table border

    Either use style sheets to set the border-left, border-right,border-top,and border-bottom props or enclose in another table with a border i.e. <table border=1> <tr> <td><your table goes here></td> </tr> </table>
  7. mcmoyer

    Window.open

    or put this in the page you're calling <script language=&quot;JavaScript&quot;> self.resizeTo(screen.availWidth,screen.availHeight);self.moveTo(0,0); </script>
  8. mcmoyer

    Crystal Reports 8 &amp; Cold Fusion

    Rick, I've used a custom tag available on Allaire's site in order to use the ActiveX control. I've also created a custom tag to display reports with the java control posted below. Hope this helps Marlon Moyer <!--------------------------------------------------------------------------- NAME...
  9. mcmoyer

    Automatic logout after a specified idle period

    If your wanting the page to be logged out also, you might try using a javascript like this also: setTimeout('window.location.href=\&quot;/mylogoutPage.cfm&quot;',1200000); This will cause the page to load 'mylogoutPage.cfm after 20 minutes of inactivity.
  10. mcmoyer

    Installing Visual Source Safe on my CF server

    It's really pretty simple. You just need to install Visual Studio source safe on server. From inside source safe, set up your allowed users. After that, from the CF admin screen choose 'Source control'. Browse to the directory that has the SrcSafe.ini file in it. After that, right...

Part and Inventory Search

Back
Top