[svn:cairngorm3:] 16809: Changed close event from flash.events.Event. CLOSE to mx.events.CloseEvent.CLOSE.

Revision: 16809
Revision: 16809
Author:   [email protected]
Date:     2010-07-03 03:05:21 -0700 (Sat, 03 Jul 2010)
Log Message:
Changed close event from flash.events.Event.CLOSE to mx.events.CloseEvent.CLOSE. See MXML examples in PopupTest.
Modified Paths:
    cairngorm3/trunk/libraries/PopupTest/.actionScriptProperties

Hmmm Strange!!!
Seems like a bug which requires target for parallel effect while hide only but does not set it.
For the time being you can remove the sequence effect as there is no othe effect other than parallel and use effect like
         <mx:Parallel id="fadeOutTw">
            <mx:Fade alphaFrom="1.0" alphaTo="0.0" duration="1000"/>
            <mx:WipeUp duration="1000" />       
        </mx:Parallel>
or you can also set target explicitly like :
<mx:Sequence id="fadeOutTW" >
        <mx:Parallel target="{largeImgTW}">
            <mx:Fade alphaFrom="1.0" alphaTo="0.0" duration="1000"/>
            <mx:WipeUp duration="1000" />       
        </mx:Parallel>   
    </mx:Sequence>
I have tested on this code, and works fine. Hope this helps you
-Vikash

