Window Event, problem with attaching listener

Can someone point me in the right direction here
1:
window.nativeWindow.addEventListener(air.Event.RESIZE,onResizeComplete);
2:
window.nativeWindow.addEventListener(air.Event.MOVE,onMoveComplete);
Line #1 works perfect, line #2 throws an error: "TypeError:
Error #2007: Parameter type must be non-null."
Both functions
onResizeComplete and
onMoveComplete are defined the same way.

try deferring the remove until other events have been processed, like this: SwingUtilities.invokeLater(new Runnable() {
  public void run() {
    jTabbedPane1.removeTabAt(1);
});

Similar Messages

  • Problems with attached documents in Mail and Docs To Go

    Hello everybody.
    I've found a problem with attached documents in Mail. In fact, if I click on attached documents with .doc (microsoft office word 97-2004) and files in .docx Office Open .xml, the iPad doesn't open them, also if I click in "Open with Docs To Go (which should support these files' format)".
    How can I do? There's an application or another way to open these files?
    Other Informations:
    Docs To Go version: 5.2.2

    Update the patch to the Sapgui.
    Regards,
    Ignacio.

  • Events problem with (Java and ActiveX)

    Hi,
    I use an ActiveX component with Java and i've got a problem with events.
    Java classes were generated with Bridge2Java (IBM).
    In order to manage events I added a listener in my application :
         javaMyActiveX = new MyActiveX();
         javaMyActiveX.add_DMyActiveXEventsListener(new _DMyActiveXEventsAdapter());
    I also added a constructor in the _DMyActiveXEventsAdapter class and I fill the body of methods.
    The ActiveX generates two types of events :
    - The ones are directly generated by methods.
    - The others are generated by a thread.
    With MS Products (VB, Visual C++, Visual J++), I catch all events.
    With java (jdk 1.4), I catch only events generated by methods.
    Can anyone help me.

    I'm not 100% sure, but the last time I used that bridge, it only worked if you ran your Java app within a Microsoft VM.

  • Problem with attachment in web service

    I'm writing a WebService under WebLogic 9.2 . My WebService API needs to recive and return an attachment. I'm tring to use a javax.activation.DataHandler object for the attachment, but for some reason in the WSDL file that being created, the DataHandler isn't being recognize and the "http://www.bea.com/servers/wls90/wsee/attachment" namespace is being associated with it (I'm using "jwsc" in the build.xml).
    Does anyone encounter with problem ? and does the DataHandler is the right object to use for attachment (i want to avoid using base-64 String)?

    duplicate problem with a secured web service

  • Contract - problem with attachements (empty field in LOIO_OBJID)

    Hi Guys,
    We are using extended classic scenario of SRM 4.0 (SRM Server 500) and our latest support package is SAPKIBKS12. We have the following problem with contracts.
    Sometimes when an attachment is added to a contract the system does not fill the following fields in tabel BBP_PDATT.
    LOIO_CLASS: Normally filled with BBP_L_DOC
    LOIO_OBJID: Normaly filled with a GUID size datastring
    Whenever this happens and later on the contract is changed and released the system will raise an abort. We tried the following notes but no good result.
    891293,919467,932602,964065. Some other notes that might be possible are 1042826/1085700/1083063 but we also don't have good experience with these ones.
    Can anyone give us advice about two things.
    1) Is there a way to fill the empty fields in BBP_PDATT so that existing contract will work properly again?
    2) Does anyone know why this problem occurs and how to fix it for new contracts?
    Hope to hear from you,
    Arie

    Thankyou for the reply. I have made following changes but still not working. I am creating the inquiry and customer material is not getting populated. Please guide in resolving the issue.
    DATA : W_ENQUIRY_ITEM_INX LIKE BAPISDITMX OCCURS 0 WITH HEADER LINE.
    W_ENQUIRY_ITEM_INX-ITM_NUMBER  = THEAD-ITEMNO.
          W_ENQUIRY_ITEM_INX-UPDATEFLAG  = 'X'.
          W_ENQUIRY_ITEM_INX-CUST_MAT22 = 'X'.
    APPEND W_ENQUIRY_ITEM_INX.
    CALL FUNCTION 'BAPI_INQUIRY_CREATEFROMDATA2'
       EXPORTING
       SALESDOCUMENTIN               =
         INQUIRY_HEADER_IN             =  W_ENQUIRY_THEAD
      IMPORTING
        SALESDOCUMENT                 = W_NUMBER
       TABLES
        RETURN                        = W_RETURN
        INQUIRY_ITEMS_IN              =  W_ENQUIRY_ITEM
        INQUIRY_ITEMS_INX             =  W_ENQUIRY_ITEM_INX
         INQUIRY_PARTNERS              = T_INQUIRY_PARTNERS

  • Problems with attach documents in solman

    Hi Experts,
    I need to attached to my organizational business structure (in Tx SOLAR01 and SOLAR02) many templates documents of functional and technical specifications and have a problem with that.
    When I make the solar_project_admin transaction and click onto project template buttom to create a personal document the system gives me a warning message:
    "Documentation types in SAP namespace cannot be copied
    Message no. SPROJECT371
    Diagnosis
    You tried to copy documentation types in the SAP namespace into the template. This is not possible.
    System Response
    The documentation types were not copied."
    Could you please tell me how can I create my own document (SOLAR01 Y SOLAR02) to attached onto the structure?.
    Tks!
    Ignacio.

    Update the patch to the Sapgui.
    Regards,
    Ignacio.

  • Problem with attaching files to mail message

    Hello,
    I have problem with my mail app. I'm using spaces for better organization. When I wanna add some file to mail message I usually go to different desktop (space), where I have the file I wanna attach. I grab it move to right up corner to activate spaces, than move to desktop (space) with mail.app and press spacebar (it activates the desktop immediately). At that time it also start random app, which is in my dock.
    You can see it in my youtube video.
    How can avoid this strange thing happen?
    http://www.youtube.com/watch?v=KUypUnPHZvc
    I'm using MacBook Pro 15'', Snow Leopard - latest updates. I've reinstalled my mac two days ago, so no garbage should be in.

    Thanks for quick reply.
    I don't have selected "always..." so I also tried it with selected "always...".
    Now I discovered that it has nothing to do with the mail. I've tried just move some file from one of spaces (desktop) to another using the spacebar for faster switching and it did the same. It opens random app from Dock.
    So now this topic is in wrong discussion. I will post it to correct discussion...

  • Problems with dbms_aq.listen

    I am having problem trying to listen to a set of queues.
    I have tried it with Single Consumer queues and it works fine.
    But with Multi Consumer queues dbms_aq.listen does not detect a new message enqueued and just waits until the time out then returns with the normal "No message" exception.
    Can any one tell me what I am doing wrong?
    Thanks
    Rick Laird
    code
    CREATE OR REPLACE TYPE message_type AS OBJECT (xml_message CLOB);
    exec dbms_aqadm.create_queue_table('testqueue_qtable','message_type',Null,Null,true);
    exec dbms_aqadm.create_queue('testqueue', 'testqueue_qtable');
    exec dbms_aqadm.start_queue('testqueue');
    exec dbms_aqadm.add_subscriber('testqueue',sys.aq$_agent('testqueue_subscriber',NULL,NULL));
    exec DBMS_AQADM.SCHEDULE_PROPAGATION('testqueue');
    CREATE OR REPLACE PROCEDURE MONITOR_STATUS_QUEUE(time IN NUMBER)
    IS
    pragma autonomous_transaction;
    agent_w_message sys.aq$_agent;
    agent_list dbms_aq.aq$_agent_list_t;
    wait_time INTEGER := 10;
    no_message EXCEPTION;
    pragma EXCEPTION_INIT(no_message, -25254);
    new_status VARCHAR2(30);
    monitor BOOLEAN := TRUE;
    begin_time number;
    end_time number;
    v_dequeue_options dbms_aq.dequeue_options_t;
    v_message_properties dbms_aq.message_properties_t;
    v_message_type message_type;
    v_dequeue_msg_id RAW(40);
    v_xml_message CLOB;
    v_message_text varchar2(2000);
    v_amount number;
    BEGIN
    begin_time := dbms_utility.get_time;
    WHILE (monitor)
    LOOP
    BEGIN
    -- agent_list(1) := sys.aq$_agent('testqueue_agent', 'testqueue', NULL);
    agent_list(1) := sys.aq$_agent('agent1', 'testqueue', NULL);
    /* wait for order status messages */
    dbms_aq.listen(agent_list, 0, agent_w_message);
    dbms_output.put_line('Agent' || agent_w_message.name || ' Address '|| agent_w_message.address);
    /* dequeue the message from the queue */
    v_dequeue_options.consumer_name := 'testqueue_subscriber';
    v_dequeue_options.wait := 0.5;
    -- v_dequeue_options.wait := dbms_aq.NO_WAIT;
    dbms_aq.dequeue('testqueue',v_dequeue_options, v_message_properties,
    v_message_type,v_dequeue_msg_id);
    v_amount := dbms_lob.getlength(v_message_type.xml_message);
    dbms_lob.read(v_message_type.xml_message,v_amount,1,v_message_text);
    dbms_output.put_line('New Message :'||v_message_text);
    /* exit if we have been working long enough */
    end_time := dbms_utility.get_time;
    IF (end_time - begin_time > time) THEN
    EXIT;
    END IF;
    EXCEPTION
    WHEN no_message THEN
    dbms_output.put_line('No messages so far');
    end_time := dbms_utility.get_time;
    --exit if we have done enough work
    IF (end_time - begin_time > time) THEN
    EXIT;
    END IF;
    END;
    END LOOP;
    commit;
    END;
    create or replace procedure enqueue is
    v_enqueue_options dbms_aq.enqueue_options_t;
    v_messages_properties dbms_aq.message_properties_t;
    v_message_type message_type;
    v_message_locator CLOB;
    v_enqueue_msg_id RAW(40);
    v_select_sql varchar2(2000);
    v_xml_message varchar2(2000);
    v_temp_clob CLOB;
    begin
    v_xml_message := '<TESTING><TEST>'||to_char(sysdate,'HH:MI:SS')||'</TEST></TESTING>';
    dbms_lob.createtemporary(v_temp_clob,true);
    dbms_lob.write(v_temp_clob,length(v_xml_message),1,v_xml_message);
    v_message_type := message_type(empty_clob());
    dbms_aq.enqueue(
    queue_name => 'testqueue',
    enqueue_options => v_enqueue_options,
    message_properties => v_messages_properties,
    payload => v_message_type,
    msgid => v_enqueue_msg_id);
    v_select_sql := ' select t.user_data.xml_message from testqueue_qtable t where t.msgid = :MSG_ID';
    execute immediate v_select_sql INTO v_message_locator using v_enqueue_msg_id;
    dbms_lob.copy( dest_lob => v_message_locator,
    src_lob => v_temp_clob,
    amount => dbms_lob.getlength(v_temp_clob));
    COMMIT;
    end enqueue;

    Hi,
    Your subscriber is called testqueue_subscriber. You must use the same consumer name in the agent list for dbms_aq.listen
    Change
    agent_list(1) := sys.aq$_agent('agent1', 'testqueue', NULL);
    to
    agent_list(1) := sys.aq$_agent('testqueue_subscriber', 'testqueue', NULL);

  • Significant Computer Window Focus Problem With Verizon Access Manager 7.7.1.0 (2707e)

    With the newly released Verizon Access Manager 7.7.1.0 (2707e) there is a significant computer focus problem with it.
    What I mean by this is that if I am using ANY application on my computer with the Verizon Access Manager minimized to the Windows System Tray, something will go on with the Verizon Access Manager and it steals the window focus - I am unable to work in the other application unless I click on the application to use it again.  
    An example of this would be my typing to post a message in this forum.  Something occurs in the Verizon Access Manager and my typing is rendered useless unless I click with my mouse on the browser window to be able to use it again.
    I'm highly suspecting whenever networks are coming and going in the Access Manager is when the problem occurs.
     This problem did not exist in the previous version of the Access Manager I was using.
    This is extremely annoying - please issue a fix for this ASAP!

    I have found by not minimzing the Verizon Access Manager 7.7.1.0 (2707e) the focus problem does not occur - it appears to be a problem when the app is minimzed to the system tray.

  • Gui 7.0 windows xp, problem with Internet Explorer 6.0

    Hello Gurus,
       I am installing SAP GUI 7.00, on all the windows XP machines, of our SAP users. All the machines where GUI 7.00 is installed, are facing the problem with Internet Explorer. When we click on IE we don't get error but the requested URL do not show anything. Our version of Internet exploerer is 6.0.
      Gurus, need your help on this..
    Thanks and Regards,
    Rahul

    hi ,
      thanks for letting me know my error. I will raise this problem in the correct forum
    Thanks
    Rahul

  • Forms/Designer 10g - problem with attached libraries

    I've problem with forms with attached libraries. All of libraries have removed paths. I can run all forms without any problem on my local application server from Forms Builder 9i or Designer 9i. I added all paths in registry FORMS90_PATH. WORKINGDIRECTORY in formsweb.cfg is blank.
    Unfortunately I can't do it with Developer 10g on second workstation. I added all paths in registry FORMS_PATH. WORKINGDIRECTORY in formsweb.cfg is blank too. When form is running I get ORA-06508. I can't store all files (fmb, fmx, pll, plx etc.) in one folder because I've to use CVS. In this case I can't set any folder in WORKINGDIRECTORY.

    Assuming Forms 10.1.2.x, FMX, MMX, PLX, and OLB files are found based on the value of FORMS_PATH which is set in default.env and not the Registry. This applies to runtime only. The Builder uses the Registry.
    Understand that "runtime" refers to any time a form is displayed in a browser, regardless of whether is was started from the Builder or Application Server.
    Also, be aware that if you have FMX, MMX, or PLX files which were created in older versions they must be recompiled using the 10.1.2 compiler.

  • DW CS4 with Windows 7 - problems with Extension Manager

    Hi
    I am new to this forum and have searched to see if anybody else has had this issue but can't find it.
    I have recently installed CS4 on a Windows 7 laptop. I had originally downloaded and installed it on an XP laptop where it was all fine.
    I had some problems with installation with the unlocking of the serial number on the new laptop - this was resolved by Adobe support.
    However now I am trying to install extensions and get the message that the Extension Manager is unavailable and I have to re-install.
    I have tried to contact Adobe using the Support portal but my post has been there for 4 days and I have had no response. I have just tried to call and after 12 minutes of being on hold - when the wait time was supposed to be 1 minute - I gave up.
    Can anyone help with this. Does this mean an uninstall then re-install again? In which case I will have the same serial number issue that I had before. Or is there any other way I can install the Extension Manager?
    Would really appreciate any help.

    I had a somewhat similar experience with the 4.2.1 upgrade with my computer. With my Q6600 running at 3.2 GHz, Vista x64 and with PPro CS4/4.1 update, I ran the PPBM4 benchmark and scored an 83.8. I then installed Win 7 x64, clean install etc… and re-ran the PPBM4 benchmark, with the same 4.1 update and with all system configurations the same as before, my score improved to 68.8, fantastic! I was very impressed with Win 7 x64.
    This was short-lived because I updated PPro from 4.1 to 4.2.1, re-ran the PPBM4 benchmark and my score fell to 83.1 seconds, not impressed with the 4.2.1 update as far as this benchmark was concerned. I replaced the Q6600 with a Q9450, also over clocked to 3.2 GHz and with Win 7 x64, ran the PPBM4 benchmark and scored a 68.1; I got back everything I had lost in system speed from the 4.2.1 update plus some.
    The Q6600 does not have the SSE4 instruction set while the Q9450 does. Perhaps the 4.2.1 update benefited CPU’s with SSE4 while those CPU’s without it, took a performance hit, just a guess.

  • WINDOWS INSTALLER PROBLEM WITH DESKTOP MANAGER

    Please help!! I am a user of the Blackberry Desk Top Manager, running under Windows XP Service Pack 4.5. I recently downloaded the latest version of Desk Top Manager and I am getting the following error: - Flashing intermittently, whilst running the newly downloaded Desktop Manager - "Windows Installer Preparing to Install". I have removed the programme, downloaded it again from Blackberry's website and run my Windows updates to no available. I have now been advised that I must format my entire computer and reload Windows, which seems to be a rather onerous solution, as I have been using Blackberry's Synchronisation Programme for over a year successfully before this took place. I should appreciate it if you would let me know how this problem on my IBM Think Pad Laptop can be cured.

    halimsujanto wrote:
    Hi all..
    I am having the same problem with desktop software 6, but my problem is more like this..
    http://www.blackberry.com/btsc/KB19300
    The Windows Installer pop-up during installation and cannot continue, it seems that windows installer 4.5 is the cause, but I cannot uninstall windows installer 4.5 because many of my programs were using this..
    In this knowledge base solution it says to run BlackBerry Desktop Software.msi, but on BlackBerry Desktop Software 6, it need to run from setup.exe and cannot continue.. so I cannot install desktop software 6 on my computer, but I am able to install older version desktop software ie. version 4.2 to version 5.
    I think that I am gonna reply here instead of making new thread about windows installer 4.5 and Desktop Software 6, please move if I did wrong.
    PS. Bifocals..
    The link you provided is missing. Or it just back to BlackBerry Technical Solution Center page and I tried searching the KB13781 with no success.
    Please if there is other link that may be good for my problem.
    Thank you very much.
    Hi ihalimsujanto and welcome to the forums!
    My first concern is that you do have a version of desktop manager that you can maintain your device and PIM data with, do you?
    Please post back with as much detail as possible regarding your hardware and software setup.
    Also post what steps you have taken to resolve the issue. The more detail we have the better we can help you. I'll reread KB 19300 and find what happened to my broken link.
    Thanks.
    Bifocals
    EDIT:
    ihalimsujanto,
    Please review this Microsoft Knowledgebase  Article ID: 555175
    How to resolve Common "Windows Installer" Problems
    Methods 3 and 4 may be pertinent.
    Let us know how it goes!
    Bifocals
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • Windows lockup problems with P6N Diamond

    MSI P6N Diamond nForce 680i SLI Socket 775 motherboard
    Seagate ST3250410AS 250 GB SATA hard drive
    LITEON LH-20A1L-06 20X SATA DVD Burner
    EVGA e-GeForce 8800 GTS Superclocked PCI Express video card
    OCZ OCZ2TA1000VX22GK PC2-8000 Titanium Alpha VX2 Dual Channel Memory (2 x 1GB)
    Windows XP Pro SP2
    I have been having lots of problems with Windows XP just locking up on me.  It has happened 3 times now, and I am tiring of re-building my PC from scratch.  Every time, it works for a while, and then, just locks up one day.
    At this point, I've removed my partition, rebuilt it, reformatted and re-installed windows.  I'm currently running the AMI v1.3 bios.  I've loaded the latest nVidia drivers (9.53 driver package).  I've loaded the latest graphic drivers from EVGA (169.02_XP32).
    I've read lots of posts in various forums about issues with SATA settings on nVidia systems, but I can't seem to find a post that is clear about the best settings.  They mentioned disabling command queuing, using/not using SiL drivers, etc.  Can anyone offer any insight that might help me straighten out my system?  I am close to tossing it out a window.

    Not quite sure how to answer, but here is the dump from cpuz:
    Chipset
    Northbridge          NVIDIA nForce 680i SLI SPP rev. A2
    Southbridge         NVIDIA nForce 680i SLI MCP rev. A2
    Graphic Interface     PCI-Express
    PCI-E Link Width     x16
    PCI-E Max Link Width   x16
    Memory Type       DDR2
    Memory Size         2048 MBytes
    Channels          Dual
    Memory Frequency   400.1 MHz (2:3)
    CAS#             4.0
    RAS# to CAS#      4
    RAS# Precharge      4
    Cycle Time (tRAS)   15
    Bank Cycle Time (tRC)   22
    Command Rate      2T
    Memory SPD
    DIMM #1
    General
    Memory type      DDR2
    Module format      Regular UDIMM
    Manufacturer (ID)   OCZ (7F7F7F7FB0000000)
    Size         1024 MBytes
    Max bandwidth      PC2-6400 (400 MHz)
    Part number      OCZ2TA1000VX21G   
    Attributes
    Number of banks      2
    Data width      64 bits
    Correction      None
    Nominal Voltage      1.80 Volts
    EPP         no
    XMP         no
    Timings table
    Frequency (MHz)      270   333   400   
    CAS#             3.0        4.0     5.0   
    RAS# to CAS# delay   4   5   5   
    RAS# Precharge        4     5     5   
    TRAS               10      13     15   
    TRC                15      18     22   
    DIMM #2
    General
    Memory type      DDR2
    Module format      Regular UDIMM
    Manufacturer (ID)   OCZ (7F7F7F7FB0000000)
    Size         1024 MBytes
    Max bandwidth      PC2-6400 (400 MHz)
    Part number      OCZ2TA1000VX21G   
    Attributes
    Number of banks      2
    Data width      64 bits
    Correction      None
    Nominal Voltage      1.80 Volts
    EPP         no
    XMP         no
    Timings table
    Frequency (MHz)      270   333   400   
    CAS#             3.0       4.0        5.0   
    RAS# to CAS# delay   4   5   5   
    RAS# Precharge        4     5     5   
    TRAS              10        13       15   
    TRC               15      18     22   

  • Alligning page to very top of browser window and problem with a random error symbol

    Dear reader
    Before I start I would just like to say sorry for posting
    another help request so soon after I have posted one before but I
    am having a problem with my website. My website is www.iggpog22.com
    (but you must include the www. or it goes to the wrong site I do
    not know why) anyway I seem to get a random questionmark at the top
    of my webpage which is rather annoying. I believe it may have been
    the result of me trying to use the google search bar code and
    perhaps I left some old code in but I have searched and just cannot
    figure this out. Is it possible anyone could inform me of how to
    remove it aslong as it is not much trouble. I would also like to
    know how I can get the main section of my site to touch the top of
    the browser screen instead of leaving a gap for the background to
    show (and aswell if I can do the same for the bottom of the page)
    Thank you for any assistance
    .Sam

    02cspearson wrote:
    > Dear reader
    > Before I start I would just like to say sorry for
    posting another help request
    > so soon after I have posted one before but I am having a
    problem with my
    > website. My website is www.iggpog22.com (but you must
    include the www. or it
    > goes to the wrong site I do not know why) anyway I seem
    to get a random
    > questionmark at the top of my webpage which is rather
    annoying. I believe it
    > may have been the result of me trying to use the google
    search bar code and
    > perhaps I left some old code in but I have searched and
    just cannot figure this
    > out. Is it possible anyone could inform me of how to
    remove it aslong as it is
    > not much trouble. I would also like to know how I can
    get the main section of
    > my site to touch the top of the browser screen instead
    of leaving a gap for the
    > background to show (and aswell if I can do the same for
    the bottom of the page)
    >
    > Thank you for any assistance
    > .Sam
    >
    why not just look at the code of your page? it's there:
    <td width="88" rowspan="2" align="center"
    bgcolor="#333333"><img
    src="Images/Iggpog22Index/dev_id/ig2lgonobg.png" width="78"
    height="75" /></td>
    �
    Just remove that question mark, whatever it is.
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    An Ingenious WebSite Builder:
    http://sitelander.com

