Resize applet - more info

I want to be more specific: i have a class that extends applet to this class i added two panels. to one of the panels i added 100 buttons, to the other 4 labels.
i have also a class that extends frame, in order to run my applet as an application. i added to this frame my applet, when i create a new instance of the applet the constructor add's all the panels and buttons.
In order that when i resize the frame also the applet including all its panels and buttons will be resized, i added to the frame a componentlistener and called setsize in my applet with the appropiriate dimenstion, it seemd to work, but the panels didnt resize, so i overlapped in my applet the setsize method and added pnael.setsize for the two panels but it still doesnt work.What is the right way to do this??

>
In order that when i resize the frame also the applet
including all its panels and buttons will be resized,
i added to the frame a componentlistener and called
setsize in my applet with the appropiriate dimenstion,you don't need a componentlistener - the LayoutManager of the Frame (a BorderLayout) takes care of the resizing of the applet
it seemd to work, but the panels didnt resize, so i
overlapped in my applet the setsize method and added
pnael.setsize for the two panels but it still doesnt
work.What is the right way to do this??wookash is right, you'll need to set the correct LayoutManager in your applet (its currently a FlowLayout)
I think you should use an GridLayout in the Applet
for example:
myApplet.setLayout(new GridLayout(1,2));
myApplet.add(panel1);
myApplet.add(panel2);