Similar Messages

  • [svn:cairngorm3:] 16810: Changed close event from flash.events.Event. CLOSE to mx.events.CloseEvent.CLOSE.

    Revision: 16810
    Revision: 16810
    Author:   [email protected]
    Date:     2010-07-03 03:32:49 -0700 (Sat, 03 Jul 2010)
    Log Message:
    Changed close event from flash.events.Event.CLOSE to mx.events.CloseEvent.CLOSE. See MXML examples in PopupTest.
    Modified Paths:
        cairngorm3/trunk/libraries/PopupTest/src/samples/ModulePopups.mxml

    Hmmm Strange!!!
    Seems like a bug which requires target for parallel effect while hide only but does not set it.
    For the time being you can remove the sequence effect as there is no othe effect other than parallel and use effect like
             <mx:Parallel id="fadeOutTw">
                <mx:Fade alphaFrom="1.0" alphaTo="0.0" duration="1000"/>
                <mx:WipeUp duration="1000" />       
            </mx:Parallel>
    or you can also set target explicitly like :
    <mx:Sequence id="fadeOutTW" >
            <mx:Parallel target="{largeImgTW}">
                <mx:Fade alphaFrom="1.0" alphaTo="0.0" duration="1000"/>
                <mx:WipeUp duration="1000" />       
            </mx:Parallel>   
        </mx:Sequence>
    I have tested on this code, and works fine. Hope this helps you
    -Vikash

  • [svn:cairngorm3:] 16808: Changed close event from flash.events.Event. CLOSE to mx.events.CloseEvent.CLOSE.

    Revision: 16808
    Revision: 16808
    Author:   [email protected]
    Date:     2010-07-03 03:04:40 -0700 (Sat, 03 Jul 2010)
    Log Message:
    Changed close event from flash.events.Event.CLOSE to mx.events.CloseEvent.CLOSE. See MXML examples in PopupTest.
    Modified Paths:
        cairngorm3/trunk/libraries/Popup/src/com/adobe/cairngorm/popup/PopUpBase.as
        cairngorm3/trunk/libraries/PopupTest/.actionScriptProperties
        cairngorm3/trunk/libraries/PopupTest/.flexProperties
        cairngorm3/trunk/libraries/PopupTest/src/PopUpMXMLExample.mxml
        cairngorm3/trunk/libraries/PopupTest/src/samples/MyPopup.mxml
        cairngorm3/trunk/libraries/PopupTest/src/samples/ZoomAndFadePopUpBehavior.mxml
        cairngorm3/trunk/libraries/PopupTest/src/samples/parsley/ParsleyPopup.mxml
    Added Paths:
        cairngorm3/trunk/libraries/PopupTest/src/samples/ModulePopups.mxml

    Hmmm Strange!!!
    Seems like a bug which requires target for parallel effect while hide only but does not set it.
    For the time being you can remove the sequence effect as there is no othe effect other than parallel and use effect like
             <mx:Parallel id="fadeOutTw">
                <mx:Fade alphaFrom="1.0" alphaTo="0.0" duration="1000"/>
                <mx:WipeUp duration="1000" />       
            </mx:Parallel>
    or you can also set target explicitly like :
    <mx:Sequence id="fadeOutTW" >
            <mx:Parallel target="{largeImgTW}">
                <mx:Fade alphaFrom="1.0" alphaTo="0.0" duration="1000"/>
                <mx:WipeUp duration="1000" />       
            </mx:Parallel>   
        </mx:Sequence>
    I have tested on this code, and works fine. Hope this helps you
    -Vikash

  • [svn] 1535: Merge change BLZ-1520 from 3.0.x to trunk.

    Revision: 1535
    Author: [email protected]
    Date: 2008-05-02 10:43:13 -0700 (Fri, 02 May 2008)
    Log Message:
    Merge change BLZ-1520 from 3.0.x to trunk.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-1520
    Modified Paths:
    blazeds/trunk/apps/samples/WEB-INF/flex/services-config.xml

  • [svn] 1574: Merge change BLZ-1567 from 3.0.x to trunk.

    Revision: 1574
    Author: [email protected]
    Date: 2008-05-06 11:29:35 -0700 (Tue, 06 May 2008)
    Log Message:
    Merge change BLZ-1567 from 3.0.x to trunk.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-1567
    Modified Paths:
    blazeds/trunk/qa/apps/qa-manual/WEB-INF/flex/messaging-config.mods.xml
    blazeds/trunk/qa/apps/qa-manual/WEB-INF/flex/services-config.mods.xml
    blazeds/trunk/qa/apps/qa-regress/WEB-INF/flex/messaging-config.mods.xml

  • [svn:cairngorm3:] 15438: -Change initialization objects of Cairngorm Parsley extensions to Parsley convention  (i.e.

    Revision: 15438
    Revision: 15438
    Author:   [email protected]
    Date:     2010-04-15 03:39:34 -0700 (Thu, 15 Apr 2010)
    Log Message:
    -Change initialization objects of Cairngorm Parsley extensions to Parsley convention (i.e. CairngormModuleLib>CairngormModuleSupport). Every initialization object has a static initialize method and implements Parsley's ContextBuilderProcessor, which allows it to be specified within a ContextBuilder definition.
    -API Change in Navigation library: Changed -FirstEnter metadata to Enter(time="first"), -Enter metadata to Enter(time="next") and -EveryEnter metadata to Enter(time="every")
    -Added convenience isValid get accessor to ValidationGroupEvent
    Modified Paths:
        cairngorm3/trunk/libraries/IntegrationDMS/.flexLibProperties
        cairngorm3/trunk/libraries/IntegrationRPC/.flexLibProperties
        cairngorm3/trunk/libraries/IntegrationTest/src/CommandScopeSample.mxml
        cairngorm3/trunk/libraries/IntegrationTest/src/LocalConnectionConsumer.mxml
        cairngorm3/trunk/libraries/IntegrationTest/src/LocalConnectionProducer.mxml
        cairngorm3/trunk/libraries/Module/.actionScriptProperties
        cairngorm3/trunk/libraries/Module/.flexLibProperties
        cairngorm3/trunk/libraries/ModuleTest/.actionScriptProperties
        cairngorm3/trunk/libraries/ModuleTest/.flexProperties
        cairngorm3/trunk/libraries/ModuleTest/src/CairngormModuleLibRuntimeSample.mxml
        cairngorm3/trunk/libraries/ModuleTest/src/CairngormModuleLibSample.mxml
        cairngorm3/trunk/libraries/Navigation/.actionScriptProperties
        cairngorm3/trunk/libraries/Navigation/.flexLibProperties
        cairngorm3/trunk/libraries/Navigation/pom.xml
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/landmark/Abstrac tNavigationDecorator.as
        cairngorm3/trunk/libraries/NavigationTest/src/NavigatorSample1.mxml
        cairngorm3/trunk/libraries/NavigationTest/src/ToggleButtonBarSample.mxml
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/contacts/BusinessContactsPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/contacts/ContactsPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/contacts/PrivateContactsPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/ContentPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/dashboard/DashboardFoo terPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/dashboard/DashboardPM. as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/dashboard/NestedChild1 PM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/dashboard/NestedChild2 PM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/dashboard/NestedChildP M.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/messages/MessagesPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/news/NewsPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/tasks/ExpensePM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/tasks/TaskPM.as
        cairngorm3/trunk/libraries/NavigationTest/src/sample1/presentation/tasks/TimeTrackingPM.a s
        cairngorm3/trunk/libraries/ObserverParsley/.flexLibProperties
        cairngorm3/trunk/libraries/PersistenceTest/src/com/adobe/cairngorm/persistence/sample/pre sentation/CreateDatabasePM.as
        cairngorm3/trunk/libraries/PersistenceTest/src/com/adobe/cairngorm/persistence/sample/pre sentation/PeoplePM.as
        cairngorm3/trunk/libraries/Validation/src/com/adobe/cairngorm/validation/event/ValidatorG roupEvent.as
        cairngorm3/trunk/libraries/ValidationTest/src/SampleModelValidationWithCombos.mxml
        cairngorm3/trunk/libraries/ValidationTest/src/combo/ComboDomain.as
        cairngorm3/trunk/libraries/ValidationTest/src/combo/ComboDomainValidatorGroup.mxml
        cairngorm3/trunk/libraries/ValidationTest/src/combo/ComboPM.as
        cairngorm3/trunk/samples/insync/insync-basic/src/InsyncBasic.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-contacts/src/ContactsModule.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/InsyncModularExtendedShe ll.mxml
        cairngorm3/trunk/samples/insync/insync-modularExtended-shell/src/insync/presentation/Expe nsesPM.as
    Added Paths:
        cairngorm3/trunk/libraries/IntegrationDMS/src/com/adobe/cairngorm/CairngormIntegrationDMS Support.as
        cairngorm3/trunk/libraries/IntegrationRPC/src/com/adobe/cairngorm/CairngormIntegrationRPC Support.as
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/CairngormModuleSupport.as
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/CairngormModuleXMLSupport.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/CairngormNavigationSupport. as
        cairngorm3/trunk/libraries/ObserverParsley/src/com/adobe/cairngorm/CairngormObserverSuppo rt.as
    Removed Paths:
        cairngorm3/trunk/libraries/IntegrationDMS/src/com/adobe/cairngorm/CairngormIntegrationDMS Lib.as
        cairngorm3/trunk/libraries/IntegrationRPC/src/com/adobe/cairngorm/CairngormIntegrationRPC Lib.as
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/CairngormModuleLib.as
        cairngorm3/trunk/libraries/Module/src/com/adobe/cairngorm/module/ModuleXMLSupport.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/CairngormNavigationLib.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/landmark/EveryEn terDecorator.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/landmark/FirstEn terDecorator.as
        cairngorm3/trunk/libraries/ObserverParsley/src/com/adobe/cairngorm/CairngormObserverLib.a s

    Hi Karl,
    I'm sorry to barge into this dicussion. I've been trying to get in touch with you regarding Chrome Lib. Have sent a mail at the id given on the Chrome lib website. Kindly reply to that or give your mail id for contact.
    M Puns
    m_puns AT rediffmail DOT com

  • Passing events from Flash MX 2004 or Flash 8 to Authorware

    I would like to send event information, like a button press
    or reaching the end of the Flash move, to authorware. Can anyone
    help me?

    There is an example called 'Flash Nav' in the Show Me folder.
    Best Regards,
    Apurva
    http://www.apurvalawale.com/
    - "Home of alBrowser and Amigo"
    http://learning.apurvalawale.com/
    - "Learn authorware tips and tricks"
    http://amigo.apurvalawale.com/
    - "Interesting useful links from contributers
    .... search 'elearning' for example"
    "daelk" <[email protected]> wrote in message
    news:ekbvfs$rmj$[email protected]..
    >I would like to send event information, like a button
    press or reaching the
    >end of the Flash move, to authorware. Can anyone help me?

  • Other event images flash up when scrolling through an event

    When I am scrolling down though photos in an event the row of images below are not images from that event! For a split second other photos flash up from another event. The most confusing part is when I have clicked on a specific photo to enlarge it the mini scroll bar of images at the bottom of the enlarged photo are those 'other' event photos.
    For example: I was looking at family photos of Stonehenge, as I scroll down to see more Stonehenge in a split second photos of Paris flash up. When I click on my son at Stonehenge the images on the bottom of the screen are all of Paris, not Stonehenge.
    Is my iphoto corrupt? Do I have too many photos in my iphot library and it is getting "confused" trying to process all those images? or what?
    Thank you

    You need to launch iPhoto with the Option+Command keys held down and rebuild the library's thumbnails.  It may take several runs.
    OT

  • Event Parameters in WDA from Flash

    Hi experts
    I've alredy created a WDA with Flash inside in wich i send data from WDA and Flash make graphics.
    Now i need to interact from Flash to WDA sending an event with values.
    I found how to send event from Flash (fireEvent) and how to detect that event in WDA (adding and event) and get the values in WDA ; but that values are transfered just like the other context nodes, just with 'readOnly' property empty and in Flash these values are just public variables  (not  parameters in fireEvent).
    I see we can add parameters in WDA Event ,  does somebody knows where can i search about how to manage parameters in WDA Event received from Flash  (and how to send these parameters from Flash in the 'fireEvent') ? 
    Any help will be usefull.
    Best Regards
    Frank

    >does somebody knows where can i search about how to manage parameters in WDA Event received from Flash (and how to send these parameters from Flash in the 'fireEvent') ?
    You can add the parameters into the fireEvent method.  In this sample I have the Event name newDirections. I am adding the event parameter named dirString and the value is the variable dirS.  You pass event parameters in this name/value pair format.
    FlashIsland.fireEvent(this,"newDirections",{dirString:dirS});
    From the ABAP side I can retrieve the event parameter from within the Event Handler method of the controller as follows:
    data dir_results type string.
      dir_results =  wdevent->get_string( 'dirString' ).
      check dir_results is not initial.

  • How to stop events from firing

    helo..
    is there a way to stop an event from firing.. or making an effect event if it was raised..
    for example in my application.. i have a JList which has a ListSelectionListener and a PopupListener... when i right-click.. the populistener fires.. and also my selection (say i made a select-all-items) gets changed.

    Remove one if the listeners??
    /Kaj

  • [svn:osmf:] 14474: Adding a 'dispatchInitialChangeEvent' parameter to the ' watch' method in order to allow the initial change event from being dispatched, continued.

    Revision: 14474
    Revision: 14474
    Author:   [email protected]
    Date:     2010-02-28 23:53:31 -0800 (Sun, 28 Feb 2010)
    Log Message:
    Adding a 'dispatchInitialChangeEvent' parameter to the 'watch' method in order to allow the initial change event from being dispatched, continued.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/metadata/MetadataWatcher.as

    *Feedback*
    "Use the form below to send us your comments. We read all feedback carefully, but please note that we cannot respond to the comments you submit."
    http://www.apple.com/feedback/ipad.html
    We can complain about Apple's business decisions, but these discussions are user to user talk about possible solutions.
    Here are the places to report bugs:
    Get an account at
    http://developer.apple.com/  then submit a bug report to http://bugreporter.apple.com/
    Once on the bugreporter page,
       -- click on New icon
       -- See if you need to attach a log file or log files, clicking on Show instructions for gathering logs.  Scroll down to find the area or application that matches the problem.
       -- etc.

  • [svn:osmf:] 14473: Adding a 'dispatchInitialChangeEvent' parameter to the ' watch' method in order to allow the initial change event from being dispatched.

    Revision: 14473
    Revision: 14473
    Author:   [email protected]
    Date:     2010-02-28 23:45:28 -0800 (Sun, 28 Feb 2010)
    Log Message:
    Adding a 'dispatchInitialChangeEvent' parameter to the 'watch' method in order to allow the initial change event from being dispatched.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/metadata/MetadataWatcher.as

    Perhaps you're not handling the "EndOfStreamEvent" correctly/at all, and thus not freeing up the socket to listen for the "NewReceiveStreamEvent " after the initial stream has ended...
    ?

  • Changing the location of archive log from flash recovery area PLZ HELP!!!

    Hi All,
    My archive log is being stored in flash memory area which got full and the production server went down.
    alert log file details.....
    ORA-19809: limit exceeded for recovery files
    ORA-19804: cannot reclaim 43432960 bytes disk space from 2147483648 limit
    *** 2010-04-25 14:22:49.777 62692 kcrr.c
    ARCH: Error 19809 Creating archive log file to
    '/oracle/product/10.2.0/flash_rec
    overy_area/EDWREP/archivelog/2010_04_25/o1_mf_1_232_%u_.arc'
    *** 2010-04-25 14:22:49.777 60970 kcrr.c
    kcrrfail: dest:10 err:19809 force:0 blast:1I removed the files and started the database,
    Can someone kindly tell me as to how to avoid this problem in future by keeping archive log destination in flash recovery area.
    I want to change the location of archive log files, can someone please guide me as to hiow to do that
    I changed the size of flash recovery area for the time being, but i am afraid it will be full again!!
    SQL> select * from v$flash_recovery_area_usage;
    FILE_TYPE    PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILES
    CONTROLFILE                   0                         0               0
    ONLINELOG                     0                         0               0
    ARCHIVELOG                99.44                         0              57
    BACKUPPIECE                   0                         0               0
    IMAGECOPY                     0                         0               0
    FLASHBACKLOG                  0                         0               0
    6 rows selected.
    SQL> alter system set DB_RECOVERY_FILE_DEST_SIZE = 4G ;
    System altered.
    SQL> select * from v$flash_recovery_area_usage;
    FILE_TYPE    PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILES
    CONTROLFILE                   0                         0               0
    ONLINELOG                     0                         0               0
    ARCHIVELOG                49.72                         0              57
    BACKUPPIECE                   0                         0               0
    IMAGECOPY                     0                         0               0
    FLASHBACKLOG                  0                         0               0
    6 rows selected.regards,
    Edited by: user10243788 on Apr 25, 2010 6:12 AM

    user10243788 wrote:
    Hi All,
    My archive log is being stored in flash memory area which got full and the production server went down.
    alert log file details.....
    ORA-19809: limit exceeded for recovery files
    ORA-19804: cannot reclaim 43432960 bytes disk space from 2147483648 limit
    *** 2010-04-25 14:22:49.777 62692 kcrr.c
    ARCH: Error 19809 Creating archive log file to
    '/oracle/product/10.2.0/flash_rec
    overy_area/EDWREP/archivelog/2010_04_25/o1_mf_1_232_%u_.arc'
    *** 2010-04-25 14:22:49.777 60970 kcrr.c
    kcrrfail: dest:10 err:19809 force:0 blast:1I removed the files and started the database,
    Can someone kindly tell me as to how to avoid this problem in future by keeping archive log destination in flash recovery area.
    I want to change the location of archive log files, can someone please guide me as to hiow to do that
    I changed the size of flash recovery area for the time being, but i am afraid it will be full again!!
    SQL> select * from v$flash_recovery_area_usage;
    FILE_TYPE    PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILES
    CONTROLFILE                   0                         0               0
    ONLINELOG                     0                         0               0
    ARCHIVELOG                99.44                         0              57
    BACKUPPIECE                   0                         0               0
    IMAGECOPY                     0                         0               0
    FLASHBACKLOG                  0                         0               0
    6 rows selected.
    SQL> alter system set DB_RECOVERY_FILE_DEST_SIZE = 4G ;
    System altered.
    SQL> select * from v$flash_recovery_area_usage;
    FILE_TYPE    PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILES
    CONTROLFILE                   0                         0               0
    ONLINELOG                     0                         0               0
    ARCHIVELOG                49.72                         0              57
    BACKUPPIECE                   0                         0               0
    IMAGECOPY                     0                         0               0
    FLASHBACKLOG                  0                         0               0
    6 rows selected.regards,
    Edited by: user10243788 on Apr 25, 2010 6:12 AMPointing the archive log dest (and/or the FRA) to a new location, or enlarging them, will do no good if you are not performing regular housekeeping on the archivelogs. You will just keep knocking down the same problem over and over.
    If you simply delete the archivelogs at the OS level, the database will never know about it and it will continue to think the destination is full, based on records kept in the control file.
    For regular housekeeping, you need to be doing something similar to this in rman:
    run {
      backup archivelog all not backed up 1 times tag='bkup_vlnxora1_arch';
      delete noprompt archivelog all backed up 1 times to device type disk;
    run {
    delete noprompt obsolete;
    crosscheck archivelog all;
    delete noprompt expired archivelog all;

  • Event From Directory Change

    Is there a way I can get an event from a directory change? I've looked into FileSystemWatcher but from what I could gather, that would only notify my of a change within a directory. I wanted something that tells me exactly what changed. i.e. if a new file was added, changed, renamed etc. Instead of throwing a general event, where I would than have to compare the changes to the previous state, i.e. file names within the directory, file sizes etc. Basically it would save alot of post processing work. Since I haven't seen anything of this nature in the forums, it might not be posible, but I thought I'll ask just incase.
    Thanks
    Kas

    Be advised that individual applications can generate multiple FileSystemWatcher events for what you as a consumer would treat as a single event.
    Something as simple as saving a file in notepad can generate 7 or 8 events.
    The link below is not LabVIEW related, but does point out how FileSystemWatcher works...
    http://www.codeproject.com/Articles/58741/FileSystemWatcher-Pure-Chaos-Part-2-of-2
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Can I change the Lion iCal Monthly View "New Event" from All Day?" Default?

    I have tried all the posted suggestions to change the iCal "new event" preferably in Monthly View from the default of "All Day" but to no avail. This is a current issue so old terminal changes do not seem to work. Anyone have the same issue?

    I also have an issue  with not being able to change  "end times". Four instance if I schedule an event at 9:00 AM iCal defaults to 10:00 AM. I'll click the end time to change it to 4:00 PM  and the time will not change. It defaults back to the same start time or one hour later. I can get the drop down list to appear, but the options are not enough to schedule anything over 3 hours.
    Nor can  change the "add day" default.
    I appreciate any advice/assistance you guys have.
    Thanks!

Maybe you are looking for

  • Is it possible to create a column in  runtime?

    Hi, I created a application that connect with Access database. I just wonder is it possible for user to create a column in runtime, because the application need this kind of interaction. Many thanks, Ann

  • GUI_UPLOAD to upload flat file to internal table

    Hi Experts, I have to upload a flat file which has multiple records ,from a local server.The fields in records are ~ saperated. Presently i am only looking into uploading the flat file into internal table. I have done the following coding; TYPES: BEG

  • ORA-01041: internal error. hostdef doesn't exist

    Linux Advanced Server + Oracle 9.2.0.1.0 Trying to sqlplus conn / as sysdba Error ORA-01041: internal error. hostdef doesn't exist What does it mean ? what I should do to be able to connect to the database. TNSNAMES.ora seems fine Linstener is up and

  • Hard drive replacement on my Portege A200

    Hi, i would like to replace the hard drive in my a200 with a larger one but i do not know how to remove the current one i was wondering if any of you guys could help me? thanks james

  • Error message  IPhoto 5.04 ' a unofficial Photo library'

    When I try to start up IPhoto it gives the error message "there is no officel photo library of IPhoto please restart with IPhoto 2 of 4 Any off you have any ideas Gr Thijs