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 Quinnie

  1. Quinnie

    Sorting arraylist of object

    Can you post your over-ridden compareTo method in your BondSummary class. Will have a look, Kev
  2. Quinnie

    Installing Java complier on XP platform

    Hi tab73, What went wrong. Is the file corrupt or did the install go ok but something strange is happening when you use it. Kev
  3. Quinnie

    Why ÆØÅ become strange signs?

    Hi Petal, are you get %C6... or what Kev [Afro2]
  4. Quinnie

    Forms

    Sorry my bug. In the WriteDarioButtons function you need to change the array[randOption].... line to : array[randOption] = array[array.length - 1] Kev [afro2]
  5. Quinnie

    Locating an existing application/window via Javascript

    It's true...can't be done. What you are trying is an example of why MS in so open for viruses. That is why Javascript prohibits access. Kev. [Afro2]
  6. Quinnie

    Forms

    Nice and easy change or add the following lines : 1-Add a new array var NewOptions = ["OTHER","OPTIONS"]; 2-Change the writeRadioButton function to : function writeRadioButton(name, array) { while (array.length > 0) { var randOption = rand(array.length)...
  7. Quinnie

    bizarre img src problem

    can you send html you are using (example of working and not)....think this is URL problem...quick look and we'll sort out. Also if you can post the image somewhere I look at that too. Kev [afro2]
  8. Quinnie

    Forms

    OK this may look a bit weird (mainly because you need the random number functions) but this should work <SCRIPT> var arrayOfOptions = [&quot;10&quot;,&quot;11&quot;,&quot;13&quot;,&quot;14&quot;, &quot;anything&quot;]; rnd.today=new Date(); rnd.seed=rnd.today.getTime(); function rnd() {...
  9. Quinnie

    problems with .split

    It is showing you &quot;c_type,Any&quot; because that is a text representation of the string array. If you just want the second tokenized string you need to change tempstring2 to : tempstring2 = tempstring.split('=')[1]; Hope that helps, Kev [afro2]
  10. Quinnie

    hey, any one ever see this?? - try{}...

    palbano, Depends what you mean. Can't do this level of handling up until NS6 but can over-ride onerror event, which can show if you like. try ... catch was added in JS1.4 for NS6 try ... catch with multiple catches was added in JS1.5 for NS6 Hope this is what you ment. Kev [Afro2]
  11. Quinnie

    Encryption

    Looking into this but not familiar with JBoss. What I can is tell you what I am looking into to hopefully help your search. Generally if you want traffic encrypted over the net you neet to set up SSL for https communication usually on port 443. Finding small amounts of info about transport...
  12. Quinnie

    Forms

    Is there any pattern to the order or is it random? Kev [Afro2]
  13. Quinnie

    hey, any one ever see this?? - try{}...

    It is for error catching seen frequently in Java (not that common in Javascript). It says try {to set the document title to 'Misc General Merchandise'} and if an error occurs catch it (store error information in E) {and do nothing} i.e. try { normal code that could go wrong } catch...
  14. Quinnie

    Trivial But Irritating Problem

    The problem is that you should only have width=60 in the column headers e.g.: <th><font color=white width=60>LCASH</th> and not in the <td>s...so they would be something like: <td align=right nowrap>0.00</td> <td align=right nowrap>1645.00</td> etc. That will sort it, Kev [afro2] P.S...
  15. Quinnie

    setting onclick property

    Hi, May not have enough info here to fix but try removing quotes and () var sNoteOnClickJs = 'showDetails()'; This means sNoteOnClickJs is a string, try : var sNoteOnClickJs = showDetails; If this doesn't work cam you post more. Kev [afro2]

Part and Inventory Search

Back
Top