Similar Messages

  • When I open about this mac - more info and I switch through the tabs (display,memory,storage,support,service) it lags (fps drops, animation looks choppy not smooth). Why does this happen? (over 300 gb free,same programs installed,free desk-downloads)

    When I open about this mac -> more info and I switch through the tabs (display,memory,storage,support,service) it lags (fps drops, animation looks choppy not smooth) even though all the mac (programs , interface ) works smooth . Why does this happen? (over 300 gb free,same programs installed,free desktop-downloads -no garbage there- everything neat and tidy.) Need some help. Only there it the animations goes like 2 fps and is not smooth. I do not understand why because the programs are the same so its the usage. Nothing is changed, yet i experience this little issue for a couple of days.

    OK, I'm confused. When I do About this Mac > More Info in OS10.9, I don't see any animation other than the window resizing. Is that the animation you are describing?
    Which if any of the following apply to your computer:
    1) Are you running any anti-virus/internet security applications?
    2) Are you running any "cleaning/tune-up/optimizations" applications?
    3) Any peer-to-peer or torrent downloading software?
    4) Any third-party disk backup software that came bundled with an external hard drive?
    5) Any online backup scheme other than iCloud (Carbonite; GoogleDrive; MS One Drive)?
    6) Did your financial institution ask you to install Trusteer EndPoint Protection (also known as Trusteer Rapport)?

  • Problem "resizing" applet

    Can someone please help me with resizing an applet. I can't figure out how to decrease or increase the applet more than once. If the "smaller" button is clicked, the applet decreases in size only once. If the "bigger" button is clicked, the applet increases only once. What I need to accomplish is that everytime the "smaller" button is clicked, the size of the applet (both width and height) should be decreased by 10 pixels and everytime the "bigger" button is click, the size of the applet (both width and height) should be increased by 10 pixels. I have attached the code below. Any help will be appreciated....Thanks in advance.
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Resizable extends Applet implements ActionListener {
    int apWidth = 0;
    int apHeight = 0;
    private Label myLabel;
    private TextField myText;
    private Button sButton;
    private Button bButton;
    public void init() {
    apWidth = getSize().width;
    apHeight = getSize().height;
    myLabel = new Label("Applet Size Is: ");
    add(myLabel);
    myText = new TextField(8);
    myText.setText("200 100");
    myText.setEditable(false);
    add(myText);
    sButton = new Button("smaller");
    sButton.addActionListener(this);
    add(sButton);
    bButton = new Button("bigger");
    bButton.addActionListener(this);
    add(bButton);
    public void actionPerformed(ActionEvent e) {
    if (e.getSource() == sButton) {
    myText.setText("30 30");
    this.setSize((apWidth - 10), (apHeight - 10));
    else {
    myText.setText("90 90");
    this.setSize((apWidth + 10), (apHeight + 10));
    }

    not sure about this but try this:
    public boolean actionPerformed(ActionEvent e) {
    if (e.getSource() == sButton) {
    myText.setText("30 30");
    this.setSize((apWidth - 10), (apHeight - 10));
    else {
    myText.setText("90 90");
    this.setSize((apWidth + 10), (apHeight + 10));
    return(true);

  • Since I downloaded Apple's latest operating system, whenever I try to open Illustrator I get a message that I need to install legacy Java SE6 runtime and to click "more info" to do this. When I click "more info" I get a blank window. What should I do

    Since I downloaded Apple's latest operating system, whenever I try to open Illustrator I get a message that I need to install legacy Java SE6 runtime and to click "more info" to do this. When I click "more info" I get a blank window. What should I do

    Hi,
    I had the same problem after upgrading to Yosemite. Illustrator CS6 wouldn't open. I got a message saying I should 'install legacy Java SE6 runtime'.
    The link didn't work - it lead to a blank page.
    So I downloaded Java8 (latest version) from Oracle but didn't install it. Something told me this was not the right way to go (the problem was with Java SE6, not 8). I then called Apple (in the Netherlands, were I live) for help. I got none. The best they could do was blaming Adobe for the problem or me, for not having the latest Adobe CC app. Rubbish.
    And then, magic. I tried to open Illustrator again, got the pop up message but this time the link worked. It took me to an official Apple page, with a link to download Java for OS X 2014-001. The problem is now solved.
    If curious, this is the explanation Apple gives for the problem:
    'Java for OS X 2014-001 includes installation improvements, and supersedes all previous versions of Java for OS X. This package installs the same version of Java 6 included in Java for OS X 2013-005. On systems that have not already installed Java for OS X 2012-006 or later, this update disables the Java SE 6 applet plug-in. To use applets on a web page, click on the region labeled 'missing plug-in' to download the latest version of the Java applet plug-in from Oracle.'
    See http://support.apple.com/kb/HT6133 for more details about this update.
    See http://support.apple.com/kb/HT1222 for information about the security content of this update.

  • Request more info directly from my webpage by send thru email

    I am building a realtor site display data by asp, would like
    to put a feature where visitor can click on a link and a pop-up
    window with form where visitor can enter their contact info to
    request more info about a porperty.............
    I tried to creat a form page, with link and target to
    _blank.: it won't work properly in "firefox2.0" instead of pop-up
    it goes to next new tab.
    I tried to add behavior with open browser window: it doesn't
    work properly neither........
    anyone have the solutions please..........

    do you want the form in a popup window- or the results of a
    form in a popup
    window??
    if the later- here's an older posting. No idea if newer
    browser's window
    blocking features would cause it to fail.
    if you want it in a popup window, the steps below should
    work.
    1)change the form tags to add a target:
    <form action="server_side_script.whatever"
    target="thenewwindowname"
    method="POST">
    {this will direct the script's results to the new window we
    make down below}
    2)add a behavior to the submit button
    Select the submit button, and add Open Browser Window
    behavior, triggered
    onClick
    Set the window's parameters/chrome as wanted.
    NAME this new window in the dialog box, and have the target
    attribute in the
    form's action use this window name.
    <input type="submit" value="send the stuff"
    onClick="MM_openBrWindow('fillerpage.html','thenewwindowname','toolbar=yes,
    s
    crol
    lbars=yes,resizable=yes','100','100','true')>
    {this creates the 100x100 window. We don't want to put
    server_side_script.whatever as the source, that would load
    the script
    without sending any data and nothing
    would be processed. The form results will fill this window in
    a second, but
    for now have to put a page into it or it could cause a
    problem. So we stick
    a dummy page we name fillerpage.html in it till the script
    returns it's
    results.}
    3)create and upload the empty fillerpage.html
    you can put any "wait a sec" message and graphic into it.
    It will show for the fraction of a second between the new
    window popping
    open------- and the script returning the processed info page.
    So-- when the submit button is pressed--
    1)the data is submitted to the script for processing
    2)a new popup is created named "thenewwindowname" 100x100
    with
    fillerpage.html in it.
    3)the script returns it's results to the popup window
    4)if the user has javascript disabled, the form results will
    open in a new
    window because of setting a target.

  • Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstorepls help

    Is there another way of getting apps from the appstore without putting your credit card number in, ive heard about the itunes gift card thing can anybody just give me more info about that and how i can buy free things free things from the appstore...pls help as im only a teenager and have no credit credit and my parents dont trust me with theres and they dont care about the fact that you can set up a password/.... PLEASE SOMEONE HELP I WILL BE SO GRATEFUL... And i would really like to get the iphone 4 but if there is no way of etting apps without your credit number then i would have to get a samsung galaxy s3 maybe ...

    You can set up an Apple ID without a credit card.
    Create iTunes Store account without credit card - Support - Apple - http://support.apple.com/kb/ht2534

  • Just did the iTunes update that iTunes said was available now iTunes won't open, keep getting Runtime Error message.  R6034 An application has made an attempt to load the C runtime library incorrectly.  Please contact the apps support team for more info.

    Just did the iTunes update that iTunes said was available, now iTunes won't open.  I just keep getting a Runtime Error message. 
    R6034
    An application has made an attempt to load the C runtime library incorrectly.  Please contact the apps support team for more info.
    Is anyone else having this problem?
    I tried to re-install and got the following message:  iTunes was not installed correctly.  Please reinstall iTunes.  Error 7 (Windows error 1114)
    Does this mean I have now lost everything?

    I just had the same error: 
    R6034
    An application has made an attempt to load the C runtime library incorrectly.  Please contact the apps support team for more info.
    I went to http://support.apple.com/kb/ht1925 and did a complete removal and reinstallation of iTunes. You MUST follow the directions here exactly...it's more than just iTunes that must be removed, and it MUST be done in the order in which the support article says.  I followed the exact instructions, and iTunes is back on my machine (no more C runtime error) and you do NOT lose your music...it's all in my library, as it was before.
    Good luck!

  • "more info" in Get Info showing "--" instead of actual infos for newer videos and images

    I've just noticed that when I click on "Get Info" on my newer pictures and videos, the "more info" section is now showing "--" instead of the dimensions of the images and videos. However when I go to my older files, the info is showing. Also if I search any of the newer files (those with the missing info) in Spotlight, it doesn't show up.  I've done some research and some people suggest reindexing Spotlight, but that never worked for me. In fact, even if I exclude a folder in my Privacy list, it's still showing as a result when I search them. I'm sure this is a problem with Spotlight as it stores the dimensions info, but since reindexing it is not a solution, can it be solved in some other way?

    It takes time on newer things, but might have to be opened first or something.
    If you want, you can clear the caches with OnyX (#12) and that would rebuild and repair the entire sub-system.
    ..Step by Step to fix your Mac
    Mac maintainence steps

  • 'More Info' disappears from 'Get Info' Inspector Tab when accessed more than once

    I've just got back from an appointment at my local Apple store Genius Bar and have had three members of staff all looking bewildered and unsure as to what to suggest with regard to this issue (apart from a fresh OS install/HD reformat). Basically, it seems that after initially using the Inspector to gather metadata about files - mp3, m4a, MOV, avi etc the 'More Info' section becomes blank, as if there is no metadata to display, even though metadata is definitely present (see attached pictures and linked video):
    Demonstration of issue (best to open in new tab, then click play or double click to start video)
    First use of Inspector to view metadata on an mp3 file, Flexible (Original Mix) at 17:05
    Second use of Inspector to view metadata on an mp3 file, Flexible (Original Mix) at 17:06
    As you can see, in the second instance, all mention of metadata is gone. Am somewhat perplexed as to why this is happening. Any thoughts or suggestions appreciated.
    Jonathan

    Ok, so this issue has resolved all by itself. Perhaps an update has rectified whatever the problem was, who knows. Anyway, job done tick lol
    FYI the link to the demo video won't work anymore either as I've removed corresponding video from my dropbox account

  • New features for next CC update: open apps, contextual menus, option-click for more info...

    I'd like to see the CC app gain a few features that would enable a more efficient workflow right from the app:
    1. Ability to open apps from the menu bar. I know we can stuff 'em in our Docks and open them in Spotlight, but being able to interact with our apps would be great. Perhaps each app could have its own gear/triangle, or each icon could be interactive; this would open a contextual menu from which we can open, delete, update, get help, maybe open recent docs....
    2. Option-clicking an app icon could pop up more info (e.g., version, last used, etc)
    3. Allow us to sort apps either manually or by automatic criteria (recently used, most used, recently updated, etc)
    See attached PNG for concepts.Adobe Creative Cloud

    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform for bugs or feature requests is a better place to post

  • Items could not be synced. See iTunes for more info.

    Sync of new iPad mini, popup on mini says 53 items could not be synced, see iTunes for more info. OK.
    Where in iTunes is more info? Which 53 items? I can find no clue. Also iBooks blows up on 2 of my books that open fine on my old iPad 1, maybe they didn't sync?

    I see now after the Sync, a  !triangle appears next to my mini in iTunes. Clicking on it brings up a list. Sure would be nice to be able to Save that list, since I can't fix anything while that list is showing! And once you close it, the warnings disappear along with the triangle. I ended up using Grab to save the info.
    Reset Warnings also makes the triangle go away. Along with all that info.

  • ORA-00205: error in identifying control file, check alert log for more info

    Hi
    I'm creating a database manually,
    I am hitting with the following error :
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area 150667264 bytes
    Fixed Size 1335080 bytes
    Variable Size 92274904 bytes
    Database Buffers 50331648 bytes
    Redo Buffers 6725632 bytes
    ORA-00205: error in identifying control file, check alert log for more info
    Following is the entry in init.ora
    control_files='/u01/oracle/db/oradata/testdb/control01.ctl','/u01/oracle/db/oradata/testdb/control02.ctl'
    and this the owner priviliges of /u01/oracle/db/oradata/testdb directory
    drwxrwx--- 2 oracle dba 4096 Oct 10 12:16 testdb

    Found in $ORACLE_BASE/diag/rdbms/$ORACLE_SID/$ORACLE_SID/trace/alert/log.xml
    ORA-00210: cannot open the specified control fileORA-00202: control file: &apos;/u01/oracle/db/oradata/testdb/control02.ctl&apos;
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    ORA-00210: cannot open the specified control file
    ORA-00202: control file: &apos;/u01/oracle/db/oradata/testdb/control01.ctl&apos;
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3

  • Error in identifying control file, check alert log for more info

    hi ,
    i have a problem when i try to login to oracle
    i found this messsage
    error
    ora-01033 oracle initialization or shutdown in progressafter i logged on with / as sysdba
    i did the following
    SQL> shutdown immediate;
    ORA-01507: database not mounted
    ORACLE instance shut down.
    SQL> startup mount;
    ORACLE instance started.
    Total System Global Area 293601280 bytes
    Fixed Size 1248600 bytes
    Variable Size 79692456 bytes
    Database Buffers 205520896 bytes
    Redo Buffers 7139328 bytes
    ORA-00205: error in identifying control file, check alert log for more info----------------------------------------------------------------
    O.S = Windows 7 Profissional
    Oracal release= 10 g release 10.2.0.1.0
    the last lines of the alert log file is
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    processes = 150
    __shared_pool_size = 71303168
    __large_pool_size = 4194304
    __java_pool_size = 4194304
    __streams_pool_size = 0
    sga_target = 293601280
    control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\CONTROL02.CTL, >E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\CONTROL03.CTL
    db_block_size = 8192
    __db_cache_size = 205520896
    compatible = 10.2.0.1.0
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = e:\oracle\product\10.2.0\db_1/flash_recovery_area
    db_recovery_file_dest_size= 2147483648
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=orclXDB)
    job_queue_processes = 10
    audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\ORCL\ADUMP
    background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\ORCL\BDUMP
    user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\ORCL\UDUMP
    core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\ORCL\CDUMP
    db_name = orcl
    open_cursors = 15000
    pga_aggregate_target = 96468992
    PMON started with pid=2, OS id=1560
    PSP0 started with pid=3, OS id=208
    MMAN started with pid=4, OS id=972
    DBW0 started with pid=5, OS id=4092
    LGWR started with pid=6, OS id=3812
    CKPT started with pid=7, OS id=344
    SMON started with pid=8, OS id=3492
    RECO started with pid=9, OS id=2272
    CJQ0 started with pid=10, OS id=3276
    MMON started with pid=11, OS id=1832
    MMNL started with pid=12, OS id=1636
    Wed Nov 21 11:44:31 2012
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 1 shared server(s) ...
    Wed Nov 21 11:44:32 2012
    ALTER DATABASE MOUNT
    Wed Nov 21 11:44:32 2012
    ORA-00202: control file: 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\CONTROL01.CTL'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) can not find the specified file
    Wed Nov 21 11:44:32 2012
    ORA-205 signalled during: ALTER DATABASE MOUNT...Please anyone has any info please share me
    thank you ,
    regards,
    Edited by: ayadsufyan on 21-Nov-2012 01:04
    Edited by: ayadsufyan on 21-Nov-2012 01:30

    ayadsufyan wrote:
    hi ,
    i have a problem when i try to login to oracle
    i found this messsage
    error
    ora-01033 oracle initialization or shutdown in progressafter i logged on with / as sysdba
    i did the following
    SQL> shutdown immediate;
    ORA-01507: database not mounted
    ORACLE instance shut down.
    SQL> startup mount;
    ORACLE instance started.
    Total System Global Area 293601280 bytes
    Fixed Size 1248600 bytes
    Variable Size 79692456 bytes
    Database Buffers 205520896 bytes
    Redo Buffers 7139328 bytes
    ORA-00205: error in identifying control file, check alert log for more info----------------------------------------------------------------
    O.S = Windows 7 Profissional
    Oracal release= 10 g release 10.2.0.1.0
    the last lines of the alert log file is
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    processes = 150
    __shared_pool_size = 71303168
    __large_pool_size = 4194304
    __java_pool_size = 4194304
    __streams_pool_size = 0
    sga_target = 293601280
    control_files = E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\CONTROL01.CTL, E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\CONTROL02.CTL, >E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\CONTROL03.CTL
    db_block_size = 8192
    __db_cache_size = 205520896
    compatible = 10.2.0.1.0
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = e:\oracle\product\10.2.0\db_1/flash_recovery_area
    db_recovery_file_dest_size= 2147483648
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=orclXDB)
    job_queue_processes = 10
    audit_file_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\ORCL\ADUMP
    background_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\ORCL\BDUMP
    user_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\ORCL\UDUMP
    core_dump_dest = E:\ORACLE\PRODUCT\10.2.0\DB_1\ADMIN\ORCL\CDUMP
    db_name = orcl
    open_cursors = 15000
    pga_aggregate_target = 96468992
    PMON started with pid=2, OS id=1560
    PSP0 started with pid=3, OS id=208
    MMAN started with pid=4, OS id=972
    DBW0 started with pid=5, OS id=4092
    LGWR started with pid=6, OS id=3812
    CKPT started with pid=7, OS id=344
    SMON started with pid=8, OS id=3492
    RECO started with pid=9, OS id=2272
    CJQ0 started with pid=10, OS id=3276
    MMON started with pid=11, OS id=1832
    MMNL started with pid=12, OS id=1636
    Wed Nov 21 11:44:31 2012
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 1 shared server(s) ...
    Wed Nov 21 11:44:32 2012
    ALTER DATABASE MOUNT
    Wed Nov 21 11:44:32 2012
    ORA-00202: control file: 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\CONTROL01.CTL'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) can not find the specified file
    Wed Nov 21 11:44:32 2012
    ORA-205 signalled during: ALTER DATABASE MOUNT...Please anyone has any info please share me
    thank you ,
    regards,
    Edited by: ayadsufyan on 21-Nov-2012 01:04
    Edited by: ayadsufyan on 21-Nov-2012 01:30I'd say the error message is pretty self-evident:
    ORA-00202: control file: 'E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\CONTROL01.CTL'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) can not find the specified fileWhat do you suppose "can not find the specified file" means?
    And what does this have to do with database security?

  • Edit "more info" in the "get info" window

    I have songs on iTunes that are all named with what artists and song and album it is. When i click get info for the song out of itunes. In the "more info" section for song song will tell what artist and album it is and others will just say when it was last open. Can I edit the info in there to tell it who the artist is and album so when i put it on my phone it doesn't go in the no artist section.

    I have it named in itunes I know how to change the info in itunes. Outside of itunes when i right click it and get info for it that window doesn't say what artist it is in the "more info" section. And other songs do have artists and album in this window in the "more info" part, and they're doing what their supposed to on my phone. So i need to adjust it a different way.

  • Get info pane doesn't show appropriate "more info" info

    Hello. There's a problem on my "get info" pane, where normally there should be a "more info" column showing some information about "image size", "author", etc.
    But recently, for example, an image file's "more info" column doesn't show its dimension and other info, only showing "title" and "last opened". And other things are simply gone.
    Another example is MP3 files, normally there should be showing more metadata like "bitrate", "artist", "duration", etc. But now, it just shows the "title" and "last opened".
    This really bugs me because I normally used to look at some info about these things sometimes when I need to check it out when doing some picture works. So basically the main problem is "more info" doesn't show information that I needed and which it should be there, but somehow there's a problem on Mac OS X that makes it failed to show them all out.
    If anyone could tell me a way to fix it, I am very appreciated!! Thank you!!
    Here's the get info pane of both MP3 and JPEG files:
    http://cl.ly/txW
    http://cl.ly/oXv
    Message was edited by: dronex

    Generally when the "More Info" section is nearly empty it is because the file in question has not been indexed by Spotlight. As to WHY it hasn't, that is a whole 'nother question, which you may be able to answer. Perhaps you have it stored somewhere that is excluded in the Spotlight Privacy pane, or on a drive where Spotlight is disabled, or in a folder where you don't have proper permissions... and so on.
    Francine
    Francine
    Schwieder

