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. 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]
  16. Quinnie

    Posting form data to a pop up window

    Two alternatives: You can make a function to construct a URL like this : function submitForm(form) { var myURL = 'formtest2.asp?sometext=' + escape(form.sometext.value) + &quot;&sometext2=&quot; + ....etc return myURL; } and make the change to form to...
  17. Quinnie

    Load Order

    Ooopss...sorry test script.... here is the real one: <HTML> <SCRIPT> function postLoad() { if (document.all) myImage = this.LoadLater; else myImage = document.LoadLater; myImage.src=&quot;Img1.jpg&quot;; } </SCRIPT> <BODY onload=&quot;alert('Document...
  18. Quinnie

    Load Order

    Because a pages onload event does not fire until all other parts in the page have loaded you could set you IMG tag not to have SRC and then set the source on load. There is a problem with Netscape that mean that you would have to specific the size of the image you want to appear (otherwise it...
  19. Quinnie

    Does anyone know where I can find this script? Also....

    OK, Never seen this before and took a while to work through but this is how it was done. Firstly it will only work in IE4 and above. It is not avaliable in NS. The effect is done through CSS backgrounds and filters. Each menu item is in a class that has a black background for a link and a...
  20. Quinnie

    Nested and External Class Question

    Before the code...just give a couple of pointers (hope it helps). Although constructers obviously return something they sound not have anything between public and functionName. This is a special case that only applies to constructors. If you define a property to have a &quot;_&quot; at the...

Part and Inventory Search

Back
Top