Need help with clearing on screen data

Hi all,
I have a transaction which works like SM30 (table maintenance). In my main screen, I have 50 blank fields (created by appending 50 blank rows to an internal table) on the ALV grid for user new entries with 2 buttons: Save and Delete. Once the user has entered the data and click on Save, it will validate the entries and put into internal table before saving into the database.
The problem arise when I want to delete the entries. When user click on Delete, it will clear the entries in the selected row. My problem is, how do I clear the data on the screen since this data is not yet inserted into internal table? These entries are new entries just entered by the users and not being put into internal table or in the database yet.

Once user press the delete button ,
in the user_command event you need to
first insert the values to internal table with delete flag in the internal table , then delete the line the user selected for delete,
then call
method "g_grid->refresh_table_display" after row has been deleted.
aRs

Similar Messages

  • Hi guys need Help with Displaying Splash Screen?!!?

    Hi Guys.
    Sorry for the last incomplete post my mistake!
    I need help displaying a splash screen as an advertisment or something before i have my main application run.
    Here is the code i wrote (it works as if it were a seperate application)
    package MajourProject;
    import java.awt.AWTException;
    import java.awt.Dimension;
    import java.awt.Robot;
    import java.awt.Toolkit;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JProgressBar;
    import javax.swing.JScrollPane;
    import javax.swing.JWindow;
    * @author Matt
    public class SplashScreen extends JWindow
        public SplashScreen()
            int UpTime = 20000;
            Start(UpTime);
        public void Start(int UpTime)
            ImageIcon ii = new ImageIcon("src/1.jpg");
              JScrollPane jsp = new JScrollPane(new JLabel(ii));
                    JProgressBar Bar = new JProgressBar();
              getContentPane().add(jsp);
              setSize(853,303);
              centerScreen();
              setVisible(true);
                   try
                                Thread.sleep(20000);
                               dispose();
                   catch(Exception IE)
            private void centerScreen()
                    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
                    int x = (int) ((d.getWidth() - getWidth()) / 2);
              int y = (int) ((d.getHeight() - getHeight()) / 2);
              setLocation(x, (y-100));
           public static void main(String [] args)
                 new SplashScreen();
    }but i now have a problem as i already have a main application done as i wrote this seperately. I now need to combine the two together. So what i did was in my Main Application wrote:
    Splash_Screen SS = new Splash_Screen();it then runs my Splash Screen class which i re-wrote to look as such:
    package MajourProject;
    import java.awt.AWTException;
    import java.awt.Dimension;
    import java.awt.Robot;
    import java.awt.Toolkit;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JProgressBar;
    import javax.swing.JScrollPane;
    import javax.swing.JWindow;
    * @author Matt
    public class SplashScreen extends JWindow
        public SplashScreen()
            int time = 15000;
            Start(time);
        public void Start(int UpTime)
            ImageIcon ii = new ImageIcon("src/1.jpg");
              JScrollPane jsp = new JScrollPane(new JLabel(ii));
                    JProgressBar Bar = new JProgressBar();
              getContentPane().add(jsp);
              setSize(853,303);
              centerScreen();
              setVisible(true);
                   try
                                Thread.sleep(20000);
                                dispose();
                   catch(Exception IE)
            private void centerScreen()
                    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
                    int x = (int) ((d.getWidth() - getWidth()) / 2);
              int y = (int) ((d.getHeight() - getHeight()) / 2);
              setLocation(x, (y-100));
    }it obviously runs the default constructor which then runs the other methods in the class but it doesn't seem to show can anybody help me to find out whats wrong? It seems to be there just before the main application launches but only for a split second. And when i am waiting while the thread is sleeping the area i have defined the Content pane for he cursor goes to the loading icon! I don't know if this makes any sence to you but if you can help me it would be most apreciated.
    Thanks.

    SpearOne wrote:
    Hi Encephalopathic
    why would it work if i put it in it's own application surely it wouldn't be caused by this thread.sleep?? everything after it is in fact put to sleep. In its "own" application, nothing happens after it is displayed.
    if it is the problem then could you please give me some code to add quickly to test??
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JProgressBar;
    import javax.swing.JScrollPane;
    import javax.swing.JWindow;
    import javax.swing.Timer;
    public class SplashScreen extends JWindow
      private static final String IMAGE_PATH = "src/1.jpg";
      private static final int UP_TIME = 15000;
      public SplashScreen()
        Start();
      public void Start()
        ImageIcon ii = new ImageIcon(IMAGE_PATH);
        JScrollPane jsp = new JScrollPane(new JLabel(ii));
        //JProgressBar Bar = new JProgressBar();
        getContentPane().add(jsp);
        setSize(853, 303);
        centerScreen();
      private void centerScreen()
        Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
        int x = (int) ((d.getWidth() - getWidth()) / 2);
        int y = (int) ((d.getHeight() - getHeight()) / 2);
        setLocation(x, (y - 100));
      public static void main(String[] args)
        final JFrame frame = new JFrame("Main Frame");
        frame.setPreferredSize(new Dimension(300, 200));
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo(null);
        final SplashScreen splash = new SplashScreen();
        splash.setVisible(true);
        Timer swingTimer = new Timer(UP_TIME, new ActionListener()
          public void actionPerformed(ActionEvent e)
            splash.dispose();
            frame.setVisible(true);
        swingTimer.setRepeats(false);
        swingTimer.start();
    }

  • Need help with code for adding dates to form

    Hello forum goers
    I'm new to making forms and figured out how to auto add the date, however I need the form to change the date for every copy made.
    For example today is 06/08/2012 if I print 10 copies of the form it will output 10 pages ranging from 06/08/2012 to 06/17/2012. If code exists to do this I would be very gratefull to whoever helps, I also wouldn't mind if that is not possible for manually inputing the start / end dates.
    Currently I print 15-30 copies of the form and hand write each of the dates but I'm just getting to busy to do that. I also cannot print one a day it must be in batches.
    Thanks in advanced.

    What you are asking for is more complex than just setting the current date. Each time the form prints it has to know that it has to change the date. I would suggest doing this.
    First, setup a document level script to set the date to the current date. I suspect that you have already done this?
    Next, Create a "DidPrint" document action to increment the date.  To do this the script will need to scan the current text value of the date, add one day to it, and then reformat it.  You'll find information on this type of scripting in these articles:
    http://acrobatusers.com/tutorials/working-with-date-and-time-in-acrobat-javascr
    ipt
    http://acrobatusers.com/tutorials/working-with-date-and-time-in-acrobat-javascr
    ipt-part-2
    http://acrobatusers.com/tutorials/working-with-date-and-time-in-acrobat-javascr
    ipt-part-3
    Since the increment happenes in the Did Print you will need to print each copy individually. If you enter 10 copies in the print dialog it won't work. You have to print one at a time.  You can automate this activity with a console script.
    One of the advantages of incrementing in the DidPrint is that you can also manually enter a date and it will increment from there.
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)
    Having trouble, Why Doesn't my Script Work?

  • Need Help with inserting a screen shot

    Can someone pleassse help me?! If any of you are familiar with popular youtubers and how in their videos they include screen shots of facebook or twitter questions and they have them so they roll across the bottom  of the screen, can you please help me! If anyone knows how to do this in Imovie 11 it would be HUGELY appreciated! Because when i try the picture in picture settings it zooms the screen shot so its massive and its also not an oblong shape anymore (like the shape of a facebook reply) i also need help at how this would transition to roll in from one side of the screen to the other?!
    PLEASE HELP ME!!

    I think it is possible to do this in iMovie, although perhaps easier in Final Cut Pro X, which I would guess that iJustine is using.
    First, I would take a still image of my video at the points where I want to superimpose a graphic. Since she is mostly superimposing graphics on her talking head, a single still might be sufficient.
    For getting a still out of iMovie, see my User Tip here.
    https://discussions.apple.com/docs/DOC-3231
    Now, you will want to take this still to a photo editor that allows you to edit layers. Use PhotoShop if you have it. If you do not already have PhotoShop, it can be rather expensive, so I would suggest a tool like Acorn or Pixelmator, which I think are available in the Mac App Store.
    Create a project in the dimensions of your iMovie still, e.g. 1920x1080.
    You would put the still on the bottom layer, so you know where to put yoru graphics. You would position the graphic or screen grab at the next layer up. Now I would export the upper layer only as a PNG file. The PNG file has an Alpha Channel, which means you will see only the graphic and not the still in the background.
    The main thing Final Cut Pro would give you would be the easy ability to have multiple graphics on the screen at the same time.
    Now you can drag this PNG file into iMovie and drop it on the project clip where you want it to appear. A popup menu will appear. Choose Cutaway.
    There are probably other ways to do this, but that is the way I would do it.

  • Need help with ipohne, white screen!!

      i got given a iphone and had to get the screen fixed on it so i bought a kit , but the only thing is when its turned on it only lights up with a white screen. you can touch the screen and it makes noises and so fourth but you cant see anything but a white screen, i have no clue what to do ... HELP PLEASE!!!

    Since the screen turns off see if:
    - Placing the iPod in Recovery mode will allow a restore via iTuns.
    - Next try DFU mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    If you still have the problem the it appears that either the drop caused other damage or upi damaged the iPod or did something incorrect whenyou replaced the screen
    BTW, the white screen of death is when the screen turns white AND you can turn it off.

  • Urgent-Need help with code for Master data enhancement

    hi Experts,
    I have appended YMFRGR field(Table MARC) to 0MAT_PLANT_ATTR datasource.
    The key fields in the MARC table are MATNR and WERKS.Can anybody help with the user exit to populate this field,as am pretty new to ABAP.
    Thanks in advance

    Hi,
    go through this link which has the similar problem:
    https://forums.sdn.sap.com/click.jspa?searchID=1331543&messageID=2794783
    hope it helps.
    Thanks,
    Amith

  • Need help with RANK() on NULL data

    Hi All
    I am using Oracle 10g and running a query with RANK(), but it is not returning a desired output. Pleas HELP!!
    I have a STATUS table that shows the history of order status.. I have a requirement to display the order and the last status date (max). If there is any NULL date for an order then show NULL.
    STATUS
    ORD_NO | STAT | DT
    1 | Open |
    1 | Pending |
    2 | Open |
    2 | Pending |
    3 | Open |1/1/2009
    3 | Pending |1/6/2009
    3 | Close |
    4 | Open |3/2/2009
    4 | Close |3/4/2009
    Result should be (max date for each ORD_NO otherwise NULL):
    ORD_NO |DT
    1 |
    2 |
    3 |
    4 |3/4/2009
    CREATE TABLE Status (ORD_NO NUMBER, STAT VARCHAR2(10), DT DATE);
    INSERT INTO Status VALUES(1, 'Open', NULL);
    INSERT INTO Status VALUES(1, 'Pending', NULL);
    INSERT INTO Status VALUES(2, 'Open', NULL);
    INSERT INTO Status VALUES(2, 'Pending',NULL);
    INSERT INTO Status VALUES(3, 'Open', '1 JAN 2009');
    INSERT INTO Status VALUES(3,'Pending', '6 JAN 2009');
    INSERT INTO Status VALUES(3, 'Close', NULL);
    INSERT INTO Status VALUES(4, 'Open', '2 MAR 2009');
    INSERT INTO Status VALUES(4, 'Close', '4 MAR 2009');
    COMMIT;
    I tried using RANK function to rank all the orders by date. So used ORDER BY cluse on date in descending order thinking that the null dates would be on top and will be grouped together by each ORD_NO.
    SELECT ORD_NO, DT, RANK() OVER (PARTITION BY ORD_NO ORDER BY DT DESC)
    FROM Status;
    ...but the result was something..
    ORD_NO |DT |RANKING
    *1 | | 1*
    *1 | | 1*
    *2 | | 1*
    *2 | | 1*3 | | 1
    3 |1/6/2009 | 2
    3 |1/1/2009 | 3
    4 |3/4/2009 | 1
    4 |3/2/2009 | 2
    I am not sure why didn't the first two ORD_NOs didn't group together and why ranking of 1 was assigned to them. I was assuming something like:
    ORD_NO |DT |RANKING
    *1 | | 1*
    *1 | | 2*
    *2 | | 1*
    *2 | | 1*
    3 | | 1
    3 |1/6/2009 | 2
    3 |1/1/2009 | 3
    4 |3/4/2009 | 1
    4 |3/2/2009 | 2
    Please guide me if I am missing something here?
    Regards
    Sri

    Hi,
    If i well understood, you don't need rank
    SELECT   ord_no, MAX (dt)KEEP (DENSE_RANK LAST ORDER BY dt) dt
        FROM status
    GROUP BY ord_no
    SQL> select * from status;
        ORD_NO STAT       DT
             1 Open
             1 Pending
             2 Open
             2 Pending
             3 Open       2009-01-01
             3 Pending    2009-01-06
             3 Close
             4 Open       2009-03-02
             4 Close      2009-03-04
    9 ligne(s) sélectionnée(s).
    SQL> SELECT   ord_no, MAX (dt)KEEP (DENSE_RANK LAST ORDER BY dt) dt
      2      FROM status
      3  GROUP BY ord_no;
        ORD_NO DT
             1
             2
             3
             4 2009-03-04
    SQL>

  • Need help with Responsive HTML5 screen layout in RoboHelp HTML 11

    I have a few questions/issues regarding screen layouts for Responsive HTML5 output in RoboHelp HTML 11.
    First off, I decided to just use the Theme1_Standard layout that came with the program (only other default option was Theme2_Government) and started customizing the layout. I originally added a company logo to the 'Header' component in the Customization dialog, but have since decided to remove it. I can't seem to do this from the dialog, so I tried just deleting the image file from the whole project. The file is gone, but the logo is still there. This is only displayed in the header when a topic is displayed, it does not appear in the header at the TOC, Index, Search screen, etc. How do I get rid of this???
    Secondly, the text in the header for the topic screens appears differently than the one on the screens for the TOC, Index, Search, etc. In the former of these, the header is displayed in maroon text in a much smaller font, similar to that used in the topics. In the latter, the topic is displayed based on what I configured in the Layout Customization dialog; much larger in white text on a black background. In each case the heading text serves as a link to the default display topic shown when the help file is launched, which is fine. However, how do I get the header to be consistent across all screens (topics and TOC, Index, etc. alike)???
    As a result of these issues with the Theme1_Standard layout, I'm trying to import a different Responsive HTML5 screen layout than the two provided within RoboHelp HTML 11 (Standard and Government). I did some digging in the program help and found another layout I'd like to use (Theme3_Black.zip) at RoboHelp screen profiles and layouts. I tried importing the new layout, but it's looking for a .SLZ file and the only one in the files that came with the ZIP file is SLZConfig.xml, and I don't think that's what I need, though quite honestly, I don't know.
    I extracted the contents of the ZIP folder to a folder in the !ScreenLayout! folder within the RoboHelp project, but when I open the project, I don't see Theme3_Black as an option. I need to figure out how to import this screen layout because the color scheme matches the one used in the program for which I am writing the help. How do I import and apply this other screen layout???
    Any tips, tricks, or guidance on any or all of these items would be GREATLY appreciated.
    Thanks much in advance,
    Dave

    Item two of the original post is also something I am having issues with:
    "Secondly, the text in the header for the topic screens appears differently than the one on the screens for the TOC, Index, Search, etc. In the former of these, the header is displayed in maroon text in a much smaller font, similar to that used in the topics. In the latter, the topic is displayed based on what I configured in the Layout Customization dialog; much larger in white text on a black background. In each case the heading text serves as a link to the default display topic shown when the help file is launched, which is fine. However, how do I get the header to be consistent across all screens (topics and TOC, Index, etc. alike)???"
    We have the text toggle between red, white and blue depending upon the topic selected. In the customize Selected Layout we have the title color set to white. It seems to think that it is a link and I would like to know how I can force the text to be white and to stay that way no matter which topic is selected.

  • Really need help with a loading screen

    Ok, here's my problem, I'm making a puzzle game and I can't seem to make my loading screen work with my main menu. The loading screen is represented by an image filling up with colour where the colouring takes place by means of a thread (and there's a string as well that paints the %) . Now the loading screen is supposed to appear after i click the start button from the main menu and after completely filling up (or when the tread dies) the game panel is suppposed to be show on screen. Between the loading I initialize all the components for the game. Now, when I press the start button, the whole screen freezes (for the duration of the loading thread) after which the game screen appears. What puzzles me more is that if i don't add the game screen the loading screen works like a charm.
    Here's some of the code:
    public void actionPerformed(ActionEvent e){
    if(e.getActionCommand().compareTo("Start")==0){
    //initializing the panel for the loading
    ds=new Load();
    //initializing the thread that makes the panel rainbow dream
    anm=new Ompy();
    x.remove(pent); //pent is the jpanel containing the main menu with the customised buttons, and x is the reference to the current JFrame's content pane
    x.add(ds);
    pack();
    /* MediaTracker tracker=new MediaTracker(this);
    tracker.addImage(ds.pic.im,2); //i tried using a media tracker to wait for the image of the loading jpanel
    tracker.addImage(ds.fill.im,2);
    try{tracker.waitForID(2);}
    catch(InterruptedException ie){} */
    anm.start(); //i start the thread
    //without the folowing code the loading screen works perfectly
    some code
    Winx gs=new Winx(); //the panel containing the game interface
    some code
    while(anm.isAlive()){}
    x.remove(ds); // i remove the loading screen
    x.add(gs); //i add the game screen
    anm=null;
    ds=null;
    setVisible(true);
    gigaslave.requestFocusInWindow();
    pack();
    //here ends the code that shadows my loading screen :((
    else {System.exit(0);}}
    }I appreciate your help.

    Thanks for all your help ...this is what i have so far and am working with:
    import javax.swing.JOptionPane;
    public class TVRemote{
         int volume = 5;
         int channel = 5;
         public void channelUp(){
              if(channel < 25){
                   channel++;
         public void channelDown(){
              if(channel > 1){
                   channel--;
         public void volumeUp(){
              if(volume < 10){
                   volume++;
         public void volumeDown(){
              if(volume > 1){
                   volume--;
    public class VCRemote extends TVRemote{
         String tape = null;
         String mode = "Stop";
         public void insertTape(String t){
              tape = t;
         public void ejectTape(){
              tape = null;
         public void setMode(String m){
              mode = m;
         public String getMode(){
              return mode;
    public String getMode(){
              if(tape == null){
                   System.out.println("There is no tape");
              return mode;
    I know it does have to be set as 2 files....I still need to put in a rewind and fast forward option would that be done the same way that public void insetTape is done? also I was wondering how i will interface it with the user? Cause the only output i see is a display message that there isn't any tape in the vcr.
    Thankgs again for everyones help.

  • Need help with how to store data in array in from reading file

    i have a file named xxx.txt
    i need to retreive data from that file. the data that i want to retrieve is enclosed with << >>
    temp xxx-123 ccc << 90.5>>
    haha xxx-563 sss 85.2
    after a few lines, the another record appear.
    temp2 xxx-123 ccc << 190.5>>
    haha2 xxx-563 sss 885.2
    i would like to record down the data, 90.5 & 190.5, how do i go about doing so, will appreciated it if someone would guide me along. thanks

    After you have read a line from the file either
    find the location of << and >> and substring the stuff in between or
    use regex (regular expression) however this is advanced and may be beyond your level of understanding.

  • Need help with dead blackberry / recovering data

    Device: BlackBerry Curve 8320 (Tmobile)
    A few days ago my BB Curve 8320 spontaneously just turned off and would not turn on again.  No blinking light, nothing.  Battery was fully charged, the phone is only 2 months old, and was not damaged in any way.  Battery was pulled out and re-inserted no luck.  Phone taken to T-mobile store and phone tested with new battery, and still no progress.  T-mobile replaced the phone free of charge. 
    I am struggling to recover my addressbook, text messages, and photos from the old device.  Every once in a while when the phone is plugged into the charger, the old device will display a battery with a diagnol red line through it.  I have attempted to use the desktop manager to recover the data, but again no luck.  Most of the time, it does not recognize the phone, and I have tried what has been suggested on multiple forums, with taking the battery out, catching the desktop manager for the split second it recognizes the device on the usb port.  I have been successful with that, but it won't let me sync or backup the device.  It allows me to load the application loader, but when i do this, it prompts me for .alx type application loader files, even though i have downloaded the device manager software from t-mobile, so I am unable to re-load the OS.  I also attempted to use the switch device wizard.  This also seemed like it was working.  I was able to connect both curves to my computer through different USB ports and it seemed like it was doing something, but when it's all done with the process, my new device still does not have my old addresses or text messages. 
    If anyone has any suggestions / advice on restoring my old device without losing the onboard data or some way to access the data so I can import that into my new curve, I would greatly appreciate it.
    Thanks!

     I HAD A BB CURVE 8320, I TRY ALL THE PROGRAMS ANYTHING WORK. MY BB TURN ON N TURN BACK OFF. I TRY LETTING THE BRAND NEW BATTERY SEAT OUT FOR 3O SECONDS STILL DIDNT WORK. WHAT SHOULD I DEW SOMEONE PLZ HELP ME.

  • I need help with clearing my ipod touch

    I swiped my ipod touch clean to sell it and now its requiring a passcode. How do I clear it? I have tried every password I could imagine and now I am locked out.

    Try and force iPod into Recovery Mode; that will by pass the passcode.
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3.While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: Data will be lost. You may have to repeat the above many times.

  • Need help with new display screen

    I'm using premier pro and want to get a large display screen, I've heard a lot about the new Apple 24" LCD and the Dell 24" UltraSharp 2408WFP...anything else out there thats as good?? Pros? Cons?
    Thanks!
    Nick

    I found this happened to my phone too after the ios7 updates. Solved by  turning off auto-brightness. Since then all has been fine, just have to  manually brighten/dim screen when I need to

  • Need help with log in screen

    My log in screen(after clicking the skype icon) will only let me type in my username and password but won't let me click any buttons or boxes. I have the free version and it worked on my previous computer. I already tried reinstalling it and keep getting the same thing. Please help!!

    jasmine_taulbor wrote:
    My log in screen(after clicking the skype icon) will only let me type in my username and password but won't let me click any buttons or boxes. I have the free version and it worked on my previous computer. I already tried reinstalling it and keep getting the same thing. Please help!!
    Do you have all Windows updates and updates to any hardware devices by the manufacturers?
    What version of IE ("Internet Explorer") do you have? You can tell by opening a Internet Explorer Browser window and then doing:
    Help -> About Internet Explorer
    About Me You can also use a IP Camera as your camera for Skype video Example Instructions

  • Need help with Share My Screen tool in InDesign CS5.5

    I am trying to use the screen sharing tool and keep getting an error message, "Updating your account. We are currently updating your account. Please wait a few minutes and try again." How do I get past this?

    Thank you Bob. I had heard they killed it in CS6 but thought it might still work in CS5. We did try using Google Plus and were able to see other docs but not our InDesign doc (it appeared black). We thought maybe Adobe wanted us to buy their product.... Maybe we should try it again, or another one. Are you familiar with any of these?
    http://www.makeuseof.com/tag/12-excellent-free-screen-sharing-and-remote-access-tools-you- havent-heard-of-yet/
    He gives 4 out of 5 stars to
    Crossloop
    Yugma SE For Skype
    Mikogo 4.5 stars

Maybe you are looking for

  • Blurred preview image when dragging playhead in Animation Timeline

    Hi, when I move the playhead (of the Animation Timeline) by hand back and forth, the image get's blurred untill I stop dragging. This is really annoying since I need to draw and animate some small shapes in pixel perfect manner and can't see the diff

  • Updated iphone4 software on a different computer, now my apps close immediately

    I recently plugged my iphone into my mothers computer just to update my software. I didn't sync anything.  Now once I open any app on my iphone they close immediately. What do I do?

  • Lower Cost P2 Media

    "Panasonic announced today a new series of memory cards called microP2 card, which have an SD card form factor.   The simultaneous introduction of a microP2 Card Adaptor assures that the new series of 64GB and 32GB microP2 cards will operate in curre

  • Error in SM58 on XI box

    Hi, While trying to post IDocs to an R3 system, getting the following error in sm58 - 'Transactional RFC' transaction 'PASSWORD LOGON NO LONGER POSSIBLE'. But when I do a connection test from SM59, to the corresponding RFC destination listed in the r

  • Downloaded Firefox update and now will not open.

    For months I was prompted to download the update. I finally did so this morning. After the reboot, I went to Firefox with no problem, then closed the program. Later I clicked the Icon to go back in, and it would not reload. The activity bar and task