Maybe you are looking for

  • How to delete the data from SAP R/3 DB table from BW

    Hi,    I am facing an issue... I have populated the data into custom r/3 DB table by running a user exit.I am getting the data and loading(Full Load) it in BW ODS. But my problem is when i rerun the user exit it is giving me a short dump saying "SAPS

  • Aggreegate

    dear friends          i createdan aggregate, loaded data to info cube and did rollup. The aggregate is active then i created a query on the Infocube and executed it. But I can not see the Usage counter going up. It is still showing as 0  any idea why

  • Start Screen Microsoft Office 2013 tiles are completely empty

    This is very weird. It started with Outlook and every few weeks another one loses its values. The tiles are colored boxes but have no text or icon in them.  There is nothing to tell me which tile is Outlook, Word, OneNote, Excel or Lync.  InfoPath De

  • Safari Plug-ins for iPod Touch

    Is there some place to find Safari Plug-ins for the iPod Touch, such as JAVA and FLASH?

  • Imac 5K VS Macbook Pro For Editing?

    Hello, my name is Sam and I am currently editing on my mid 2009 macbook pro 17" laptop. I have a 2.8 GHz Intel Core 2 Duo Processor and I upgraded my ram to 8GB. I have been using this laptop for editing videos since I got it in 2009. Up until now I