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

  1. fatbloke

    Problems with Quick Time in browser

    Have a web page that includes a QTVR visualisation. This currently runs OK the first time it is accessed, but on subsequent visits, a plugin error is detected, with the standard message about attempting to reference memory that is not accessible. Any ideas on this? Any views on using QTVR...
  2. fatbloke

    Group page numbers!!!!?!?!?

    Select 'Format|Section', and within the displayed dialogue you can select the Group that you're interested in, and check the box for 'Reset Page Number After'. That oughta do it :-)
  3. fatbloke

    Pop-Up Window

    Netscape is very limited in the events that it supports. It certainly doesnt support onClick events for images, but it does for anchor tags. So you need to enclose your image in an anchor:- <A href=&quot;#&quot; onClick=&quot;JavaScript:AddContractA_Help()&quot;><IMG NAME=&quot;Help&quot...
  4. fatbloke

    Setting an animation so it runs at certain times.

    If I understand your question correctly, I think all you need to do is to change your 'pclock' function as shown in red below:- function pclock() { time=new Date(); document.myForm.Date_Time.value=time; if(counting==true) { count=init+(time-start)*((dirup==true)...
  5. fatbloke

    layer objects in netscape

    It seems that the <LAYER> enclosed within your original <FORM> is not considered part of the form, which is why you have to include the declaration for <FORM name=radform...> within the layer. Having done this, then you will need to use this formname when validating Q2: - function ValidateQ2()...
  6. fatbloke

    Page Caching/Loading

    I've tried this using NN4 and IE5 and it seems to work (although it will only be apparent on pages which are slow to load). The DLOAD layer appears initially, but is replaced with the DMAIN layer (containing your page) once everything has been loaded :- Insert this in the <HEAD> section:-...
  7. fatbloke

    &quot;document[name] has no properties&quot; error in netscape

    The syntax (for NN/IE) needs to be:- document.images[name].src Should solve the problem. Enjoy :-)
  8. fatbloke

    Cant figure out this problem

    I think you're trying to use 'substring' on a non-text object. You need to identify the selected option within the select box, and the associated value:- if (document.TheForm.cohort_year.options[i].selected) { cohortYear = document.TheForm.cohort_year.options[i].text.substring(0,cohortcheck)+...
  9. fatbloke

    CR v6 and v7 problems?

    Sorry, spotted the solution to this one myself - using the wrong version of file crpe32.dll (7.0.100.15 rather than 6.0.1.135). :-(
  10. fatbloke

    Color background for a text input field

    Can certainly be done in IE 4+ using css entries:- <html> <head> <style> .readonly {font-size: 8pt; font-weight: normal; font-family: Arial; color:#ffffff; background-color:#009999;} </style> </head> <body> <form> <input type='text' class='readonly' ... ... </form> </body> </html> Enjoy :-)
  11. fatbloke

    CR v6 and v7 problems?

    Reports designed in CR v6. The main report prints Oracle data. Each detail line contains a subreport which retrieves relevant details from an AS400 machine. StoreNumberVar is used to save a value from the subreport so that it can be totalled on the main report. This all works fine when called...
  12. fatbloke

    using javascript to rewrite current page

    A further point is that your </script> tag is written within your for (....) function - shold read as follows:- 2ndStageContent += (&quot;for (var i = 0; i <= 2; i++) {&quot;); 2ndStageContent += (&quot;document.write ('<option value=' +searchCriteria[i] + '>' + searchCriteria[i]);&quot;)...
  13. fatbloke

    Can Crystal report 8.0 access IBM mainframe DB2 tables data

    We have been reading DB2 data from an AS400 machine using Crystal Reports v6 (and also checked in v7 - have not tried it in v8 but assume will function OK). This caused a number of problems, due to an incompatible ODBC driver. In the end we had to purchase new ODBC drivers from a company...
  14. fatbloke

    DropDown hell!!!!

    The basic syntax for the selected value is this:- document.myForm.mySel.options[i].text; where myForm is the form name, mySel is the name of the <SELECT> tag, and [i] is the index of the selected item. Stick this into a string variable and you're in business. PS Sorry about the last post -...
  15. fatbloke

    DropDown hell!!!!

    The basic syntax for the selected value is this:- document.myForm.mySel.options[i].text; where myForm is the form name, mySel is the name of the <SELECT> tag, and [i] is the index of the selected item. Stick this into a string variable and you're in business. Enjoy :-)
  16. fatbloke

    paste multi-selected

    Actually, this is better because it uses an onChange handler rather than the Go! button. Have also added a reset button to undo previous selections :-) <HTML> <HEAD> <TITLE>Select into Textbox</TITLE> <SCRIPT> <!-- function getOpts() { var outStr =&quot;&quot;; for...
  17. fatbloke

    paste multi-selected

    If I understand your question, this should solve your problem (tested in IE5 and NN4):- <HTML> <HEAD> <TITLE>Select into Textbox</TITLE> <SCRIPT> <!-- function getOpts() { var outStr =&quot;&quot;; for (i=0;i<document.myForm.mySel.options.length;i++) { if...
  18. fatbloke

    how to stop submit

    Try this in your function:- function check(){ if (criteria){ alert ('Please make a valid selection.'); return false; } }
  19. fatbloke

    Setting true to multiple controls with same name

    I think its something like:- document.formName.elements[n] where n is the number of each element within the form, starting from 0 and including all inputs. HTH :-)
  20. fatbloke

    Javascript error on Mac ie.

    As far as I am aware, the only parameters that can be specified for window.resizeTo are numbers representing the width and height (in that order). So your statement needs to be as follows:- window.resizeTo(653,800); Enjoy :-)

Part and Inventory Search

Back
Top