How to open a file in the same position on display when closing

Not sure if this is the right place, so I apologize in advance:
Whenever I open my text edit files, they always open in the same place in the display; how can I get these files (or any files for that matter) to open at the display position where they're last closed? 

Unless the App stores window position data for a file, which I doubt, there isn't a way.
Apps can store their default window position. Normally that is done by opening a document window in the app, moving and resizing it, then closing the window.
There isn't an OS-wide setting for window positions.

Similar Messages

  • How to open KM file in the same window

    When we open KM file by /irj/go/km/docs/... link it is previewed in a new Internet Explorer window.
    We changed Targed property to Self for iView navigation in LayoutSet render but the image file is still opend in new Window.
    How to workaround this?

    We changed Target Window Type property value of ResourceRenderer of Navigation iView  to Self.
    When an authenticated user  tries to open KM file it is opened in the same window if file URL include /irj/servlet/prt/prtroot....
    If file URL contain /irj/go/km/docs/.. it is opened in new window.
    When an anonymous user  tries to open KM file it is opened in a new (popup) window.
    We need that anonymous user can open km files in the same window.
    How to work around this?
    We use light framework.

  • How to open a file with the same name?

    Hi, now I practicing making web pages where I put sample codes in one directory and I copy them to edit.
    The probrem is, I couldn't open one file while I'm opening another file with the same name.
    Is it possible to open  a file with the same name in Dreamweaver?

    That could be a very error prone practice.
    May I suggest you take advantage of DW "Snippets" feature instead.
    Simply save any blocks of code you will reuse regularly as snippets,
    and give each one a descriptive name you like.
    Then you can simply place your cursor in code view where you wish the code,
    and click insert on the selected item from the snippet panel.

  • How to get a file in the same dir with the jar-executable

    Hi,
    I need to read/write a file that exists in the same directory with the jar-executable. How can i do that? I think that when i specify no path for the file, the file has to be in current path. (Is that right?)
    Note: I do not know in which directory the jar and the file are.
    Thanx in advance

    Hi,
    I need to read/write a file that exists in the same
    directory with the jar-executable. How can i do that?
    I think that when i specify no path for the file, the
    file has to be in current path. (Is that right?)
    Note: I do not know in which directory the jar and
    the file are.
    Thanx in advance
    When you specify no path for the file, the file has to be in the directory where the virtual machine was started. ( the directory the java command was invoked in .)
    If you can't control the directory in which the vm is started, but you know the name of the .jar file you can do the following. This trick takes advantage of the fact that if you are using classes in a jar file, the name of the jar file must be in your classpath.
    public static String getPathOfJar( String nameOfJar )
    throws Exception
    StringTokenizer st = new StringTokenizer(
    System.getProperty( "java.class.path" ) ,
              System.getProperty( "path.separator" ) );
    String jarfile = "";
    while ( st.hasMoreTokens() )     
    String token = st.nextToken();
    if ( token.indexOf( nameOfJar ) > -1 )
    jarfile = token;
    break;
    if ( jarfile.equals("") ) throw new Exception( "Jar not found in classpath" );
    String path = jarfile.substring( 0 , jarfile.indexOf( nameOfJar ) );
    return path;
    //To open a file in the same directory as the sun archive tools.jar
    File f = new File( getPathofJar( "tools.jar" ) + "someFile.txt" );

  • How to open a file with the extension x3f (sigma)

    how to open a file with the extension x3f (sigma)?

    RAW data from the following Sigma cameras is currently supported:
    DP1
    DP1s
    DP2
    SD9
    SD10
    SD14
    If your camera is among these, then simply import the photo as usual. https://helpx.adobe.com/lightroom/help/importing-photos-lightroom-basic-workflow.html

  • How to open two files in the one window in PSE11?

    In older versions of PSE I was able to open two picture files in the same window by just resizing them smaller so that I could deal with them side by side........I couoldn't do it in PSE=10, and I upgraded to PSE11 and still don't know how to do it.  Can somone assist me?  Thanks..

      In the Organizer select two thumbnails and hit the F12 key to compare them. But I guess you mean in the Editor application. In Expert Mode it‘s possible to work with floating windows rather than fixed tabs but you first need to set your preferences. Go to:
    Edit >> Preferences >> General (Windows)
    Photoshop Elements Editor >> Preferences >> General (Mac)
    Then put a checkmark in the box against “Allow Floating Documents in Expert Mode”
    Click OK
    You can now open your two images and use the layout button at the bottom to choose various configurations or to cascade.
     

  • How manage two numbers files in the same screen to compare data

    Hello,
    I have two - 2 numbers files that I want to compare data between them in the same screen, How can I do that? Like in Excel you can compare two differente files in the same screen with the option windows cascade or something like that.
    Please Help Me.....

    First, turn off the abomination that is called "Full Screen" -- ported from the iPhone, land of tiny screens and single tasks.
    Then resize the first window to take up half the screen and place it on the left. Open the second spreadsheet and resize its window and place it on the right.
    Compare.

  • How to open a file in the correct characterset

    Apex 3.1 running on OracleXe
    I have a file which I open using an onlaod before header process (similar to the way excel files are opened).
    I set the Mime Type in the header process on an apex page
    OWA_UTIL.mime_header ('Application/Octet', FALSE);
    -- Set the name of the file
    htp.p('Content-Disposition: attachment; filename="'||:P12_FILENAME||'"');
    -- Close the HTTP Header
    owa_util.http_header_close;and then generate a query via a stored procedure which I write out using the following routine
    (It is done this way as the file needs to be written to the client machine rather than the database server).
    Procedure Dump_Query_To_File(P_Query                In Varchar2,
                                 P_Display_Titles       In Varchar2 Default 'N')
    IS
        l_output utl_file.file_type;
        L_Thecursor Integer Default Dbms_Sql.Open_Cursor;
        L_Columnvalue Varchar2(4000);
        L_Status Integer;
        l_query VARCHAR2(4000) := p_query;
        L_Colcnt Number        := 0;
        L_Separator Varchar2(1) := '';
        L_Desctbl Dbms_Sql.Desc_Tab;
    begin
        Dbms_Sql.Parse(L_Thecursor,   L_Query,   Dbms_Sql.Native);
        dbms_sql.describe_columns(l_thecursor,   l_colcnt,   l_desctbl);
        For I In 1 .. L_Colcnt
        Loop
            If P_Display_Titles ='Y'
            Then
                If I < L_Colcnt
                Then
                    Htp.Prn(L_Separator || '"' || L_Desctbl(I).Col_Name || '"');
                    L_Separator := ';';
                Elsif I = L_Colcnt
                Then
                    Htp.Prn(L_Separator || '"' || L_Desctbl(I).Col_Name || '"');
                    htp.ps(chr(13));
                End If;
            END IF;
            Dbms_Sql.Define_Column(L_Thecursor,   I,   L_Columnvalue,   4000);
        End Loop;
        L_Status := Dbms_Sql.Execute(L_Thecursor);
        WHILE(dbms_sql.fetch_rows(l_thecursor) > 0)
        LOOP
          l_separator := '';
          FOR i IN 1 .. l_colcnt
          Loop
              Dbms_Sql.Column_Value(L_Thecursor,   I,   L_Columnvalue);
              If I <= L_Colcnt
              then
                  Htp.Prn(L_Separator || L_Columnvalue);
                  L_Separator := ';';
              end if;
          End Loop;
          htp.ps(chr(13));
        End Loop;
       dbms_sql.close_cursor(l_thecursor);
    End Dump_Query_To_File;When I vew the file in notepad I can see a string Annulé
    but when I open it in wordpad this gets converted to Annulé.
    Ideally what I need to do is open the file using characterset WE8MSWIN1252
    and write to the file using the same characterset.
    My database is in AL32UTF8 (ie XE universal Edition).
    So far the information I have is that owa_util only accepts charactersets when the mime type is of type text.
    This however still results in the file being written with the incorrect characterset.
    Edited by: Keith Jamieson on Oct 27, 2010 12:16 PM

    Small update.
    I created a database with a western european characterset We8MSWIn1252
    If I use utl_file to write out the code on the database server it gets produced correctly in Ascii format with the accented charcacters.
    As soon as I try and write out the code using owa_util.Mime_header and htp.p the code is written in UTF8 format.
    I did try and write out the header specifying a western european characterset but it seems that if it encounters an accented character it automatically switches to utf-8 mode. If there are no accented charcters the file is produced in ascii format.
    Really stumped on this one.

  • Open attached file in the same editor(ZCRM_DNO_MONITOR customer program)

    Hi All,
    I wrote a dialog program to simplify the CRM_DNO_MONITOR.  I gave the facility to attach file from the PC(any doc  type .txt ,doc, xls. etc) by calling the functions. I need to give  a facility to open these attached file in the same edit. Please let us know way
    Additionally,I can find the logical and physical document of these attached files
    e. g
    (Doc class       : CRM_L_ORD
    Doccument   : 4CA517D70BE60F7FE1000000AC113F3F
    Doc Class       CRM_P_ORD
    Document        4CA517D80BE60F7FE1000000AC113F3F)
    Attached files successfully by calling the following functions
           objkey = wa_tab-guid .    " (crmd_orderadm_h-guid)
           objtype = 'BUS2000116'.
          CALL FUNCTION 'SO_FOLDER_ROOT_ID_GET
          CALL FUNCTION 'SO_DOCUMENT_REPOSITORY_MANAGER
         CALL FUNCTION 'BINARY_RELATION_CREATE_COMMIT'
         CALL FUNCTION 'CRM_KW_MIGRATE_GOS' DESTINATION 'NONE'

    Hello ,
    i think you can make use of Clase CL_GOS_MANAGER
    check Sap program which are using this clasee.
    try yourself and let me know if you have any doubts.
    regards
    Prabhu

  • How to read multiple files in the same folder?

    Suppose I have 100 txt files in the same folder, and I want to read them one by one. (order is not important). File name is also part of the information I want.
    How to do that?
    Thanks

    You need to use the directory to create a File (use the path name, w/o a file name). Then you need to ask for a list() (array of String containing name). To do that you'll need to implement the FilenameFilter interface, writing an accept() method that returns true if the file's name ends with ".txt".
    If that's not perfectly clear, try the java.io API docs and return more specific questions.

  • How to put two files with the same name into the same folder?

    How can I put two files with the same name and the same extention into the same directory?
    Is this even possible?
    Thanks in advance. 

    Are you sure? I would be very surprised if that was the case.
    How does the computer/filing system differentiate the files, if not by their names?
    How do you tell the computer which one you want? (On the command line.)

  • How to open multiple applications at the same time

    I need to open several applications at the same time: Dreamweaver, BBEdit, and Acrobat. Is there a way to smooth this process, so pressing an icon in the dock will open them all for me?

    You could create an applescript to do it.
    tell application "Dreamweaver's Full Name"
    activate
    end tell
    tell application "BBEdit's Full Name"
    activate
    end tell
    tell application "Acrobat's Full Name"
    activate
    end tell
    Replace the quoted text (leaving the quotes) with the full name of the application, and save the applescript as an application bundle, and put it in your dock.
    NOTE: You may have to put the full path to the application for it to work (I.E. /Applications/Dreamweaver.app). If you do, encase the full path in quotes.
    Good luck!
    Message was edited by: joshz

  • How to paste text box into the same position

    when I used
    adobe acrobat 6.0, I can paste the text box in the same position in the next page, it is very useful for editing files with similiar information. after I use acrobat 9.0, I found that I can not paste the text box in the same position in the next page. do you know whether the 9.0 can realize the function of "paste in the same position"?

    I am using adobe acrobat 9.0, when I use object select tool " the arrow pointing 11 clock", I can not find Duplicate command. Mr./Ms. try67, can you realize the function of paste in the same position? very thanks for your reply and help.

  • How to open other swf at the same window \ click to dissolve?

    Hey guys,
    I'm creating a simple flash feature with only three buttons, but I need your help:
    First button - click and it opens our inventory flash flip book. the problem is, the flip book is already in flash, and I have no idea how to make it so when i'm clicking the button, it opens the flip book in the same window.
    Second button - when you click it, it dissolves to a new window where you can see our contact information + 'back' button. how do I create this dissolve on demand and back?
    I got the third button ok.
    please help me with that,
    thank you!

    AS3 or AS2
    Escencially you can create a container with a tween alpha animation controled by the second button. To load the swf you can externally load the file swf as an image
    var myLoader : Loader = new Loader ( ) ;
      myLoader . contentLoaderInfo . addEventListener ( ProgressEvent . PROGRESS , onProgressStatus ) ;
      myLoader . contentLoaderInfo . addEventListener ( Event . COMPLETE , onLoaderReady ) ;
      var fileRequest : URLRequest = new URLRequest ( "myImage.jpg" ) ;
      myLoader . load ( fileRequest ) ;
      public function onProgressStatus ( e : ProgressEvent ) {
      // this is where progress will be monitored
      trace ( e . bytesLoaded , e . bytesTotal ) ;
      public function onLoaderReady ( e : Event ) {
      // the image is now loaded, so let's add it to the display tree!
      addChild ( myLoader ) ;

  • How to open appleworks file in the WINDOWS.

    I use the MAC 8.6. I want appleworks file can use in the windows. How i can use applework file in the windows.
    Thank you very much for your help.

    As suggested in Michael's post, what you do depends on what translators were supplied with the version of AppleWorks you have installed.
    With the file open, go to the File menu and choose Save as...
    In the Save dialogue, look for a popup menu to choose the file format in which you can save the file.
    If there are Windows applications listed in the menu, choose one of them.
    If not, choose RTF (if available, although I recall some problems with moving RTF files from Mac to Windows or vice versa), or Text. Neither of these will transfer graphic objects. RTF will keep some text formatting. Text will transfer only the raw text.
    If the Windows user has ClarisWorks or AppleWorks (same or newer whole number version) installed, you should be able to transfer the files as AppleWorks files, making sure that you add the .cwk suffix to the file name.
    Regards,
    Barry

Maybe you are looking for

  • Text input boxes same colour as background - so "invisible", and button text or buttons often missingt

    I have turned off all addons/extensions/plugins - still the same problem: 1: Text input boxes appear to be the same colour as the background - and hence "invisible" 2: Clickable buttons on websites are often invisible, or if they display have no text

  • List View Bound to XML Map Data

    HI Have a list view that is bound to xml mapped data.  It seems that on connection refresh that new data is not being updated into the SWF.  My Binding is directly onto the cell ranges that are mapped into excel, so on updates the size of the maped t

  • Problem Instanciating BO - No default attribute defined for the object type

    Hello Experts, I am instanciating the BO BUS2038 to ZBUS2038 and when I click in u201Cto implementedu201D and follow u201Cto releasedu201D the message No default attribute defined for the object type is appearing! Can anybody help, please?

  • How to send digital waveform to the DAC?

    How to send digital waveform, obtained by Function Generator.vi to the Digital-Analog Converter? What kind of subVIs I have to use for this? I have LabView_5.0 on MacOS.

  • SOLMAN : Changing notification status

    Hello Experts, My requirement is to change the notification status in CRMD_ORDER using BDC or BAPI. I tried with BDC, but status is not changing through BDC. Is there any BAPI or function module to change the notification status with notification num