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

    Tricky Drop-down

    Everything is possible -- it just depends how much time and effort (and $$$) you want to put into something that is not natively supported in a web page control. The drop downs in web pages are different than in other GUI applications. The dropdowns in regular EXEs are actually comboboxes, not...
  2. SafariTECHPhoenix

    Dynamically created form...onSubmit not working

    Are you sure it is not running? I have noticed that both MSIE 6 and NN6/7 will not produce a noticeable error if something is wrong - they just continue on their merry way and ignore the error. The function may actually being called but an error occurs making it ignore the script. I am not...
  3. SafariTECHPhoenix

    IE Address Bar

    I think you used to be able to do it - you will find older examples on various sites - but I tried a number of those old solutions in MSIE 6 and it does not work ... so I am guessing that this was some sort of issue that was fixed ... You can only remove the address bar in a window opened by...
  4. SafariTECHPhoenix

    form validation help

    Validating a 100% text based questionairre is pretty difficult, since typos, abbreviations, etc will make everything except the exact answers you check for 'wrong'. Basically, your form header must have an onsubmit="return function()" command in it. Replace the "function()&quot...
  5. SafariTECHPhoenix

    Combiing two javascripts...

    It is pretty hard to stop this 100%, as teh address could be seen: 1. by the status bar output 2. by right clicking the link and copying the link to another app 3. by viewing the source of the page. You can get rid of the first 2 by: (1) changing the status bar during the rollover & (2)...
  6. SafariTECHPhoenix

    monitoring cf application/server and metrics

    In 4.5, Debugging will only show up on everyones computer if you use 0.0.0.0 in the debug IP setting. If you want to use this and only you see it, then remove the 0.0.0.0 from the IP settings and put in your own IP address. This may prove difficult if your IP is dynamic though, as it will...
  7. SafariTECHPhoenix

    coldfusion studio freezing

    I've always used RDS and never had a problem. If something does cause a freeze, usually if you wait long enough itwill stop trying to save and throw you an error ... then you should go back into your RDS listings and see if you can connect to the server again ... usually it is the receiving...
  8. SafariTECHPhoenix

    DateAdd time period with Oracle

    I am not familiar with Oracle usage - but I do work with SQL2000 and Access and FoxPro. So this may not be correct. When I do a date comparison with a date in the database I do not use LSdateFormat - this is usually for output, not data comparison. Dates in DBs are stored in ODBC format ... so...
  9. SafariTECHPhoenix

    Query question

    There are 2 possibilities: 1. most Access DBs tables have a field that tracks a ID number using an AutoNumber field. This number is always unique, and if not set to random, always increments by "1" ... so if you do a search and ORDER BY IDfield DESC and set MAXROWS to "1&quot...
  10. SafariTECHPhoenix

    Can only see Tables in a Database

    If not as cmmrfrds suggested, then maybe there wasn't anything in those areas. Maybe your DB admin was entering information via the tables alone - or via a web page. Glen Palmer SafariTECH
  11. SafariTECHPhoenix

    Browser Variable Length

    Well, I'm trying to figure out exactly what you are asking ... as there are different reasons for things like text being cut off. If you are passing variables from a form to another page, you should always use "POST" because it will not cutoff any text from the variables - the amount...
  12. SafariTECHPhoenix

    Need help creating splash screen

    Sorry I missed 1 thing above (otherwise you will end up in a never ending loop) In the CFIF code I gave you it should be something like: <CFIF SESSION.SPLASHLOADED EQ &quot;NO&quot; AND FINDNOCASE(&quot;splashpage.cfm&quot;,&quot;#cgi.scriptname#&quot;,&quot;1&quot;) EQ 0> <CFLOCATION...
  13. SafariTECHPhoenix

    Need help creating splash screen

    If you want to make sure the splash page is seen first each session (visit) on a CF site, then teh best thing to do is create a session variable in your application file that defaults to a negative value, and then have the splash page itself change to positive. I know that is a bit confusing...
  14. SafariTECHPhoenix

    Almost driven to tears...please help

    PS: If you think it may be due to #1 (previous post) then make sure your boss's computer us set to &quot;once per session&quot;. If you do this - at least the problem will go away, from his perspective! Many programmers and developers set their browsers this way to make sure they see the...
  15. SafariTECHPhoenix

    Almost driven to tears...please help

    I hope you have had some success in this matter ... but I do not think you will find you can do anything to fix the problem (unless it is #2). Your script looks ok. Once an image is pulled from the server it should load from the cache. I use nothing but MSIE and have never had a problem - but...

Part and Inventory Search

Back
Top