Very strange behaviour of RGBImageFilter class

Hi!
I found very strange behaviour of RGBImageFilter class and problem is
that I need to solve that problem :/ So, situation is next:
I decided to use filtering process for collecting information about
image. So, I extended my own class from RGBImageFilter and overwrite
filterRGB( ... ) method ( everything is absolutely the same as in
documentation ) and also added my own code for 'no matter what'.
This code changes some class variable and my idea was to read those
variables after filtering process end, but... Suddenly I realized that
those variables, many times changed while filtering were performed
( I checked it ) after filtering gave the same value as in constructor!
The only one clue and idea about what happened is that class instance
were cloned and then executed, but thats not a functionality I was
searching. :/ I made some example of that 'effect'.
Image file name goes in command line.
Please pay attention on -3 value on exit: Filtering works, count growing
( just uncomment setPixels() method to see it ) but, but...
import java.awt.*;
import java.awt.image.*;
import javax.swing.*;
class ToForum
     public static void main( String[] args )
          try
               JFrame frame = new JFrame( "now i beleave in x-files!" );
               frame.setDefaultCloseOperation( frame.DISPOSE_ON_CLOSE );
               Toolkit kit = Toolkit.getDefaultToolkit();
               Image origin = kit.getImage( args[0] );
               RedBlueSwapFilter filter = new RedBlueSwapFilter();
               Image filtered = frame.createImage( new FilteredImageSource( origin.getSource(), filter ) );
               MediaTracker tracker = new MediaTracker( frame );
               tracker.addImage( filtered, 1 );
               tracker.waitForAll();
               System.out.println( "AND WE GOT: "+filter.getCount()+" !!!" );
               Container content = frame.getContentPane();
               content.setLayout( new FlowLayout() );
               JLabel label = new JLabel( new ImageIcon( filtered ) );
               content.add( label );
               frame.pack();
               frame.setVisible( true );
          catch( Exception ex )
               System.out.println( "Exception in main():\n"+ex );
class RedBlueSwapFilter extends RGBImageFilter
     private int count=-5;
     public RedBlueSwapFilter()
          count = -3;
          canFilterIndexColorModel = true;
     // uncommenting this function will show that filterRGB method IS calling !!!
     // so, why then AFTER filtering count is still ( or again ??? ) equals to 0 ?
     public void setPixels( int x, int y, int w, int h, ColorModel model, int pixels[], int off, int scansize )
          System.out.println( "on entering in setPixels count="+count );
          super.setPixels( x, y, w, h, model, pixels, off, scansize );
          System.out.println( "on exiting from setPixels count="+count );
     public int filterRGB( int x, int y, int rgb )
          count++;
          return ( (rgb&0xff00ff00) | ((rgb&0xff0000) >> 16) | ((rgb&0xff) << 16) );
     public int getCount()
          return count;

Cliff, Hi. I'm curious because this can't work. I have no problem synching with the exchange - as long as i accept the message that the certificate of the exchange (which is not the certificate of the exchange but the certificate of dig @reighthandsideofmailadress) is not valid (expired, wrong common name etc).

