Message from Dmitry Kulinich Most recent post: 9/7/2007 2 authors and 2 replies. When copy iframes contentWindow disappears, how to avoid this? -- Thank you, De Cool, EPE read more about When copy iframes contentWindow disappears, how to avoid this?
Message from Lei Lei Shi Most recent post: 9/7/2007 2 authors and 2 replies. Hello Everyone, In my JAVAscript, an ActiveX control returns a byte array, say block. But by any means I just can not access it. The typeof operator says its time is unknown, any call to this object will fail, either toArray or toString. Of course, indexing by [] will fail. Then I tried type casting in the way I know: var test = (Object) block; var test = (Array) block; var test = (byte[]) block; var test = (Object[]) block; var test = (String)block; But seems JAVAscript does not support casting in that way. So I tried to contruct object from that: var test = new Object(block); var test = new Array(block); var test = new String(block); But none of above let me access the bytes inside the array. Is there anyone successed in getting a byte array from an ActiveX control? Thanks, Lei Lei Shi read more about How to convert a byte array from ActiveX control to an Array object
Message from Retalix is Hiring Most recent post: 7/12/2007 2 authors and 2 replies. Do any of you know someone experienced in JAVA that is interested in a full time job in Tucson, Omaha or Dallas? Company dies not pay relo but has an excellent reputation as a great place to work. If you are interested sheck out www.retaliz.com read more about JAVA
Message from Louis Most recent post: 2/2/2007 3 authors and 5 replies. I've a problem using the REPLACE method. Here is a short description: In a.html: I used the following to call the chgtitle function: <a href=" " onClick="chgtitle('b.html?mytitle=old_title')">Old Title</a> function chgtitle(name) { window.location.replace(name); //alert(name); } The result is my browser (Firefox) ends up reloads a.html again after loading b.html You can not even see b.html. But if I un-comment alert(name), it seems to stop going further and it stops at b.html. But this isn't the proper way to do this. It seems I am missing something here. (The reason I need this is I don't want user to be able to go back after changing something.) Please help and comment. read more about JAVAscript's Replace Method
Message from Saxman Most recent post: 10/15/2006 2 authors and 3 replies. Can anybody tell why the following title doesn't display in the status bar? .................................................................... <html> <head> <script> document.title="My Own Page" window.status="Hello and welcome to my own page" </script> </head> <body> </body> </html> .............................................. TIA read more about Newbie:window.staus
Message from Kenny Most recent post: 8/23/2006 2 authors and 3 replies. Any help appreciated Trying to pass JAVAscript prompt value to asp for processing. Each time I refresh the page, the asp code writes the previous prompt's value. Is the cookie not written before the asp code executes? Many thanks in advance.<script type="text/JAVAscript"> var a = prompt("Enter Password please!"); document.cookie = "test=" + escape(a) + "; expires=1/1/2010"; </script> <% response.write "test=" & Request.cookies("test") & "<br>" %> read more about Newbie: 3 Lines - Why does not it work.
Message from Jan Smit Most recent post: 2/17/2006 2 authors and 5 replies. Hi there, I've a nice .JS-file (see below) to show the actual time here in Holland on my homepage. But . . I've adopted children from Colombia and want a same clock with Colombian time (only - so no worldtimes) on my homepage. Anybody an idea or script to do that? I tried to figure it out to do it myself, but failed. I'm not so good in programming. Thanks in advance, Peter. /////////////////////////////////////////////////////////// // "Live Clock Advanced" script - Version 1.0 // By Mark Plachetta () // // Get the latest version at: // http://www.zip.com.au/~astroboy/liveclock/ // // Based on the original script: "Upper Corner Live Clock" // available at: // - Dynamic Drive (http://www.dynamicdrive.com) // - Website Abstraction (http://www.wsabstract.com) // ======================================================== // CHANGES TO ORIGINAL SCRIPT: // - Gave more flexibility in positioning of clock // - Added date construct (Advanced version only) // - User configurable // ======================================================== // Both "Advanced" and "Lite" versions are available free // of charge, see the website for more information on the // two scripts. /////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////// /////////////// CONFIGURATION ///////////////////////////// // Set the clock's font face: var myfont_face = "comic sans ms"; // Set the clock's font size read more about Help me out
Message from Bookmarks Most recent post: 1/23/2006 10 authors and 18 replies. The statistics monitoring software we are using doesn't monitor who is visiting us from bookmarks. To me, that'd be very informative data to have. First of all, it'd tell us "who" thinks our website is important enough to include us as book marks. But, more importantly, I can run statistical algorithms with that information to try to guess at who are bookmarked/repeat/new visitors to the website. I think there should be ways to do some server and/or client side programming to grab this information. How can you glean this info from the weblogs, for users you can/shouldn't force through a registration rigor? How could cookies help with that? otf read more about Who is bookmarking my site?
Message from Shinya Most recent post: 12/20/2005 2 authors and 2 replies. Dear Everyone, Is there any way to include the .js file in the JAVAscript file? Say I've a JAVAscript file called "dosomething.js" I add the following line in the file, but I can't call anyfunction from myscript.js What's the problem? <script src="myscript.js" type="text/JAVAscript" > function DoSomething() { alert( "Do Something!!!" ); myscriptFunction( ); }Shinya Koizumi Windows Tips http://www.smartestdesign.com ( underconstruction ) read more about include js file in the JAVAscript file
Message from Alex Most recent post: 12/10/2005 2 authors and 2 replies. Is there a script with the possibility to send a webpage to an e-mailaddress on a determined time/day? read more about Forwarding a webpage to an e-mailaddress
Message from Jackson Most recent post: 11/26/2005 3 authors and 3 replies. Is there any function works like parselong in JAVA. I know until certain length I can use the parseInt. S read more about parselong for JAVAscript
Message from Ryan Sullivan Most recent post: 11/24/2005 4 authors and 4 replies. I've been struggling mightily in getting this to work with the scripts I've seen. I've an image map that uses overlib to display information about a school's campus: http://dcavello.phenominet.com/about/tour.php I'd like onClick to generate a series of thumbnails located directly above or below the image map. Those thumbnails'd then be linked to larger images which'd pop-up in a new browser window. Does anyone know of a JAVAscript utility that I could use for this? I am not all that familiar with JAVAscript, otherwise I'd write my own utility. Thanks for any help you can offer. Ryan -- To reply, please remove your robe. read more about JAVAscript Image Viewer from Image Map
Message from RandyTh Most recent post: 11/14/2005 2 authors and 2 replies. I've been looking the instruction for how to install the J2EE 1.4. I've found many of 1.3, but never be able to find one for 1.4 read more about Please some one direct me to the j2EE 1.4 installation page.
Message from Most recent post: 10/24/2005 3 authors and 3 replies. How can I alternate pictures on a site, something like a slide show. Thanks! read more about SlideShow
Message from Ross Most recent post: 10/23/2005 3 authors and 3 replies. Hi, I've a problem with non ie browsers <script type="text/JAVAscript"> window.onload = function(){ var strCook = document.cookie; if(strCook.indexOf("!~")!=0){ var intS = strCook.indexOf("!~"); var intE = strCook.indexOf("~!"); var strPos = strCook.substring(intS+2,intE); document.getElementById("menu_holder_inside").scrollTop = strPos; } } function SetDivPosition(){ var intY = document.getElementById("menu_holder_inside").scrollTop; // document.title = intY; document.cookie = "yPos=!~" + intY + "~!"; }The follwing function shou;d return a DIV to its positon before -- Posted via NewsDemon.com - Premium Uncensored Newsgroup Service -------http://www.NewsDemon.com<<<<<<------ Unlimited Access, Anonymous Accounts, Uncensored Broadband Access read more about JAVAscript ie/ff problem
Message from Hamish Most recent post: 10/22/2005 2 authors and 2 replies. Is it possible to check for the existence of a 3rd party cookie. I.e. Check if a cookie has been set from Google, Lycos etc. read more about 3rd Party cookie
Message from Jeff D. Hamann Most recent post: 10/6/2005 2 authors and 6 replies. I have got to modify a JAVAscript script (if that's what I'm supposed to call them) to perform the following operation on a string: · Eliminate all vowels except for a leading vowel (i.e., first character is a vowel). RESERVIOR ---> RSRVR MEASUREMENT ---> MSRMNT · Reduce double-consonants to a single instance of the consonant. ADDRESS ---> ADRS· If the algorithm results in the formation of a double consonant, then reduce the double consonant to a single instance of the consonant. STATION ---> STTN ---> STN I have never written any JAVAscript code before (I'm modifying a small script so much of the basic work is done) and I need to perform a few search and replaces on a string (remove the vowels, and double consonants), rinse and repeat. Any hints? Jeff. --- Jeff D. Hamann Forest Informatics, Inc. PO Box 1421 Corvallis, Oregon USA 97339-1421 541-754-1428 jeff.hamann@xxxxxxxxxxx www.forestinformatics.com read more about supernewbie question (regex)
Message from sk Most recent post: 9/30/2005 2 authors and 2 replies. Is it possible to get the icon asscociated with specified file like Microsoft word document icon? Sk read more about "file associated icon"
Message from dries Most recent post: 9/24/2005 3 authors and 3 replies. HI All, I am looking for a way to put a line of text at the bottom of the screen, regardless of the currrent resolution used. Have searched the web but cannot find anythign on this, can somebody help me with it? Many thanks! Dries Bessels read more about How to put a line of text at the bottom of the screen
Message from Shinya Most recent post: 9/20/2005 2 authors and 2 replies. Have you seen the sample to send form variable from one page to another html page with JAVAscript? Shin read more about send variable to another html page?
Message from Mark Most recent post: 8/24/2005 6 authors and 7 replies. Hi all I want to recreate the search box that is at the top right of most eBay pages. The aspect that I am specifically talking about, is the "START NEW SEARCH" test that is in the box by default, that disappears immediately you click in the text box. I've looked at the source code for the page but nothing is jumping out at me... Any ideas? TIA Mark read more about Creating an eBay style search form...
Message from John Dunne Most recent post: 8/2/2005 2 authors and 2 replies. hey... 19 year old graphic designer here, totally unfamiliar with programming content. working hard on an online portfolio at the moment but experiencing some difficulties. I think JAVAscript could rescue me. problem: -set a gif file as a background image in a html document -it fills the whole of my internet browser window on my 17" monitor yet, when viewed on a smaller monitor, users have to use the ugly horizontal scrollbar to view the whole document. -surely there is a way of configuring a background image so that, irrespective of the user's monitor size, it just fills the window..... please help, advice/recommendations really appreciated, thanks very much, john. read more about Q U E R Y
Message from Most recent post: 8/2/2005 2 authors and 2 replies. Hi all' can any of you bright sparkes help me out ? I have been trying to detect the screen resolution and set a JAVA script variable accordingly to display absolute position mouseover buttons to scroll a html page rather than the windows vertical scrollbar (which I cant change the shape of) the only thing stopping me is dispaying them at the right height when displayed in 800x600 and 1024x768 The code below tries to do this but for some reason the voffset always seems to be 230 no matter how I phrase it Please help it's driving me mad Ricky Doosh=(screen.height) // setup variable {alert(sh)} // prompt screen height if (sh=600) {Voffset=230} //distance of static arrows from bottom else if (sh=768) {Voffset=440} //distance of static arrows from bottom read more about newbie question
Message from Jon Delano Most recent post: 6/30/2005 2 authors and 3 replies. Hello I've a requirement where I need to popup a window and ask the user if they want to execute a function. If they do they need to re-enter their password and click Yes, else they click No. Also, this popup must be dealt with. Meaning they can not continue unless they answer the question. So I used onBlur on the body to keep the popup window on top. Problem is... this does not allow the user to type in the textbox to enter their password. Obviously counter productive :-) I am using VS 2003 with vb.net as the language. Is there maybe a way for the main screen to put focus back on the popup ..if it gets focus and the popup is active ? This way the onBlur is not used on the popup ? I've tried to use the me.attributes.add("onfocus","") to the server side code when I put in the client side JAVAscript to show the pop up .. but it does not seem like you can get to the body of the page that way. Any assistance'd be appreciated. Thanks Jon read more about onBlur on a popup situation
Message from Adam Most recent post: 6/8/2005 2 authors and 2 replies. Greetings, I trying to but buttons for the users to write special characters to a text area in a form by clicking in a button.<form name="form1" onSubmit="return (function1() && function2() && function3();"> <textarea name=t1> </textarea> <input type=submit value="ƒ"> <input type=submit value="¼"> <input type=submit value="÷"> <input type=submit value="µ"></form> <script language="JAVAScript"><!-- function functionName1() { window.document.form1.t1.value = 'ƒ'; return false; } function functionName2() { window.document.form1.t1.value = '¼'; return false; } function functionName3() { window.document.form1.t1.value = '÷'; return false; } function functionName4() { window.document.form1.t1.value = 'µ'; return false; } //--></script> Clicking on any button does not do anything but if I put just one button it works, can anyone suggest what did I do wrong? Thank you for your help. read more about Wiritng To Text Area,
Message from Noozer Most recent post: 6/5/2005 3 authors and 3 replies. The following JAVAscript code generates an "Access denied" error at the indicated line. This sample should allow the user to click "Browse" and choose a file. Once the user has selected a file the form is automatically submitted. I'm trying to avoid having seperate browse and submit actions. Can someone explain why I'm getting the error and how I can accomplish this task? Thx! <html> <head></head> <body> <form name="form1" id="form1" method="post" action="test.htm"> <input type="button" value="Browse" onclick="return vlu();"> </form> <form name="form2" id="form2" method="post" action="test.htm" style="display:none;"> <input type="file" name="file1" id="file1"> </form> <script language="JAVAscript"> <!-- function vlu() { form2.file1.click(); if (form2.file1.value != "") { form2.submit(); //*** ERROR HERE } } //--> </script> </body> </html> read more about "Access Denied" submitting form with JAVAscript?
Message from Jaap Zuidersma Most recent post: 6/5/2005 2 authors and 2 replies. Does anyone know the following: I am considering to put a JAVAscript in my pages that will prohibit someone from copying my content with ctrl c or a right mouse klik. What if the browser doesn't support JAVAscript. Wil u user in this case still be able to copy content? Jaap Zuidersma read more about no right click
Message from lanesra Most recent post: 5/15/2005 2 authors and 2 replies. Hi I am new to JAVAScript and I am trying the resolve the following problem, can anyone help: ======================================================================================================================================= <html> <head> <title> Die Simulator</title> <script language="JAVAScript" type="text/JAVAscript"> // // THIS FUNCTION SIMULATES THE ROLL OF A SINGLE 6-SIDED DIE - YOU SHOULD NOT ALTER THIS FUNCTION // function rollDie () { var result = 0; result = Math.floor((Math.random() * 6) + 1); return result; } // // THIS FUNCTION PRODUCES THE RESULT WHEN THE ON-SCREEN BUTTON IS PRESSED // function playGame () { document.open (); document.write (); document.close (); } </script> </head> <!-- YOU DOn't NEED TO CHANGE ANY OF THE HTML BELOW THIS POINT --> <body> <form action="" method="get" name="dieForm"> <input name="rollButton" type="button" value="Roll the Die" onClick = "playGame();"> </form> </body> </html> ========================================================================================================================================= read more about Help With JAVAScript
Message from Lucky Most recent post: 5/9/2005 3 authors and 3 replies. Hi In oracle, if I need to get the sysdate, I'd do some thing like this select sysdate from dual; And if I need , the difference between sysdate and a specific date ,say "pdate" ,I'd do, select sysdate - pdate from dual This'd give me the difference in days ,so for ex select sysdate -to_date('01-JAN-2005') from dual would give me 125 as the number of days. --- Now what I want to know is that in JAVA how do I this. I tried to play around with the Date and Calendar objects. These objects are giving me individual feilds like day,month and year etc, but not date as a whole. So my question is 1. How do I get the date in JAVA in a specific format (in any format I choose). What is the best object for this. 2. How do I get the difference in 2 dates, which should give me in number of days. Your quick responses are appreciated. Thanks, PS. By the way how do we do the same in JAVAScript. read more about Getting Date Difference in JAVA.
Message from Bill Cunningham Most recent post: 4/24/2005 2 authors and 2 replies. Hi, I'm new to JAVAscript and just by looking at the code in pages it looks to me to be a cross between C, C++ and maybe pascal. If it is Pascal that declares variable as var. Objects like document.write() looks like C. Am I right at first glance? Bill read more about new to JS
Message from Jean Pierre Daviau Most recent post: 4/19/2005 2 authors and 3 replies. for (var i=0; i< document.images.lenght; i++){ totalWidth = totalWidth + document.images[i].width; totalHeight = totalHeight + document.images[i].height; } -- X trême newbe ...... masm32 windows Xp asus p4 s533/333/133 Intel(R) Celeron (R) CPU 2.00 GHz read more about document.images
Message from MENAREUS Most recent post: 4/15/2005 2 authors and 2 replies. Would someone please provide a few Web Addresses where I might study JAVA online. That's how I learned HTML and am ready to take it to the next level. MENAREUS@xxxxxxxxxxx Thanks Arthur read more about ONLINE JAVA TUTORIAL
Message from Jonathan Most recent post: 3/28/2005 2 authors and 7 replies. I need several things in HTML or JAVAscript. It canNOT be a server side script, it is for a standalone project in HTML ONLY! PAGE 1 is a simple blank page where there will be an on.click so that if the screen is clicked it goes to PAGE 2. There will be a delay of 3 seconds while it says PLEASE WAIT. PAGE 2 has a one line form (the form has a validation scheme and the OK button will only be able to be pressed once a certain amount of digits - 11 for a phone number are inserted, only then will it work) with OK button that goes to the next page. I need capabilities of invisible (that means that the OK button will be invisible). The password is a phone number which needs to show up as stars (*). A delay of 3 seconds will route it to PAGE 3. The data entered in here has to add to any existing data on a separate line in a plain text file, located in the same directory. PAGE 3 is done. I am willing to do all the work, so need help and scripts to start off with. Should not take more than 20 minutes. read more about JAVAscript/HTML problem
Message from "(ProteanThread)" Most recent post: 3/24/2005 6 authors and 7 replies. not an SDK but just a plain IDE (no i have already tried notepad) -- Woodzy http://www.rtdos.com (alt OS for games based on the classics) http://o.webring.com/hub?ring=awrbr ( AbandonWarez ring ) read more about [REQ] - Looking for *FREEWARE* GUI IDE for JAVA / JAVAscript (ormsvm)
Message from Alex Molochnikov Most recent post: 2/11/2005 5 authors and 13 replies. Is there any way to find out programmatically if JAVAscript is supported/enabled in a browser? By "programmatically" I mean on the JAVA servlet side. TIA Alex Molochnikov Gestalt Corporation read more about Find out if JAVAscript is enabled
Message from FSD Most recent post: 2/10/2005 2 authors and 2 replies. Hello; I've a set of images (png) that I display as a series via JAVAscript. I'd like the user to choose what color palette they want the images displayed in. Is this easy to do? Any suggestions? Thanks Frank read more about Having user determine which color palette to use to display images
Message from Paul Most recent post: 2/1/2005 2 authors and 2 replies. Ik zoek een stuk JAVAscript dat een geladen URL in een ander frame opvraagt. Ik heb zelf niets kunnen vinden. Volgens mij moet het hier op lijken parent.framename.location Wie kan mij helpen Groet, Paul Kanters read more about Opvragen URL in een ander frame
Message from Mel Most recent post: 12/23/2004 2 authors and 2 replies. is it possible to "hide" status area when a visitor comes to my site ? thanks for your help read more about is this possible ?
Message from Mel Most recent post: 12/17/2004 2 authors and 2 replies. i've a text field and a button next to it. when I click on the button, it pops up a list of users as form user then selects a bunch of these (check boxes) and upon close I would like to place them inside the text field separated by ";" can someone help ? read more about form question...
Message from Dave Shephard Most recent post: 11/29/2004 2 authors and 2 replies. I do not know whether this is the right forum - if not perhaps someone can advise which one? My site www.troononline.net has 2 JAVAscripts on the front page showing random images - one script shows photgraphs of the town in the middle section of the page and the other shows a collection of 15 small adverts in the right hand margin. On my computer everything shows up fine but ob a colleague's computer he does not see the 15 adverts in the right hand margin at all. I suspect it is a browser setting that he needs to change but we can not work out which one - can anyone help please? Thanks read more about Problem seeing script
Message from System User Most recent post: 11/15/2004 2 authors and 2 replies. Hello, I've searched to no avail on this question. Does anyone know how to view the grapical (menu) output of a JAVA class file? I am not interested in the code behind the scene, but rather the executed/parsed output. I've some JAVA class files that create various menus and I need to take screen captures of those menus. Please excuse any apparent ignorance with JAVA. Any assistance will be very much appreciated. Thanks, Jim read more about How to "VIEW" JAVA Class files?
Message from Oxnard Most recent post: 10/20/2004 2 authors and 2 replies. if I've some text inside a tag like: <div id="test" > stuff I want changed </div> how can I change it to something else: <div id="test" > my new text </div> using a JAVAscript fuction which I call elsewhere in the page? read more about How to change what is inside a tag
Message from Mel Most recent post: 10/18/2004 3 authors and 3 replies. I've a table with 2 rows and want to display http://www.yahoo.com in the top row and say http://www.google.com !!! question: Is this possible using html only (NO IFRAMES or FRAMES) ? thanks for help read more about 2 URLs in one [code][/code] ? is it possible ? [Advanced JAVA/Gurus] JNI/Win32 hWnd JDK 1.4.2_05 freeze on JAVAscript Callback Message from Andrei_Chiriaev Most recent post: 10/16/2004 2 authors and 3 replies. Dear Colleagues, An advanced JAVA (i.e.: SUN JAVA Plugin 1.4.2_05) issue'd require your expertise. Inside a "JRE/1.4.2_05" environment (i.e.: version prior to that latest installment are performing with an adequate satisfaction) the execution of an "Applet", acquiring native methods through a "JNI/Win32" interface and returning data using the "jaws.jar", (i.e.: JSObject callback to "JAVAscript") hangs on the "callback" invocation. (i.e.: it is happening in a "single threaded" environment) Please note that the invoked "JAVA" routine isn't returning (i.e.: the "JAVAScript/Jdirect" call happens just before), as well as the "JAVAScript" callback isn't being entered. As remarkable as it could be, to unblock the "JAVA" runtime main thread, one'd right click on the "Internet Explorer" window (i.e.: right in the task bar). Consequently the execution of the process continues. I've explored numerous options including "Thread" notifications, garbage collections and method finalizations without success. Finally, the option of duplication the "hWnd" based "Win32" messaging flow stood as my ultimate option. I've finally managed to retrieve the top level "hWnd" handle from my "JDK1.4.2_05/Win32" environment, not to say easily…; and declared method such as "SendMessage", "SetFocus", "SetEnabled" (i.e.: and so on) to replicate the behavior of my "right click". Through the "Spy++" delivered messaged I, unfortunately, had no chance to discover the message (i.e. read more about [Advanced JAVA/Gurus] JNI/Win32 hWnd JDK 1.4.2_05 freeze on JAVAscript Callback problem replacing spaces in a string Message from Philo Hippo Most recent post: 10/11/2004 2 authors and 3 replies. Hi, I need to be able to remove spaces from the beginning or the end of a string. This is my very 1st attempt at doing that in JS and here is what I got: function SearchForDomains(winName, SearchWhat) { var re = /\s*(\w*)\s*/; SearchWhat=SearchWhat.replace(re, "$1"); ... that gets rid of the spaces at the front of the string, but not at the end of it. Can you help me please?-- Hope that helps, Phil http://uk.geocities.com/philippeoget philippeoget at yahoo dot com Programming Excel: <a href="http://uk.geocities.com/philippeoget/xl/InternetLinkOrganiser.zip" target="_blank">The Excel A2Z Project: </a> http://uk.geocities.com/philippeoget/a2z/ read more about problem replacing spaces in a string always visible script Message from Danny Gopie Most recent post: 10/7/2004 2 authors and 2 replies. Hello, I've a flash menu. But how do I modify this, that the menu will always stay visible? Danny read more about always visible script JAVAscript help Message from John Hayes Most recent post: 9/27/2004 2 authors and 2 replies. Hi, I am a complete newbie when it comes to JAVAscript and I need some help. Our web site creates a text file which I'd like the system to ask the user what to do with, either open, save or cancel. Currently we use the code below but that only puts it in the browser window and for the text files that is fine but some of the files are csv and that won't work. If I can not it to ask me what to do with it, can I force it to open in a new window? Any and all help, ideas greatly appreciated. John <html> <head> <link href="/design1.css" type="text/css" rel="stylesheet"> </head> <body> <% String FileName=""; if (request.getParameter("FileName")!=null) { FileName=request.getParameter("FileName").toString(); } String ReportName="Report Viewer"; if (request.getParameter("ReportName")!=null) { ReportName=request.getParameter("ReportName").toString(); } %> <% if (FileName.length()==0) { %> <h3>Report Viewer - No report Passed!</h3> <% } else { //Got a file name if (ReportName.length()==0) { out.println("<h3>Report Viewer</h3>"); } else { read more about JAVAscript help Yoghurt Cartons Message from Gnasher Most recent post: 9/25/2004 2 authors and 2 replies. Since you cannot recycle them, what do you do with your used yoghurt cartons? read more about Yoghurt Cartons web page drop down list Message from daniel kaplan Most recent post: 9/21/2004 5 authors and 5 replies. hope I hit the write group: in a web page when you use <select><option>xx</option></select> to make a drop down box, more than 11 items causes a scroll bar...can this limit be exceded via the registry or some other way? thanks ahead! read more about web page drop down list Moving client fiile to server Message from Don Most recent post: 9/12/2004 2 authors and 3 replies. I'm trying to setup JAVAscript running in a browser window that, via <input type="file"...>, will pickup a client file and then transfer it to my space on the internet host I use. How do I go about doing this? Thanks, Don-----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World! -----== Over 100,000 Newsgroups - 19 Different Servers! =----- read more about Moving client fiile to server 7/24/2008 10:49:46 PM Programming | Sports | Autos copyright 2006
Message from Andrei_Chiriaev Most recent post: 10/16/2004 2 authors and 3 replies. Dear Colleagues, An advanced JAVA (i.e.: SUN JAVA Plugin 1.4.2_05) issue'd require your expertise. Inside a "JRE/1.4.2_05" environment (i.e.: version prior to that latest installment are performing with an adequate satisfaction) the execution of an "Applet", acquiring native methods through a "JNI/Win32" interface and returning data using the "jaws.jar", (i.e.: JSObject callback to "JAVAscript") hangs on the "callback" invocation. (i.e.: it is happening in a "single threaded" environment) Please note that the invoked "JAVA" routine isn't returning (i.e.: the "JAVAScript/Jdirect" call happens just before), as well as the "JAVAScript" callback isn't being entered. As remarkable as it could be, to unblock the "JAVA" runtime main thread, one'd right click on the "Internet Explorer" window (i.e.: right in the task bar). Consequently the execution of the process continues. I've explored numerous options including "Thread" notifications, garbage collections and method finalizations without success. Finally, the option of duplication the "hWnd" based "Win32" messaging flow stood as my ultimate option. I've finally managed to retrieve the top level "hWnd" handle from my "JDK1.4.2_05/Win32" environment, not to say easily…; and declared method such as "SendMessage", "SetFocus", "SetEnabled" (i.e.: and so on) to replicate the behavior of my "right click". Through the "Spy++" delivered messaged I, unfortunately, had no chance to discover the message (i.e. read more about [Advanced JAVA/Gurus] JNI/Win32 hWnd JDK 1.4.2_05 freeze on JAVAscript Callback
Message from Philo Hippo Most recent post: 10/11/2004 2 authors and 3 replies. Hi, I need to be able to remove spaces from the beginning or the end of a string. This is my very 1st attempt at doing that in JS and here is what I got: function SearchForDomains(winName, SearchWhat) { var re = /\s*(\w*)\s*/; SearchWhat=SearchWhat.replace(re, "$1"); ... that gets rid of the spaces at the front of the string, but not at the end of it. Can you help me please?-- Hope that helps, Phil http://uk.geocities.com/philippeoget philippeoget at yahoo dot com Programming Excel: <a href="http://uk.geocities.com/philippeoget/xl/InternetLinkOrganiser.zip" target="_blank">The Excel A2Z Project: </a> http://uk.geocities.com/philippeoget/a2z/ read more about problem replacing spaces in a string
Message from Danny Gopie Most recent post: 10/7/2004 2 authors and 2 replies. Hello, I've a flash menu. But how do I modify this, that the menu will always stay visible? Danny read more about always visible script
Message from John Hayes Most recent post: 9/27/2004 2 authors and 2 replies. Hi, I am a complete newbie when it comes to JAVAscript and I need some help. Our web site creates a text file which I'd like the system to ask the user what to do with, either open, save or cancel. Currently we use the code below but that only puts it in the browser window and for the text files that is fine but some of the files are csv and that won't work. If I can not it to ask me what to do with it, can I force it to open in a new window? Any and all help, ideas greatly appreciated. John <html> <head> <link href="/design1.css" type="text/css" rel="stylesheet"> </head> <body> <% String FileName=""; if (request.getParameter("FileName")!=null) { FileName=request.getParameter("FileName").toString(); } String ReportName="Report Viewer"; if (request.getParameter("ReportName")!=null) { ReportName=request.getParameter("ReportName").toString(); } %> <% if (FileName.length()==0) { %> <h3>Report Viewer - No report Passed!</h3> <% } else { //Got a file name if (ReportName.length()==0) { out.println("<h3>Report Viewer</h3>"); } else { read more about JAVAscript help
Message from Gnasher Most recent post: 9/25/2004 2 authors and 2 replies. Since you cannot recycle them, what do you do with your used yoghurt cartons? read more about Yoghurt Cartons
Message from daniel kaplan Most recent post: 9/21/2004 5 authors and 5 replies. hope I hit the write group: in a web page when you use <select><option>xx</option></select> to make a drop down box, more than 11 items causes a scroll bar...can this limit be exceded via the registry or some other way? thanks ahead! read more about web page drop down list
Message from Don Most recent post: 9/12/2004 2 authors and 3 replies. I'm trying to setup JAVAscript running in a browser window that, via <input type="file"...>, will pickup a client file and then transfer it to my space on the internet host I use. How do I go about doing this? Thanks, Don-----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World! -----== Over 100,000 Newsgroups - 19 Different Servers! =----- read more about Moving client fiile to server