Maybe you are looking for

  • "low memory " warning popping up..

    ... "low Memory" "Save your work".Error message pops up. My system.. Dell 530 intel duo e4500 @ 2.20 ghz , 2.19ghz 3GB ram.. Why do i get this warning? Adobe says 2gigs is the minimum ram required.. what do I do to stop this error message from poppin

  • Download & save pdf file (mail to file scenario)

    Hi All, I have a simple scenario (mail to file), in which pdf file is being attached to incoming mail message. Attachment is "downloaded" (using localejbs/AF_Modules/PayloadSwapBean adaptor module(. Since no mapping required, the used "Integrated Con

  • Downgrading ios from 8.0.2 to 6.1.3

    Very recently I have upgraded my 4s device to IOS 8.02 . Need help to down grade it to either IOS 7.x.x or to my factory IOS 6.1.3. Device response is very slow with this new IOS 8.0.2.

  • InDesign CS 5.5 crashes when opening certain .indd file

    Hi guys our designer reported this issue and I believe it is likely an issue with the .indd file. File is found below: https://docs.google.com/open?id=0B76oDngKUDCFc25lSEhsZF9EVFU Windows 7 64 bit InDesign 7.5.2 CS 5.5. From our tests the file opens,

  • Quicktime Pro closes when trying to export file

    Hi. I have a problem. Every time I try to export a quicktime movie (making it smaller for web), the quicktime pro application closes and I don't even get an error message. This happens when I access the "settings" in wuicktime pro. I have tried every