Similar Messages

  • Populate List from Database (Very Strange Behaviour)

    Dear Fellows,
    I have developed a from which has two lists One for Major (say) and Other for Minor (say), thesr minors are based on the value of Major.
    Now I have developed this system on Windows XP Professional, Developer/2000 6i and Oracle 8i (release 8.1.7).
    Major list is populated from database and it shows all major values now using 'when_list_change' trigger the minor list is populated from the database based on the value of major list. Interestingly enough it is working fine without any problem.
    Now I have deployed the software to Windows 2000 Professional/Server (tried on both), Developer/2000 6i and Oracle 8.0.5, but strangly the lists are not working now. First list (major) is still working but the other dependent lists are not working.
    Another strange thing is that it populate the second list for one particular value (only at times).
    The logic is that I have used a program unit to which i am passing 'list element' and 'query' and call it for each list in the when-list-change trigge.
    Now its a very strange behaviour, I don't know what to do?
    Your cooperation will be highly appreciated.
    regards.

    rolrollerx wrote:
    Hi,
    I have Nokia N8 (a great phone, btw) with Symbian Anna. I wanted to download the maps. But the PC Ovi Suite is just busy forever, without downloading anything (I used Performance Monitor to find out it was doing nothing for hours).
    As I have unlimited data plan from my phone, I decided to try updating directly from the phone instead. It successfully downloaded the list of maps, but when I selected one of them
    "No Wi-Fi network available. Please configure a WiFi access point in the phone Internet destination settings."
    Why should I do that? I have a working connection on that phone (as evidenced by the successful download of the list of maps). So now, I am stuck. How can I download the maps?
    Well, the suggestion is there. Use a router.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Very strange behaviour master-detail-detail please help

    Very strange behaviour master-detail-detail please help
    Hello,
    I have a parent-child-grandchild report which show's some really strange behaviour.
    The data template has 3 queries Q1, Q2 and Q3.
    Q2 is bound to Q1 using a bind variable
    Q3 is bound to Q2 using another bind variable
    For a certain record in Q1 the output should be
    2 records in Q2
    and 1 record in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q2 record B
    Q3 record BC
    The results conforms to the expected output.
    For another record in Q1 the output should be
    2 records in Q2
    and 2 records in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    In stead of the expected output, the result shows
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record AB
    For another record in Q1 the output should be
    5 records in Q2
    and 2 records in Q3 for each record in Q2
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    Q2 record C
    Q3 record CE
    Q3 record CF
    Q2 record D
    Q3 record DG
    Q3 record DH
    Q2 record E
    Q3 record EI
    Q3 record EJ
    In stead of the expected output, the result shows
    Q1 record
    Q2 record A
    Q3 record AA
    Q3 record AB
    Q2 record B
    Q3 record BC
    Q3 record BD
    Q2 record C
    Q3 record CE
    Q3 record CF
    Q2 record D
    Q3 record DG
    Q3 record DH
    Q2 record E
    Q3 record DH
    So for the last record of Q2 I don't get the appropriate records from Q3 when there are multiple records to be shown, but only the last record which belongs to the previous Q2
    What is going on?
    Please help me out...
    Kind regards,
    Jan-Marcel

    Hi Tim,
    Thanks for your reply. Below you will find the datatemplate on the scott/tiger schema.
    Please help me out.
    Kind regards,
    Jan-Marcel
    <dataTemplate name="scott" description="Template scott" dataSourceRef="otcy001" version="1.1">
      <parameters>
        <parameter name="p_deptno" dataType="number"/>
      </parameters>
      <dataQuery>
        <sqlStatement name="Q1">
          <![CDATA[
            select empno            mgr_empno
                 , ename            mgr_name
                 , job              mgr_job
                 , hiredate         mgr_hiredate
                 , sal              mgr_sal
                 , comm             mgr_comm
              from emp
             where deptno = nvl(:p_deptno, deptno)
               and mgr is null
          ]]>
        </sqlStatement>
        <sqlStatement name="Q2">
          <![CDATA[
            select empno            mgr2_empno
                 , ename            mgr2_name
                 , job              mgr2_job
                 , hiredate         mgr2_hiredate
                 , sal              mgr2_sal
                 , comm             mgr2_comm
                 , mgr              mgr2_mgr
              from emp
             where mgr = :mgr_empno
          ]]>
        </sqlStatement>
        <sqlStatement name="Q3">
          <![CDATA[
            select empno            emp_no
                 , ename            emp_name
                 , job              emp_job
                 , hiredate         emp_hiredate
                 , sal              emp_sal
                 , comm             emp_comm
                 , mgr              emp_mgr
              from emp
             where mgr = :mgr2_empno
          ]]>
        </sqlStatement>
      </dataQuery>
      <dataStructure>
        <group name="G_mgr1" source="Q1">
          <element name="q1_mgr_empno"    value="mgr_empno"/>
          <element name="q1_mgr_name"     value="mgr_name"/>
          <element name="q1_mgr_job"      value="mgr_job"/>
          <element name="q1_mgr_hiredate" value="mgr_hiredate"/>
          <element name="q1_mgr_sal"      value="mgr_sal"/>
          <element name="q1_mgr_comm"     value="mgr_comm"/>
          <group name="G_mgr2" source="Q2">
            <element name="q2_mgr_empno"    value="mgr2_empno"/>
            <element name="q2_mgr_name"     value="mgr2_name"/>
            <element name="q2_mgr_job"      value="mgr2_job"/>
            <element name="q2_mgr_hiredate" value="mgr2_hiredate"/>
            <element name="q2_mgr_sal"      value="mgr2_sal"/>
            <element name="q2_mgr_comm"     value="mgr2_comm"/>
            <element name="q2_mgr2_mgr"     value="mgr2_mgr"/>
            <group name="G_emp" source="Q3">
              <element name="q3_emp_empno"    value="emp_empno"/>
              <element name="q3_emp_name"     value="emp_name"/>
              <element name="q3_emp_job"      value="emp_job"/>
              <element name="q3_emp_hiredate" value="emp_hiredate"/>
              <element name="q3_emp_sal"      value="emp_sal"/>
              <element name="q3_emp_comm"     value="emp_comm"/>
              <element name="q3_emp_mgr"      value="emp_mgr"/>
            </group>
          </group>
        </group>
      </dataStructure>
    </dataTemplate>

  • FOR i IN (statement) LOOP - very strange behaviour

    Hello, I'm experiencing very strange behaviour in my 9i Development Environment:
    If I run this select from SQL Plus a I get six month with number of days:
    select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan from dual a connect by level <=6
    But if I try to cycle through it in PL/SQL I only get the first row.
    FOR i in (
    select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan
    from dual a
    connect by level <=6 )
    loop
    -- print something out
    end loop;
    Any ideas why does this happen this way? If I use a query that does not contain CONNECT BY it works ok.

    Hi
    Just change as given below:
    FOR i in (
    select * from (select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan
    from dual a
    connect by level <=6 ))
    loop
    -- print something out
    end loop;
    Regards
    RK

  • Strange Behaviour in File class

    Hi,
    I noticed a strange behaviour. There is a file contains unicode letters in its name. I tried
    File file=new File("c:\@&#8463;&#8465;\@�&#8537;0.txt");
    file.exists() // I checked existence of file using this statement which returns false although file is exist.
    What can I do ?
    Thanks

    Hi,
    Thanks for the reply.
    I am showing the sample:
    //This is a list method
    static void list(File file) {
            if (file.isDirectory()) {
                File[] files = file.listFiles();
                if (files != null) {
                    for (int i = 0; i < files.length; i++) {
                        if(files.isDirectory()){
    list(files[i]);
    }else{
    System.out.println(files[i].getAbsolutePath() + " " + files[i].exists());
    System.out.println(file.getAbsolutePath() + " " + file.exists());
    if I call this method like this from main method:
    File file=new File("C:\\Documents and Settings\\Neha\\Desktop\\ttt\\@&#8463;&#8465;\\@�&#8537;0.txt");
    list(file);
    output:
    C:\Documents and Settings\Neha\Desktop\ttt\@??\@�?0.txt false [with Jre5]
    C:\Documents and Settings\Neha\Desktop\ttt\@??\@�?0.txt true [with Jre6]
    if I call like this
    File file=new File("C:\\Documents and Settings\\Neha\\Desktop\\ttt");
    list(file);
    Output:
    C:\Documents and Settings\Neha\Desktop\ttt\@??\@�?0.txt true
    C:\Documents and Settings\Neha\Desktop\ttt\@??\Chambal25.txt true
    C:\Documents and Settings\Neha\Desktop\ttt\@?? true
    C:\Documents and Settings\Neha\Desktop\ttt true

  • Very strange behaviour (Image Squished) every time I export

    I have a strange issue happening.
    On one of my mobile pages if I export my HTML the image appears squished. However if I make any adjustment to the image in Muse prior to exporting. i.e./  Shift its X or Y property, etc and then export again .. it appears correctly. If I then export again without touching it .. its back to being squished again. It's really annoying and tedious right now that every time I export HTML for my site I have to go to the mobile layout and make an adjustment to that single image to ensure it's not going to be squished.
    Any ideas ?

    This is driving e nuts.. I have to manually do this every time I export my HTML. .. why is this happening ?  Why only with 1 image too ?

  • Oracle BAM - Very strange behaviour

    I have just installed SOA Suite 11.1.1.7 together with BAM. I have followed the instructions in order, created the repositiory etc.
    BAM server is up and running but all application deployments are unavailable. hostname:port/oracle-bam is unavailable
    please help

    Ok thanks, I have managed to make some progress now. There was an issue with "JRFWSAsyncJmsModule" not deploying, but I created a new domain, and added JRF, which seemed to solve it.
    However, things have gotten much stranger now.
    If I go to https://localhost:9002/OracleBAM with Firefox I get:
    The Browser you are using is not supported. Internet Explorer 7 or 8 is required.
    If I go to https://localhost:9002/OracleBAM with Internet Explorer 8, or to http://localhost:9001/OracleBAM, I get 404 not found. I am sure the URLs are correct, which is clear from the fact that I get the "browser not supported" message from BAM if I use Firefox. Strangely, only the SSL version returns anything (https & port 9002) if I go to the non-SSL (port 9001, plain http) I just get 404, and if use IE like I'm supposed to with the same URL as above I get 404. There are no errors in the logs anymore.
    I have found a troubleshooting document:
    http://www.oracle.com/technetwork/middleware/bam/documentation/bam-trouble-133227.pdf
    It says:
    2.2 404 Error
    The following 404 error occurs on attempt to start Oracle BAM Web applications:
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    Verify that the port number is correct and the URL is exactly in the following format
    (which is case-sensitive):
    http://host_name:port_number/OracleBAM
    Which is an impressively long way of saying "make sure you have the right URL", which I did several times...
    Any other ideas or tips would be much appreciated. Thanks.

  • VERY strange behaviour......

    Hi all,
    I'm experiencing a very annoying problem......no not the wife.
    During playback if I copy a region - any region - the minute I drop it the sound drops out completely, and only comes back when I hit 'stop', followed by clicking the solo button on and off.
    I have no solo buttons on anywhere, and none of my regions have a yellow box around them like someone else was experiencing when they realised they were soloing individual regions!
    I've tried it on numerous projects and the result is the same.
    I've tried searching the forum but no joy.
    Anyone help me?
    Thanks,
    Andy

    If I were in your shoes, I'd find a source that wants to get rid of Tiger at a reduced price, now that Leopard is out. You may want to wait for Leopard to get to 10.5.1 or 10.5.2 before installing it - let others complete Apples testing. Some people have installed it fine, but a number are having teething pains. You can view the Leopard discussions at http://discussions.apple.com/category.jspa?categoryID=235

  • Very strange behaviour of checking valid SSL certificates

    While sniffing our network to solve a problem of using the Exchange Account on Iphone OS 3.1 I saw something strange:
    To use the Exchange Account on the Iphone, you first have to type your E-mail address, then optional domain, then the username/password.
    When you are finished the Iphone starts to check the validity of the SSL-Certificate in the following way:
    It takes the Domain from the right side of the "@"-sign and does something like "dig @domain.tld" and checks there if an valid certificate can be found. In my opinion this does not make sense, because Iphone does not check the certificate of the Exchange/Reverse Proxy. It checks whereever the dig leads it.
    I tried this with 4 different domains.
    Did anybody have the same problem?

    Cliff, Hi. I'm curious because this can't work. I have no problem synching with the exchange - as long as i accept the message that the certificate of the exchange (which is not the certificate of the exchange but the certificate of dig @reighthandsideofmailadress) is not valid (expired, wrong common name etc).

  • Very strange behaviour of SqlDataReader on wifi connection.

    Hi Experts,
    We are doing performance test on filling data from SQL to list using following link
    http://www.codeproject.com/Articles/14760/A-Custom-Business-Objects-Helper-Class ( reflection) with static class filling using sqldatareader as data provider.
    We found the if application + database are on same server we get 80% of performance over reflection
    if application +database are on different server we get 60% of performance over reflection when connected via LAN.
    if application +database are on different server we get -0.21 of performance over reflection when connected via WIFI.
    Can any one please explain why wifi connection behaves weirdly.

    Hello
    luckyforu2006,
    According to your description, your case related to data provider, so i moved your case to
    Data Platform Development >ADO.NET Managed Providers  
    forum for better support.
    Have a ncie day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Very strange behaviour of mouse, trackpad and finder

    As if there were a demon in my Mac:
    - left mouse click doesn't work correctly
    - left mouse click clicks by itself
    - cursor sticks to objects on the screen and drags them around, from desktop, from safari, anything
    - dock doesn't appear
    - when I drag the cursor over objects it marks them without me clicking left mouse click, it also creates rectangles
    - click another window, but it doesn't come in foreground
    - when all these strange things happen, the mouse pad seems not to work, it doesn't click, it feels differently, doesn't make the usual clicking sound, doesn't move down
    - the USB mouse is no better, though! (when all this happens)
    ... I can end this ghost in the machine only by forcing the Mac to shut down
    ... after that it sometimes works ok for a while... then IT happens again
    ... closing and opening the mbp helps sometimes
    is it the software, is it the hardware, is it both?
    (I repaired disk permissions, cleaned PR ram, scanned for viruses)
    any ghostbusters around???
    p.s.: all these thing do not happen when I boot from my windows partition on the same mac

    There are several possible causes for this issue. Take each of the following steps that you haven't already tried until it's resolved. Some may not be applicable.
    1. Follow the instructions in this support article, and also this one, if applicable.
    2. Open the Bluetooth preference pane in System Preferences and check for unknown or forgotten input devices. Disconnect any USB input devices that you aren't using.
    3. Boot in safe mode and test, preferably without launching any third-party applications. If you don't have the problem in safe mode, but it comes back when you reboot as usual, stop here and post your results. If you can't boot in safe mode, do the same. If you booted in safe mode and there was no change, go on to the next step.
    4. Reset the System Management Controller.
    5. If you're using a Bluetooth trackpad, investigate potential sources of interference, including USB 3 devices.
    6. A swollen battery in a MacBook Pro or Air can impinge on the trackpad from below and cause erratic behavior. If you have trouble clicking the trackpad, this is likely the reason. The battery must be replaced without delay.
    7. Press down all four corners of the trackpad at once and release. If there's any effect, it's likely to be temporary, and the unit needs to be serviced or replaced.
    8. There's a report that a (possibly defective) Thunderbolt Ethernet adapter can cause the built-in trackpad of a MacBook to  behave erratically. If you're using such an adapter, disconnect it and test.
    9. There's also a report of erratic cursor movements caused by an external display that was connected but not turned on.
    10. If none of the above applies, or if you have another reason to think that your computer is being remotely controlled, remove it from the network by turning off Wi-Fi (or your Wi-Fi access point), disconnecting from a Bluetooth network link, and unplugging the Ethernet cable or USB modem, whichever is applicable. If the cursor movements stop at once, you should suspect an intrusion.
    11. Make a "Genius" appointment at an Apple Store to have the machine and/or external trackpad tested.

  • Very strange behaviour on a UCM filter

    Hello everyone,
    I am developing a 'checkScheduledEvents' filter, which sends an email. In the filter code i set some string variables in binder, which i try to retrive on the email template. when I try to retrive the string then i get an error saying *"Could not find the parameter 'strMessage'."*
    one more thing while going through filter documentation I found that some of the filter need to set the
    cxt.setReturnValue("true");
    can some one please tell what all filters need to do this.
    cheers,
    sapan
    Edited by: sapan on Apr 29, 2010 4:01 AM
    Hi everybody,
    any updates on this one.....
    cheers,
    sapan

    Hey malky
    thanks a lot for responding on this one. Let me give you a quick insight to what I am doing.
    1) I set a string in the binder from my filter.
    serviceBinder.putLocal("unSuccessfulDelete","SOME STRING VALUE");
    2) i send an email from filter
    InternetFunctions.sendMailTo(strEmailAddress, "Tools_Email", strEmailSubject, cxt);
    3) In the email template i try to retrive the string then print it
    <$HttpServerAddress$>
    <$if strEquals(successfulDelete," ") $>
    <$else$>
         The following items have been moved:
         <p><$successfulDelete$></p>
    <$endif$>
    when i do get the email but when i see the SERVER OUTPUT I GET THE FOLLOWING ERROR MESSAGE
    Error occurred in file '/dev/app/dev/custom/ToolsServices/templates/Tools_Email_Template' at line 8 and character 7. Could not find the parameter 'successfulDelete'.
    ->     <p><$successfulDelete$></p>
    -><$endif$>
    your any pointers will be highly appriciated.
    cheers,
    sapan

  • My iphone has some very strange behaviour

    I am running a stock iPhone 5, not jailbroken, iOS 7.0.6.  The other day, one of my appliation folders kept opening when I wasn't touching the screen.  Every time I would close the folder, it would re-open by itself.
    Today I unlocked the phone and before I had opened any apps, Safari opened by itself and the words "buu's fury" got typed into the address bar and came up with a Google search.
    I keep hearing that iPhone's don't get viruses, any ideas what could be causing this?
    Thanks

    You hear correct there's no virus & malware that can run on iPhone.
    Double tab Home button and delete Safari from multitask-list.
    Clear Safari history cookies & data.
    Settings > Safari > here
    Do not track: ON
    Fraudulent Website Warning: ON
    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • Very strange behaviour of table values and event case

    Hi all
    i'm becoming crazy on my .vi
    i want to change the second col values on click from yes to no and from no to yes simply by a click.
    The problem is that this changing happens after some clicks on an old position.
    Try to click on some "no" on the file that is attached.
    Thanks a lot!
    Dario
    http://www.sd-studio.it - web design agency
    Attachments:
    Ecu_wizard.vi ‏101 KB

    The issue took me a sec to understand but here it is.  You are trying to change the value during the mouse up event.  And you do... however you have just selected that cell in the table.  So LabVIEW is waiting for the user to change the value, and in this case ignoring your change.  All you need to do is add a property node to the end of that sequence that is Key Focus and set it to false

  • Linked files - very strange behaviour in CS2 (4.05)

    Hello
    I open files every day via the Q2ID plugin. This is the process I followed.
    1. Opened file and then linked all the graphics.
    2. I then decided to copy all these linked graphics into a more logical central folder.
    3. I then deleted the original graphics files but did not empty the trash.
    4. InDesign then should have advised me that all the files were missing. This is where I was expecting to then point it the new central folder. However InDesign did not show the files as missing at all. It showed them as still being in their original folder even though they had been deleted. I checked this using the info in the Links palette and by also hovering over the name. The original path still showed and the files magically were not missing.
    5. If I packaged the artwork InDesign collected the non-existant files.
    6. If I chose 'Reveal in Finder' for the image then the finder window appeared and showed the file - but on checking the location it's in trash!
    How can CS2 get it so wrong?
    Out of interest is CS2 known as a particularly buggy release?

    It's a Mac OS thing. I have two computers networked together and I was trying to send a zip file using Mail on a different machine from the one containing the zip. Three times, I succeeded in sending the wrong file because it was in the trash and not actually deleted, even though in Mail I was telling it to attach the new version.
    I think that InDesign at least doesn't play this trick on you. Link to a file and you'll get that file, not some earlier version of it.
    Dave

Maybe you are looking for

  • My safari will not open at all!!!!

    Hi, I cannot open safari. I click on it and a big question mark appears over it. I have spent hours looking through the help feature on my Mac (and the Apple website as well) and can't find anything on this. My Mac is an os x version 10.5.7. Thank yo

  • How I fixed my ipod

    Hi all – like many of you, I've lost hours figuring out the fix for the ipod/updater/itunes6 problems causing song uploads to hang or ipod freezing. I tried almost every trick I found in the web thus far. Here’s a log of what happened. (1) On the day

  • Event handling in Gantt chart Webdynpro Java

    Hi I have a Gantt chart where I have names(name1,name2..) in category(Y) axis. Now I want to fire an event when I click name1 or name2 .. on the Gantt chart where I will take name1 as parameter.Any idea with code will highly be appreciated and reward

  • Changing application Name

    Hi.. I need to change the name of an application. For this I am doing the following steps: Under the src->packages folder... there is a file application.wdapplication. I am changing this file name to newapplication.wdapplication. Then I am importing

  • Forte 30N2 : Message duration SO restart after a crash issue

    In our application, the batch processes are based on a 'Controller-Processor' pattern. A controller starts many processor tasks as parallel processes. The problem is that our Controller process crashed. However, by that time, many processor processes