JavaFX progress bar with glow effect.

I am hoping someone can help me with this issue. I recently followed James Clarke example of a progress bar with glow effect and it helped with developing a progress bar for an application I was working on. But now, with the JavaFX sdk 1.2 update, the application does not fully work anymore. The progressbar.fx code is posted below:
ProgressBar.fx code:
import java.lang.Math;
import java.lang.Object;
import javafx.animation.Interpolator;
import javafx.animation.Timeline;
import javafx.scene.CustomNode;
import javafx.scene.effect.GaussianBlur;
import javafx.scene.Group;
import javafx.scene.Node;
import javafx.scene.paint.Color;
import javafx.scene.paint.Paint;
import javafx.scene.Scene;
import javafx.scene.shape.Ellipse;
import javafx.scene.shape.Rectangle;
import javafx.scene.text.Font;
import javafx.scene.text.Text;
import javafx.scene.text.TextOrigin;
import javafx.stage.Stage;
import javafx.scene.layout.Resizable;
public class ProgressBar extends CustomNode, Resizable{
public var min: Number;
public var max: Number = 100.0;
public var value: Number;
public var background: Paint = Color.rgb(118,149,178);
public var foreground: Paint = Color.rgb(216,219,225);
public var font = bind Font{name: "Courier Bold Italic" size: height - borderWidth * 8};
public var arcWidth: Number = 20;
public var arcHeight: Number = 50;
public var borderStroke: Color = Color.BLACK;
public var borderWidth: Number = 1;
public var fontPaint: Paint = Color.LIGHTGRAY;
public var showPercentage = true;
var progressText: Text;
var backgroundText: Text;
var progessBar: Rectangle;
var range = bind Math.abs(max - min);
var percentComplete: Number = bind if(max != 0) { (
value - min) / max
} // if
else {0.0;} // else;
var currentX = bind percentComplete * width;
var blurX: Number = 30;
var progressString: String = bind "%%{%.0f (percentComplete*100)}";
var progressValue = bind "{%.2f value}";
var progressHeight = bind height - borderWidth * 4;
var blurAnim = Timeline {
repeatCount: Timeline.INDEFINITE
autoReverse: true
keyFrames: [
at(0s) { blurX => 0.0 }
at(2s) { blurX =>
currentX - progressHeight / 2 tween Interpolator.EASEBOTH }
var playing = bind visible on replace{
if(playing) {
blurAnim.play();
}else {
blurAnim.stop();
public override function create(): Node {
return Group {
content: [
Rectangle { //background
width: bind width
height: bind height
fill: bind background
stroke: bind borderStroke
strokeWidth: bind borderWidth
arcWidth: bind arcWidth
arcHeight: bind arcHeight
cache: true
backgroundText = Text { // Text over Background
layoutX: bind (width - backgroundText.layoutBounds.width) / 2
layoutY: bind (height - backgroundText.layoutBounds.height) / 2
textOrigin: TextOrigin.TOP
font: bind font
fill: bind foreground
content: bind if(showPercentage) progressString else progressValue
cache: true
Group {
content: [
progessBar = Rectangle { // Progress
layoutX: bind borderWidth
layoutY: bind borderWidth * 2
width: bind currentX
height: bind progressHeight
fill: bind foreground
arcWidth: bind arcWidth
arcHeight: bind arcHeight
Ellipse {
centerX: bind blurX
centerY: bind height / 2
radiusX: bind progressHeight
radiusY: bind progressHeight / 2
fill: Color.rgb(255,255,255,.7)
effect: GaussianBlur{ radius: 30
Text { // Text Over Progress Bar, this has to be in progressBar coordinate space
x: bind (width - backgroundText.layoutBounds.width) / 2
y: bind (height - backgroundText.layoutBounds.height) / 2
textOrigin: TextOrigin.TOP
font: bind font
fill: bind background
content: bind if(showPercentage) progressString else progressValue
clip: bind progessBar
}, // Text
] // 2nd content
} // 2nd Group
] // 1st content
}; // 1st Group
} // public override function create(): Node
} // public abstract class ProgressBar extends CustomNode, Resizeable
function run(args:String[]):Void {
var stage: Stage = Stage {
     title: "Progress Bar"
scene: Scene {
width: 925
height: 60
content: ProgressBar {
     layoutX: 10
layoutY: 10
width: 890
height: 35
value: 80
} // content: ProgressBar
} // scene: Scene
} // var stage: Stage = Stage
} // function run(args:String[]):Void
I use RESTful ws to get the progress of the billing run, which is the loadProgressdata() method in the main.fx, and everything was working fine until we did the javafx sdk 1.2 update. With the update in place, I recompiled the project and found that "Resizable" in
the "public class ProgressBar extends CustomNode, Resizable" was throwing an error when the project was recompiled. I made some changes(mainly adding variables for height and width) but now when the program runs, the backing rectangle appears along with the
percentage of billing progress, but the progress part(2nd rectangle) does not appear with the glow effect. I have read about using "getPrefWidth()" and "getPrefHeight()" methods, but not really sure how I would use them. I can't make the public class ProgressBar extends CustomNode, Resizable abstract as I need to instantiate in the Main.fx.
Can anyone shed some light on what might need to be done to get this running correctly again. I don't need anyone the give me the exact code, but just to point me in the correct direction.

Can you post your code again between "{ code} ... {code }" tags ? Some symbols are missing if copy/pasted.
That said, your preferred width and height, simply return the width and height of your component. What I discovered recently is using LayoutInfo on controls to set the preferred width and height. These are the dimensions the surrounding container (VBox, HBox, Flow, ....) will use to arrange size and position of the enclosed components. So maybe you won't need Resizable any more. Simply fill in the layoutInfo property.
Edited by: Java.Artisan on Jun 26, 2009 11:25 AM
Edited by: Java.Artisan on Jun 26, 2009 11:26 AM

Similar Messages

  • My iPhone 4s is not switching on, I connected it to itunes thru my Windows 7 laptop and it says phone needs to be restored. I clicked okay and it started the process however the progress bar with the apple logo is on the screen, progressbar do not start

    My iPhone 4s is not switching on, I connected it to itunes thru my Windows 7 laptop and it says phone needs to be restored. I clicked okay and it started the process however the progress bar with the apple logo is on the screen, progress in the bar did not start yet after 5 hours. Some one please hep me.

    I did put it in DFU mode but its still not working, although everytime it shows your iphone needs to be restored. Kindly help.

  • How to use a progress bar with java mail?

    Hi, i'm new here.
    I want if someone can recommend me how to show a progress bar with java mail.
    Because, i send a message but the screen freeze, and the progress bar never appear, after the send progress finish.
    Thanks

    So why would the code we post be any different than the code in the tutorial? Why do you think our code would be easier to understand? The tutorial contains explanations about the code.
    Did you download the code and execute it? Did it work? Then customize the code to suit your situation. We can't give you the code because we don't know exactly what you are attempting to do. We don't know how you have changed to demo code so that it no longer works. Its up to you to compare your code with the demo code to see what the difference is.

  • Progress bar with Cancel button

    Hi Gurus,
    How to implement the Progressing bar with Cancel btn using the ScriptUI?, is it possible in script UI ?
    Thanks in advance.
    Regards,
    Imagine

    what i said is that you need to hava a reference to your thread ine the class that handle the progressBar.
    and in your Thread class you create a method like setCanceled(boolean b)...
    public MyThread extends Thread{
       private boolean canceled = false;
       public void setCanceled(boolean b){
          canceled = b;
       public void run(){
          while(!canceled){
            //do your stuff

  • Horizontal progress bar with interpolat​e color

    Looking for a control "horizontal progress bar" with interpolate color and markers like control "meter"

    If I get this right - you are looking for a progress bar that changes colour as the number changes. You can set the colour of the progress bar using property nodes. I have included a VI here that I used for testing this. This VI changes the colour from green to red as the progress bar advances. Colours are stored as 3 bytes: Red, Green and Blue.
    I hope that this helps.
    Rob
    Attachments:
    Changing_Progress_Bar.vi ‏27 KB

  • TS3694 hi i recently updated into ios 7.0.4 now i want to fully restore my ipad to resell but when i restore it it got stuck with apple logo and progress bar with 45% completed as firware file is downloaded using ipad 4 wifi itunes 11.3.8

    hi i rescently updated my ipad 4 in ios 7.0.4 and for resell purpose i want to restore my ipad via itunes but it got stuck at apple logo and progress bar of 45% completed i tried it 50 times but it stuck on that exact point for hours i cant able to restore it and had no errors it just like freezes at one point i also uses dfu mode but got stuck at same problem using windows 7 32 bits itunes 11.3.8 ipad 4 wifi please help

    My iPhone 5 wouldn't start after I turned it off a few minutes after writing this. It went into recovery mode and I had no choice but to connect to iTunes on PC and restore.
    I restored to factory setting first, just to validate my phone was okay. For a second consecutive iOS update, the  iPhone 5 did not update smoothly while connected to PC and iTunes - I had to retry two times before the progress bar for the update showed. (The exact same problem with the restart occured when I updated to 7.0.4.)
    The good news is that I was ultimately able to restore the iPhone 5 to factory settings while running iOS 7.0.6. I did have a backup from about a month ago lying around and was able to successfully restore with that as well, so the damage done is almost negligible since I had my contacts, notes, mail, etc. backed up to iCloud.
    Once I completed both restores, the sync with iTunes worked fine.

  • Black screen/progress bar with Yosemite startup

    Since installing Yosemite on my relatively new imac, when I boot up i get a black screen with the Apple logo and a progress bar, which takes about 90 seconds to load. I've tried disc first aid, verify/repair permissions etc , done a new install from my backup disc but it still persists. is this now the way of the yosemite world?
    Thanks
    Bruce

    Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
    Safe Mode - About
    Safe Mode - Yosemite

  • [SOLVED] No icon or progress bar with notify-osd-customizable

    Hello,
    I just reinstalled my system; I use a script to know my brightness and audio volume but I can't get it working anymore.
    With this
    notify-send 'Hello world!' -i dialog-information
    I only get the text. If I try this to have a progress bar
    notify-send 'Hello world!' -i dialog-information -h int:value:50
    I just get a notification with 1px height.
    I installed notify-osd-icons to have more icons, but it didn't help.
    The arguements have changed?
    Last edited by Dreamkey (2013-02-13 13:02:29)

    Ok, I'm not sure if it's because of that, but I installed human-icon-theme and after a reboot, it worked.

  • Scale progress bar with Event.RESIZE

    Hi all,
    I am trying to create a preloader bar that goes across the whole stage. The code below works fine, except that I would also like to be able to resize the stage and have the preloader bar recognize this and change it's scaleX to accomodate the larger or smaller browser size. Does this make sense? I'm having trouble with the equation to adjust the preloader bar scaleX within the "onResizeStageLoad" function.
    function PL_LOADING(event:ProgressEvent):void {
    var pcent:Number=event.bytesLoaded/event.bytesTotal*100;
    //Stretch the bar
    lbar.scaleX=pcent/100;
    if(pcent >=100){
    this.gotoAndStop(2);
    stage.removeEventListener(Event.RESIZE, onResizeStageLoad);
    stage.addEventListener(Event.RESIZE, onResizeStageLoad);
    function onResizeStageLoad(evt:Event):void{
    What goes in here?
    Thanks!

    Just to close this out. You need to submit the form from within the onComplete javascript. The prior version of the progress bar 'automatically' called submitFomr() when the progress bar was 100%. That is no longer true. You must explicitly call the submitForm() javascript in onComplete. Don't know if this is a bug in the new version or not? I recommend that the submitForm() be made the default function for onComplete is none is specified in the component properties.

  • Progress bar with install screen.

    Hi all,
    On my app I need a progress bar when I the app install some RMS records. Because of the app has near a milliom of records, this install is so longer, and I t's better show the progress of it with an bar :).
    How it's possible do it?
    Kind regards.

    In such case i recomend writing your own LoadingCanvas or something like that (You draw a kind of rectangle which size is connected to current progress). Animating this canvas while conducting another task is a different issue. In my soft I needed to view a progress bar while downloading images and so on from net. I achived it by running one separete thread for the connection and lunching a timerTask for the canvas redraw events. In my case it worked fine almost on every device but ned Nokia E series phones had some problems in memory management of 2 paralel task so i had to remove this form my app becouse it caused instability of application.
    Regards
    mchmiel

  • Progress bar with background task

    Hi, I am using background agent to upload files. Its taking about 30 min to upload a single image or audio file. Is there any method to reduce the time to launch the background agent in production. I'm using the following line for debug process and its
    working fine and the files are getting uploaded as soon as possible. But when the application is in windows phone store im not able to use this line of code. Please help if there is any solution to reduce the time for background agent launch. Also is there
    any UI changes I can make while the background process is running, so that the user can identify that the file is uploading. Can I use progress bar indicator or anything when the background file is uploading. Thanks.
    ScheduledActionService.LaunchForTest("My periodic task", TimeSpan.FromSeconds(3));
    Nikitha

    Assuming this is a Windows Phone 8.1 XAML Application:
    https://msdn.microsoft.com/en-us/library/windows/apps/xaml/Hh452975(v=win.10).aspx
    The following sample illustrates how to do all of this with progress etc...
    https://code.msdn.microsoft.com/windowsapps/Background-Transfer-Sample-d7833f61
    Bret Bentzinger (MSFT) @awehellyeah

  • Is there a way to use a progress bar with Xerces XML Parser?

    My program is parsing very long XML files that take several minutes to parse. I am using Xerces as the parser. I would like to use a progress bar to show the progress, but I haven't found any way to get Xerces to give progress updates. Is this possible?

    Use teh SAX parser and listen to SAX events. Example:
    import java.io.*;
    import java.util.*;
    //jaxp-api.jar:
    import javax.xml.parsers.SAXParser;
    import javax.xml.parsers.SAXParserFactory;
    //sax.jar:
    import org.xml.sax.Attributes;
    import org.xml.sax.InputSource;
    import org.xml.sax.XMLReader;
    import org.xml.sax.helpers.DefaultHandler;
    import mine.IOUtils;
    * Handler to read content from (large) XML sources and send events to registered XMLListeners. Use this class to read
    * big (multiple megabytes) XML files via SAX and listen to XML events to process XML elements.
    * For small (less than a megabyte) XML files, it's more convenient to use the DOM API
    * to read the XML into a DOM document and perform XPath commands. DOM is easier to handle but has
    * the drawback that the complete XML content is stored in one big DOM document object in memory.
    public final class XMLHandler extends DefaultHandler {
        /** (Reusable) XMLReader to parse an XML document. */
        private XMLReader xmlReader = null;
        /** Registered XMLEventListeners. */
        private List<XMLListener> listeners = new ArrayList<XMLListener>();
        /** Value of current element. */
        private StringBuilder elementValue = null;
        /** Stack of current element and all of its parent elements. */
        private Stack<String> elementStack = new Stack<String>();
         * Constructor.
         * @throws Exception
        public XMLHandler() throws Exception {
            super();
            // Create a JAXP SAXParserFactory and configure it
            final SAXParserFactory spf = SAXParserFactory.newInstance(); //Use the default (non-validating) parser
            spf.setValidating(true);
            // Create a JAXP SAXParser
            final SAXParser saxParser = spf.newSAXParser();
            // Get the encapsulated SAX XMLReader
            xmlReader = saxParser.getXMLReader();
            xmlReader.setContentHandler(this);
            xmlReader.setDTDHandler(this);
            xmlReader.setEntityResolver(this);
            xmlReader.setErrorHandler(this);
        }//XMLHandler()
          * Add XMLListener to receive XML events from the current XML document.
         *  If <i>listener</i> is null, no exception is thrown and no action is performed.
          * @param listener XMLListener to add.
         public void addXMLEventListener(final XMLListener listener) {
            if (listener != null) {
                listeners.add(listener);
        }//addXMLEventListener()
         * Parse current XML document. Registered XMLEventListeners will receive events during parsing.
         * @param fileName Name of file to read XML content from.
         * @throws Exception
        public void parse(final String fileName) throws Exception {
            if (fileName != null) {
                parse(IOUtils.openInputStream(fileName));
        }//readXML()
          * Parse current XML document. Registered XMLEventListeners will receive events during parsing.
         * @param inputStream InputStream to read XML content from.
          * @throws Exception
         public void parse(final InputStream inputStream) throws Exception {
            if (inputStream != null) {
                xmlReader.parse(new InputSource(inputStream));
        }//readXML()
         * Overwrite super.
         * Receive notification of the beginning of the document.
        @Override
        public void startDocument() {
            for (XMLListener l : listeners) {
                l.documentStarted();
        }//startDocument()
         * Overwrites super.
         * Receive notification of the start of an element.
        @Override
        public void startElement(final String uri, final String localName, final String qName, final Attributes atts) {
            elementStack.push(qName);
            for (XMLListener l : listeners) {
                l.elementStarted(qName, elementStack);
            elementValue = new StringBuilder(); //element value
            //element attributes:
            if (atts.getLength() > 0) {
                String attName = null;
                for (int i = 0; i < atts.getLength(); i++) {
                    attName = atts.getQName(i);
                    final String attValue = atts.getValue(i);
                    for (XMLListener l : listeners) {
                        l.attributeRead(qName, attName, attValue);
                }//next attribute
            }//else: no attributes
        }//startElement()
         * Overwrites super.
         * Receive notification of character data inside an element. This method can be called multiple times
         * from SAX, so we need to append all results of all calls to the final element value.
        @Override
        public void characters(final char ch[], final int start, final int length) {
            String s = new String(ch, start, length);
            elementValue.append(s);
        }//characters()
         * Overwrites super.
         * Receive notification of the end of an element.
        @Override
        public void endElement(final String uri, final String localName, final String qName) {
            for (XMLListener l : listeners) {
                l.elementEnded(qName, elementValue.toString());
            elementStack.pop();
        }//endElement()
         * Overwrite super.
         * Receive notification of the end of the document.
        @Override
        public void endDocument() {
            for (XMLListener l : listeners) {
                l.documentEnded();
        }//endDocument()
    }//XMLHandler

  • Progress bar with AJAX ?

    Hi all,
    I have a quite long application process running ... I would like to display a progress bar during the task, but the following doesn't work (it works well if I dont use AJAX) :
    function myFunction() {
    // The css "display" property of this element is set to "none" initially
    // IDProgressBarRegion contains the progress bar in gif format
    document.getElementById('IDProgressBarRegion').style.display = 'block';
    var ajaxRequest = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=myProcess',0);
    ajaxResult = ajaxRequest.get();
    if(ajaxResult) {
    // do something here
    document.getElementById('AjaxLoading').style.display = 'none';
    ajaxRequest = null;
    }

    Hello,
    Instead of the the standard .get() method which is synchronous and locks up the browser display, your going to want to use the asynchronous method of the htmldb_Get() object there is an example here,
    http://apex.oracle.com/pls/otn/f?p=11933:62
    For long running on demand process's this is what your going to want to use.
    Regards,
    Carl
    blog : http://carlback.blogspot.com/
    apex examples : http://apex.oracle.com/pls/otn/f?p=11933:5

  • Progress Bar with Javascript

    Hi,
    I have a page that is used as a search
    page that uses sql "like" queries.As
    you know it takes an awfull lot of time
    to search through 30,000 records using
    a "like" statement,so i'd figured I create a nice
    javascript progress bar to be displayed until
    the results come up.Does anyone know how
    to do this?
    So when the search button is clicked then the
    progress bar/REGION should be display and
    when the results come up, the progress bar should
    be hidden.
    Any good suggestions?

    The way I did it is
    I added this javascript to the page header:
    <script language="JavaScript" type="text/javascript">
    <!--
    /*- id can be element or nd or name returns element node */
    function html_GetElement(nd){
         switch(typeof (nd)){
         case 'string':node = document.getElementById(nd);break;
              case 'object':node = nd;break;
    default:node = null;break;
         return node;
    function html_CascadeUpTill(START,TAG){
    var node = html_GetElement(START);
         if(node){
         var node = node.parentNode;
    while(node.nodeName != TAG){
         node = node.parentNode;
         return node;
    /*- hides given node */
    function html_HideElement(nd){
         var node = html_GetElement(nd);
         node.style.display = "none";
    return node
    /*- show given node */
    function html_ShowElement(nd){
         var node = html_GetElement(nd);
         node.style.display = "";
    return node
    /*- toggle node visibility */
    function html_ToggleElement(nd){
         var node = html_GetElement(nd);
         if(node.style.display == "none"){html_ShowElement(node)}
         else{html_HideElement(node)}
         return node
    var g_LastRowOpened = false;
    var g_LastDetailLabel = false;
    var g_ShowOnlyOne = false;
    function showdetail(t,i){
         var l_TR = html_CascadeUpTill(t,'TR');
         var l_ThisTable = html_CascadeUpTill(t,'TABLE');
         /* comment out following if statement if you don't care about only showing one at a time */
         if(html_GetElement('P1_MULTI_0').checked==false && g_LastRowOpened && g_LastRowOpened != l_TR){
              ShowHideDetailRow(g_LastDetailLabel,l_ThisTable,g_LastRowOpened,i); //hides last row shown and resets label
         ShowHideDetailRow(t,l_ThisTable,l_TR,i);     
         g_LastDetailLabel = t; // set the last show/hide_detail clicked
         g_LastRowOpened = l_TR; // set the last row clicked     
    function ShowHideDetailRow(pThis,pTable,pTR,pID){
         var l_NumCells = pTR.cells.length;     
         if(pTR.rowIndex == pTable.rows.length-1 || pTable.rows[pTR.rowIndex+1].className != "detail"){
              var myNewRow = pTable.insertRow(pTR.rowIndex+1);
              myNewRow.className = "detail";
              var myNewCell = myNewRow.insertCell(0);
              myNewCell.className = "t4data";
              myNewCell.colSpan=l_NumCells;
              myNewCell.appendChild(html_GetElement(pID));
              html_ShowElement(pID);
         }else{
              html_ToggleElement(pTable.rows[pTR.rowIndex+1]);
         SetDetailLabel(pThis);
    function SetDetailLabel(pThis){
         if(pThis.innerHTML == 'show_detail'){
              pThis.innerHTML = 'hide_detail'
         }else{
              pThis.innerHTML = 'show_detail'
    //-->
    </script>
    then made my button a URL target and added:
    javascript:html_ShowElement('AjaxLoading');doSubmit('SEARCH');
    and finally added this to my HTML's region source:
    <style>     #AjaxLoading{padding:5px;font-size:18px;width:200px;text-align:center;left:50%;top:50%;position:absolute;border:2px solid #666;background-color:#FFF;}
    </style>
    <div id="AjaxLoading" style="display:none;">..Loading..
    <img src="#WORKSPACE_IMAGES#processing3.gif" /></div>
    I know its a bit amatuer but it seems to be working fine.
    The only problem that I've got is that it doesnt work when hitting <Return> to do the search rather than clicking on the search button.
    rather than

  • Coldfusion upload progress bar with title

    Anyone have idea about the AJAX script with uploading process bar and also the label of file title to database

    AFAIK, there is no built in ajax upload for CF8 (.. or CF9). There are however third party options. But there is not just one ..
    http://www.google.com/#hl=en&source=hp&q=coldfusionfileupload+ajax
    These are the top 2 results from google right now. The examples look pretty thorough.
    http://www.coldfusionjedi.com/index.cfm/2008/2/27/Can-you-do-file-uploads-with-ColdFusion- 8s-Ajax-features
    http://www.bennadel.com/blog/1244-ColdFusion-jQuery-And-AJAX-File-Upload-Demo.htm
    Message was edited by: -==cfSearching==-

Maybe you are looking for

  • Image in a JDesktopPane background

    Is it possible to paint an Image in a JDesktopPane background ?? how can I get it ?

  • Web pages do not display correctly

    Hi, I am currently having a big issue on my laptop...Any browser I try no matter what no web pages load correctly at all. Eg. Everything is blank and no text displays or anything. Example: Google.com loads but it displays the search but everything el

  • ROWNUM Problem - Urgent

    Hi, I have a wierd problem with using ROWNUM for pagination. I'm using the query structure as below: SELECT * FROM ( SELECT A.*, ROWNUM rowno FROM (MY_ACTUAL_QUERY) A WHERE ROWNUM <= 200 ) WHERE rowno > 0 In some cases of the MY_ACTUAL_QUERY, there e

  • Dbping errors with Oracle8.1.5 and Oracle thin driver

    I am trying to connect to Oracle 8.1.5.0.0 with Oracle thin driver 8.1.5. However I keep getting error ORA-24327. Any suggestions on how to fix this error?

  • Intermittent Internet, ichat and email ok

    This is driving me mad... Since upgrading 2 machines in the office to Snow Leopard, both have intermittent internet connection, although ichat and email work ok. Also, my macbook pro [new model] has the same issue when I bring into the office and use