How to place a file at a specific location

I need to know how to place an eps graphic in a specific location.  I can put a file but I can't seem to be able to move it.  Is it possible to position it correctly over the action of the place?

Thank you

Hi Mario,.

Take a look at the ImageCatalog.jsx that comes with ID and look for the line:

myRectangle = myPage.rectangles.add (myDocument.layers.item(-1), defined, undefined, {geometricBounds: [myY1, myX1, myY2, myX2], strokeWeight:0, strokeColor:myDocument.swatches.item("None")});})

This should help you to get what you need (note geometricBounds: [15,15,59.5,66.5]).

myDocument var = app.documents.add ();
{with (myDocument)}
myPage var = pages [0];
{with (MyPage)}
myFrame = pages.item var (0).rectangles.add ({geometricBounds: [15,15,59.5,66.5], strokeWeight:0, strokeColor:myDocument.swatches.item("None")});})
{with (myFrame)}
myFile = myFrame.place (File (myFile), false);
}
}

You can also check:

http://www.jongware.com/idjshelp.html

Tags: InDesign

Similar Questions

  • How to place data files in two places during duplication of database or refresh via RMAN test

    Hi all

    can you please find the solution and help me on this point

    How to place data files in two places during duplication of database or refresh via RMAN test

    Thank you

    Ran

    Hi all

    Please send me as soon as possible if you have a solution.

    Thank you.

    Ran

  • Open a pdf file to a specific location

    Dear friends,

    I would like to support a dialog with a help button that needs to open a pdf file to a specific location, is defined by number of page or (better) by named Destination.

    var helpFile = File($.fileName.replace (/\.jsx(?:bin)?$/i , ".pdf"));
    OpenPDF (helpFile, "FMcalccalculations"); // named dest = M8.newlink.FMcalccalculations
    
    function OpenPDF (fileName, destination) {
      if (fileName.exists) {
        fileName.execute("nameddest=M8.newlink." + destination);
      }
    }
    

    This is to open the pdf file on the first page.

    How can I pass parameters - not knowing what pgm will open the pdf file (depending on the installation of the user)?

    I've seen (IMHO) using an intermediary VBscriptthat crunch, but I have not yet tested this approach. As far as I understand that this would imply a VSscript for each destination in the pdf file.

    All ideas are wolcome.

    Klaus

    Well, friends, I found a solution on StackOverflow.com: in German, we say such a solution 'von fun druch die brust projectiles' fur.

    ExtendScript:

    // Open PDF at named destination
    
    var theFile = "PDFwithDestination.pdf";           // for my case: in same path as this script
    var destination = "M8.newlink.FMcalcseries"       // needs to be found in pdf, because the 8 is not a constant
    OpenPdfAtDestination (theFile, destination);
    
    function OpenPdfAtDestination (pdfFile, namedDestination) { // ====================================
    var path = GetScriptPath () + "\\";
    var location = "nameddest=" + namedDestination;   // see "Parameters for Opening PDF Files"
    
    // Call OpenPdfWithParameters, according to
    // http://stackoverflow.com/questions/20862868/file-execute-is-not-executing-my-script-how-to-debug-this-issue/20863131#20863131
    // A workaround to pass arguments is to create another file, that calls this script with arguments.
    // Yawar 2015-03-15
    
    // Create the calling batch file
    var tempFile = File (path + "tempScript.bat");
      tempFile.open("w");
      tempFile.encoding = "UTF-8";
      tempFile.writeln (path + "OpenPdfWithparameters.exe " + '/A ' + location + ' "' + path + pdfFile + '"');
      tempFile.close();
      tempFile.execute ();
      tempFile.delete;
    }
    
    function GetScriptPath () { //=====================================================================
    // Get the script path
    // Returns path in the function
      var scrPath, newPath, winPath, lastBSlash;
    
    // $.fileName: script path (including the file-name of the script)
    // platform independent format e.g. /e/_DDDprojects/FM+EN-escript/escript
      scrPath = $.fileName;
      winPath = new File (scrPath);
      scrPath = winPath.fsName;                       // get Windows format
      lastBSlash = scrPath.lastIndexOf("\\");         // \ needs escaping
      scrPath = scrPath.substring(0, lastBSlash);
      return scrPath;                                 // no final \ !
    } // --- end GetScriptPath
    

    AutoHotKey script - must be converted into an exe file:

    ; OpenPdfWithParameters.ahk
    ; 2016-04-15 Klaus Daube
    
    ; Get the arguments from the caller (works only in compiled version!)
    parmList =
    Loop, %0%  ; For each parameter:
    {
      param := %A_Index%
      parmList = %parmList% `n%param%
    }
    ; MsgBox, Number of parameters: %0%`n%parmList%
    
    ; let's find the relevant application
    RegRead, sDefaultApp, HKCR, .pdf
    RegRead, sDefaultAct, HKCR, %sDefaultApp%\shell
    RegRead, sDefaultCommand, HKCR, %sDefaultApp%\shell\%sDefaultAct%\command
    StringTrimRight, command, sDefaultCommand, 5 ; remove the "%1"
    ; MsgBox %command%                      ; "H:\Adobe\Acrobat11\Acrobat\Acrobat.exe"
    
    ; open the pdf with the parameters according to "Parameters for Opening PDF Files"
    Run, %command% %parmList%
    

    This works, however a flicker is created due to the execution of the batch file.

  • BlackBerry smartphone how to copy a file to a specific to the BlackBerry Desktop folder

    Hi all

    IAM again to BlackBerry programming. My requirement is to know how to copy some files (i.e. excel files) in a folder specified in the BlackBerry to desktop. Can someone guide me what programming software to use to make this work.

    Please can someone tell how the system of files (records management) would be BlackBerry.

    Thank you

    mnkumar wrote:

    Is it necessary to have separate BB sd card to get an accessible drive in 'My computer' and so we can copy files programmatically.

    What is the price of media card (say 1 GB).

    on your device, you have internal memory (aka the device memory) and you have a microSD (aka memory support).
    memory support can be seen by your PC using USB mass storage (which you can do on the first Blackberry).
    the device memory can not be seen like that. The Roxio Media Manager can do that, as well as a module of the Desktop Manager 4.7 (does not work on 4.6 and earlier).

    a Sandisk 4 GB media card costs cheaper 4USD on Amazon.

    mnkumar wrote:

    Is it possible to develop an application that resides in the internal memory of BB, who can access the files in the memory card?

    Yes it is possible. You can search for resources on the top of this page, in the "DEVELOPERS" link If you have any questions about this you can post them on the set of 'Java development' on this forum.
    http://supportforums.BlackBerry.com/Rim/Board?Board.ID=java_dev

  • How to preview the files in a specific folder?

    Hi all!

    Do for myself, a small tool. One of the functions is to show an overview of all files - in a scroll pane. How to display a file, that I already know and how to display all files?

    The Script target InDesign, a few settings and it should work:

    main();
    
    function main() {
        var folder = Folder.selectDialog ("");
              var files = folder.getFiles();
              var imgs = new Array();
              for (var n = 0; n < files.length; n++)
                        if (files[n].name.search(/jpg$/i) != -1)
                                  imgs.push( files[n].fullName );
              var sui_imgs = new Array();
              for (var n = 0; n < imgs.length; n++)
                        sui_imgs.push( ScriptUI.newImage( imgs[n] ) );
    
              var nr_of_rows = Math.floor( imgs.length / 4);
    
              var dlg =
                        "dialog {                                                                                                                         \
                                  orientation: 'row',                                                                      \
                                  alignChildren:['fill', 'fill'],\
                                  pnl: Panel { preferredSize: [400,400], maximumSize: [400,400] },          \
                                  scrl: Scrollbar { preferredSize: [20,400], minvalue: 0, maxvalue: "+ (nr_of_rows) + ", jumpdelta: 3, stepdelta: 1, value: 0  }          \
                                  btns_grp: Group { \
                                            orientation: 'column', alignChildren: ['fill', 'top'],          \
                                            up: Button { text: 'up' },          \
                                            down: Button { text: 'down' }, \
                                            val: StaticText { text: '0' },          \
                                            cancel: Button {text: 'cancel', alignment: ['fill', 'bottom'] }          \
                                            }          \
                                  }";
              var w = new Window(dlg);
    
              // Die IconButtons erzeugen
              var zeile, n = 0;
              var img_btns = new Array();
              for ( var y = 0; y < 4; y++) {
                        zeile = w.pnl.add("group");
                        zeile.orientation = "row";
                        for ( var x = 0; x < 4; x++) {
                                  img_btns.push( zeile.add("iconButton",[undefined, undefined, 85, 85]) );
                                  n++;
                        }
              }
              // Die Buttons für Rauf und Runter
              var shift = 0;
              fill_imgs( shift );
              w.btns_grp.up.onClick = function () {
                        shift = (shift > 0) ? shift-1 : 0;
                        fill_imgs(shift);
                        w.scrl.value = shift;
              }
              w.btns_grp.down.onClick = function () {
                        shift++ ;
                        fill_imgs(shift);
                        w.scrl.value = shift;
              }
              // Die Scrollbar
              w.scrl.onChange = function() {
                        shift = Math.round(this.value);
                        this.value = shift;
                        this.window.btns_grp.val.text = shift;
                        fill_imgs(shift);
              }
    
              w.show();
    
              alert( w.result );
    
              function fill_imgs( shift ) {
                        var btn_index, img_index;
                        for ( var y = 0; y < 4; y++) {
                                            for (var x = 0; x < 4 ; x++) {
                                                      btn_index = y * 4 + x;
                                                      img_index = shift * 4 + btn_index;
                                                      if (img_index < imgs.length) {
                                                                img_btns[ btn_index ].image = sui_imgs[ img_index ];
                                                                img_btns[ btn_index ].asset = imgs[ img_index ];
                                                                img_btns[ btn_index ].visible = true;
                                                                img_btns[ btn_index ].onClick = function () {
                                                                          this.window.result = this.asset;
                                                                          this.window.close();
                                                                }
                                                      } else {
                                                                img_btns[ btn_index ].visible = false;
                                                      }
                                            }
                        }
              }
    }
    

    See you soon,.

    Davide

    www.davidebarranca.com

  • Unable to save the file in a specific location

    I created a C:\Users\Projects\Writing projects folder to save my writing projects in. I tried to put a Word file in this folder and I was told that I don't have administrator rights to save a file in this location. I must have administrator rights, because it is my PC, and I have only set up an account with which I set install programs, remove any software, create folders, etc etc, so what happens? He told me that I could save the file under 'my documents '. I don't want to post here, because a load of other detritus accumulates in this folder, and these are files of project specific I want to keep separate (I'm a writer).

    Hmmm, I just did exactly that on my computer with Word 2007 and Home Premium from Windows 7 64 and had no problem at all.  If you have the professional version or complete edition, you can run in a part of the increased security, maybe.  You can still create these folders as subfolders of the My Documents folder and isolate what you put there like that.  Another thing you could try would be to create a LIBRARY that points to the C:\Users\Projects\Writing project that you created.  This might be more likely to succeed.

    One thing I just noticed that is not in your post is your user ID.  You create these records in C:\Users\yourID\Projects\Writing projects.  That's what I was doing.

    Good luck.

  • Copy all indd files in a specific location

    Hello guys I do not know why my script does not work as I want.

    I want my script to work in this way, when I choose a folder in the my script dialog box to choose all the .indd files

    and put them in a specific location

    See code below

    var myFolder = Folder.selectDialog ('Choose a Folder');
    $.writeln('-------------------------------\r' + myFolder.displayName + '\r-------------------------------\r');
    if(myFolder != null){
      var myFiles = myFolder.getFiles('*.indd');
      for (i = 0; i < myFiles.length; i++)
      {
      var myFile = myFiles[i];
      // myTargetFolder = "/Kommuni/LaRe/LareAUTO/341542" // put files here
    
    
    
    myFiles[i].copy ("/Kommuni/LaRe/LareAUTO/341542/");
    
    
    // $.writeln(myFile.displayName);  // just for write the data in console
      }
    }
    
    
    
    

    Can someone help me put a correct code here

    Thanks in advance

    Congratulations to all members

    Hello

    You must use a valid path to a file or a folder, so:

    //....
    destFile = new File("/Kommuni/LaRe/LareAUTO/341542/" + mFile.name);      // to create an object
    $.writeln( destFile.name + " - " + destFile.exists);    //  to check if your path exists
    myFiles[i].copy (destFile);    //    to copy file
    //.....
    

    Jarek

  • How to add a column to a specific location within a table using Sql developer.

    Hello

    I need to add a column to a table in a specific location, how to proceed?
    I tried following
    clicked on a right-> Edit table then I got a screen with all the columns in the table
    where move column up and down column options are disabled.
    can someone help me with this.


    Thank you
    Harry

    Its not supported. In the database to insert a column in a specific location, you must re-create the table and SQL Developer team have, decided quite rightly, it is a step away.

    Remember in connection with the database column order is not serious.

  • How to place the textfields on a specific spot on a specified work plan - javascript?

    found this script, he places the textframe always on the forefront of work, but he want Te on artboard 3

    PLACE ITEMS ON THE GRAPHICS BOARD

    If (app.documents.length > 0) {}

    doc = app.activeDocument;

    Get the active index of the artboard

    var activeAB = doc.artboards [doc.artboards.getActiveArtboardIndex ()];

    Get the height of the artboard

    var artboardBottom = activeAB.artboardRect [3];

    The page element that you want to move. Reference the how. This just

    Obviously grabs the first pageItem in the document.

    var myPageItem = doc.pageItems [0];

    This is where the magic happens. Set the FH3 of the element.

    [0,0] would be at the top left, then offset the artboard

    height. We add to the tune of myPageItem for offset, or we'd end up BELOW

    the artboard.

    myPageItem.position = [0, artboardBottom + myPageItem.height];

    }

    Hi, I think that's what you want to do.

    // PLACING ITEMS ON ARTBOARD
    
    if ( app.documents.length > 0) {
        var doc = app.activeDocument;
    
         // Get the active Artboard index
        var activeAB = doc.artboards[doc.artboards.getActiveArtboardIndex()];  //If you want set manually the artboard insert the index in this line like this: var activeAB = doc.artboards[1];
    
        // Get the Height of the Artboard
        var artboardBottom = activeAB.artboardRect[3];
        var artboardLeft = activeAB.artboardRect[0];    
    
        // The page item you want to move. Reference it how you will. This just
        // obviously grabs the first pageItem in the document.
        var myPageItem = doc.pageItems[0];
    
        // Here is where the magic happens. Set the poition of the item.
        // [0,0] would be at the top left, so we have to compensate for the artboard
        // height. We add myPageItem's height for offset, or we'd end up BELOW
        // the artboard.
        myPageItem.position = [(artboardLeft), (artboardBottom + myPageItem.height)];
    }
    

    So, I hope this has helped you.

    Greetings

    -Vinícius Baptista

  • How to drag a file to a specific folder in Dreamweaver CS4

    In Dreamweaver CS4, everytime I try to drag a version recently put to date of a swf file in a certain directory / folder in the interface of Dreamweaver files Panel, the file just is under the root of my Web site instead.  I then have to manually drag in the right bin - where I give myself the option to replace the old copy.  It is followed by the question of whether or not I want to update the links that I move the file from the root in a specific folder.

    Is there a way to make the swf file directly (and often I deal with several) directly into his repertoire appropriate within the files Panel structure Dreamweave?

    Sometimes, when I dragged in several files (and possibly hold the CTRL key), files have been added directly where they belong - but this has been sporadic, so I don't really know the right method.

    Thanks for any help.

    (and as for version control, I use Tortoise SVN and have my Web site control files of version, but if I right click on one of these files in the Dreamweaver interface and select version control, all options are grayed out).

    Thank you

    In Dreamweaver CS4, everytime I try to drag a version recently put to date of a swf file in a certain directory / folder in the interface of Dreamweaver files Panel, the file just is under the root of my Web site instead.

    You drag the file from the STRANGER-DW (using the Explorer/Finder) and dropping it in the FILES of DW Panel (I think you can do it!)?  Or do you drag in the FILES Panel, but outside of your site (by choosing 'Local disk' in the drop-down list)?  I think what you see is the best you will get with this procedure.  Try to go to "Local Disk" and copy the file, then return to your site and paste it where you want.

  • (webutil) How to save the file in a specific way?

    Hello

    I have this part of the code
    Arglist := OLE2.Create_Arglist;
      OLE2.Add_Arg(Arglist,'c:\Export.xls');
      OLE2.Invoke(workbook, 'SaveAs', Arglist);
      OLE2.Destroy_Arglist(Arglist);
      -- release workbook
      OLE2.Release_Obj(workbook);
      OLE2.Release_Obj(workbooks);
      OLE2.Release_Obj(application);
    who saves the excel C:\Export.xls file. I tried to open a file save dialog box, with
    BEGIN
               
      file_name_cl := CLIENT_GET_FILE_NAME('C:\Export', 'ExportExcel.xls', 'XLS Files (.xls)|*.xls|', NULL, SAVE_FILE, TRUE);
      file_name_cl := SUBSTR(file_name_cl,1,LENGTH(file_name_cl));
      --
      IF file_name_cl IS NULL THEN
         MESSAGE('INSIDE EXCEPTION STATEMENT');
         RAISE user_cancel;
      END IF;
    {code]
    
    But the file isn't saved. Why?
    
    So here is all the code
    PROCEDURE export_din_datablock (p_block varchar2) is

    REQUEST OLE2. OBJ_TYPE;
    WORKBOOKS OLE2. OBJ_TYPE;
    WORKBOOK OLE2. OBJ_TYPE;
    SPREADSHEETS OLE2. OBJ_TYPE;
    WORKSHEET OLE2. OBJ_TYPE;
    Arglist OLE2. LIST_TYPE;
    CELL OLE2. OBJ_TYPE;
    J INTEGER;
    INTEGER K;
    file_name_cl VARCHAR2 (32767).
    USER_CANCEL EXCEPTION;
    Workfont OLE2. OBJ_TYPE;
    WorkInterior OLE2. OBJ_TYPE;
    m_item varchar2 (40);
    m_tot_columns number: = 0;
    LC$ target Varchar2 (256): = "text.xls";
    LC$ Fic Varchar2 (256);

    -Inner Proc.
    Procedure put_cell (number of no_lig,
    Number of Col_num,
    put_value varchar2,
    FONT_NAME varchar2 default null,
    font_size directory by default null,
    font_style varchar2 default null, - we can use pune "BOLD" pentru "BOLD", "ITALIC" pentru italics, etc.
    font_color directory by default null) is
    Begin
    Arglist: = OLE2.create_arglist;
    OLE2.add_arg (arglist, row_num);
    OLE2.add_arg (arglist, col_num);
    cell: = OLE2.get_obj_property (Worksheet, 'Cells', Arglist);
    OLE2.destroy_arglist (arglist);
    OLE2.set_property (Cell, 'Value', put_value);

    Workfont: = OLE2.get_obj_property (cell, 'Make');
    WorkInterior: = OLE2.get_obj_property (cell, 'Interior');
    If font_name is not null then
    OLE2.set_property (Workfont, 'Name', FONT_NAME);
    End if;
    If font_size is not null then
    OLE2.set_property (Workfont, 'Size', font_size);
    End if;
    If font_style is not null then
    OLE2.set_property (Workfont, font_style, 1);
    End if;
    If font_color is not null then
    OLE2.set_property (Workfont, font_color 'ColorIndex');
    End if;
    OLE2.release_obj (workfont);
    OLE2.release_obj (workinterior);
    OLE2.release_obj (cell);
    End;


    BEGIN

    file_name_cl: = CLIENT_GET_FILE_NAME ('C:\Export', 'ExportExcel.xls', ' file XLS (.xls) | * .xls |', NULL, SAVE_FILE, TRUE);
    file_name_cl: = SUBSTR (file_name_cl, 1, LENGTH (file_name_cl));
    --
    IF file_name_cl IS NULL THEN
    MESSAGE ("INSIDE THE EXCEPTION STATEMENT");
    RAISE user_cancel;
    END IF;

    APPLICATION: = OLE2. CREATE_OBJ ('Excel.Application');
    OLE2. SET_PROPERTY (application, 'Visible', true);

    WORKBOOKS: = OLE2. GET_OBJ_PROPERTY (APPLICATION, 'NOTEBOOKS');
    WORKBOOK: = OLE2. INVOKE_OBJ (WORKBOOKS, "ADD");
    WORKSHEETS: = OLE2. GET_OBJ_PROPERTY (WORKBOOK, 'WORKSHEETS');
    WORKSHEET: = OLE2. INVOKE_OBJ (SPREADSHEETS, "ADD");
    OLE2.set_property (spreadsheet, 'Name', 'leaf-ul meu');

    GO_BLOCK (p_block);
    PREMIER_ENREGISTREMENT;
    -prima linie dedicated numelui sunt; pe linia incep 2.
    J: = 2;
    K: = 1;
    LOOP
    m_item: = get_block_property (p_block, first_item);
    K: = 1;
    Loop
    exit in M_ITEM IS NULL;
    If not id_null (find_item (p_block |'.)) ' || m_item)) then
    -daca point-urile sunt type specificat (+ eventual alte conditii), atunci to export data din ele
    If get_item_property (p_block |'.) ' || m_item, item_type) IN ('ELEMENT of TEXT', 'VIEW ARTICLES', 'LIST', 'CHECKBOX')
    and get_item_property (p_block |'.) ' || m_item, visible) = "TRUE" then
    If j = 2 then
    -preiau dinamic name if sunt afisez pe linia 1, cu "BOLD"
    put_cell (1, k, get_item_property (p_block |'.)) ' || m_item, column_name), null, null, 'FAT');
    end if;
    If not name_in (p_block |'.) ' || m_item) is NULL then
    -data afisez
    put_cell (j, k, name_in (p_block |'.)) ' || m_item));
    End If;
    K: = k + 1;
    end if;
    end if;
    -merg urmatoarea inregistrare
    m_item: = get_item_property (p_block |'.) ' || m_item, NEXTITEM);
    END LOOP;
    J: = J + 1;
    When the output: system.last_record = "TRUE";
    NEXT_RECORD;
    END LOOP;
    OLE2. Release_Obj (Worksheet);
    OLE2. Release_Obj (Worksheets);
    -Save the created Excel file
    Arglist: = OLE2. Create_Arglist;
    OLE2. Add_Arg (arglist, 'c:\export.xls');
    OLE2. Invoke (Binder, 'SaveAs', Arglist);
    OLE2. Destroy_Arglist (arglist);
    -Release of workbook
    OLE2. Release_Obj (Workbook);
    OLE2. Release_Obj (Workbooks);
    OLE2. Release_Obj (application);
    MESSAGE ("Export cu success!'");
    END;
    Please help.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    Roger

    Not to be confused... YOU read my previous POST.

    Also answer me...
    How do you want to save the file?
    1. replace or add to the file in the folder?
    2. create a new file in the folder?

    If you answer is first, change your code in a more dynamic way

    -Save the opened Excel file
    rglist: = OLE2. Create_Arglist;
    OLE2. Add_Arg (arglist, file_name_cl);
    OLE2. Invoke (Binder, 'SaveAs', Arglist);
    OLE2. Destroy_Arglist (arglist);

    So then you can give it

    -Save the created Excel file
    rglist: = OLE2. Create_Arglist;
    OLE2. Add_Arg(arglist,'c:\export\newexcelexport.xls');
    OLE2. Invoke (Binder, 'SaveAs', Arglist);
    OLE2. Destroy_Arglist (arglist);
    Your file will be saved in the "C:\export\" a folder with the name newexcelexport

  • Place the ini file in a specific location when the application generating

    Hello

    I have a little problem.  I have an ini file that I use to store some settings.  Lets call this app.ini file.  When I build the Application.exe, it puts this file in the data directory.  I was hoping that it would be at a higher level and be located in the same directory as Application.exe is (otherwise it will not read the file correctly.)  Looked at the settings of the Source file in the list of categories in the Properties window for the construction and all the 'Identical to the appellant' Destination, but he did not where I wanted.  I would really like this file to a directory higher when I do my build so that my application to read correctly.  Any suggestions?

    I use this executable then when I do my Installer and the problem just spreads here also, not good.

    One way to solve the problem:

    (1) in the build Properties window, select Destinations and create a new destination. Select the same directory where the exe file will be stored as 'Path of Destination'

    (2) assign this destination in the .ini file.

    Let me know if it works

    Marco

  • How can I download files directly to specific folders

    the files I want to download are in the download folder.

    the files I want to download are in the download folder.

    It is by default in the download folder. But you can change it. When you get the dialog box showing you going to the download folder, simply change the destination before pressing OK.

  • How to place outgoing files to multiple channels for a single agreement

    Hi all
    We must send the single at two different (channels) locations of the TP even HIPAA 834 document. We have unique HIPAA 834 agreement with a TP and a channel. is it possible to add both outgoing channels TP for a single TP/agreement?

    Thank you
    Kathar

    Hi Kathar,

    is it possible to add both outgoing channels TP for a single TP/agreement?

    A TP can have several channels, but an agreement can have only one associated channel. You can opt for the Oracle B2B here broadcast feature.

    You can read about this feature here-

    https://blogs.Oracle.com/oracleb2bgurus/entry/broadcast_feature_in_oracle_as

    Please note that this blog was written for 10g but concept and implementation is same in 11g.

    You must create two profiles TP TP even (you must use a different name/identifiers for both) and then to be part of the same group by adding identifier 'Group' in the two profiles with the same value. Middleware pass the header ' comprising:"in the name in name or an action event header.» When executing B2B will send the same message for two profiles TP.

    Kind regards
    Anuj

  • How can I find files stored in multiple locations on my hard drive?

    I have very few programs installed on my hard drive but I still have issues with disk space was too small. I suspect that I have music or photos that are duplicated on my hard drive and I would like to find a way to locate and remove these files.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    How to remove and delete the folder Windows.old on Vista or Windows 7
    http://www.kodyaz.com/articles/delete-Windows-old-removal.aspx

    =============================================

    If that does not free enough space then you must move data to others
    Media (such as other hard disks/partitions, CDs, DVDs or USB drives) and/or
    uninstall programs that you do not use.

    ------------------------

    It will show you how disk space is being used.

    WinDirStat - free - use to make sure you know what is too much space.
    http://WinDirStat.info/

    -Free - TreeSize tells you where precious space has gone to
    http://www.Jam-software.com/treesize_free/

    JDiskReport
    http://www.jgoodies.com/freeware/JDiskReport/index.html

    ===================================================

    Malicious software could play a role:

    If you need search malware here's my recommendations - they will allow you to
    scrutiny and the withdrawal without ending up with a load of spyware programs running
    resident who can cause as many questions as the malware and may be more difficult to detect as the
    cause.

    No one program cannot be used to detect and remove any malware. Added that often easy
    to detect malicious software often comes with a much harder to detect and remove the payload. Then
    its best to be thorough than paying the high price later now too. Check with them to one
    extreme overkill point and then run the cleaning only when you are sure that the system is clean.

    It can be made repeatedly in Mode safe - F8 tap that you start, however, you must also run
    the regular windows when you can.

    TDSSKiller.exe. - Download the desktop - so go ahead and right-click on it - RUN AS ADMIN
    It will display all the infections in the report after you run - if it will not run changed the name of
    TDSSKiller.exe to tdsskiller.com. If she finds something or not does not mean that you should not
    check with the other methods below.
    http://support.Kaspersky.com/viruses/solutions?QID=208280684

    Download malwarebytes and scan with it, run MRT and add Prevx to be sure that he is gone.
    (If Rootkits run UnHackMe)

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Malwarebytes - free
    http://www.Malwarebytes.org/

    Run the malware removal tool from Microsoft

    Start - type in the search box-> find MRT top - right on - click RUN AS ADMIN.

    You should get this tool and its updates via Windows updates - if necessary, you can
    Download it here.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN
    (Then run MRT as shown above.)

    Microsoft Malicious - 32-bit removal tool
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en

    Microsoft Malicious removal tool - 64 bit
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=585D2BDE-367F-495e-94E7-6349F4EFFC74&displaylang=en

    also install Prevx to be sure that it is all gone.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Prevx - Home - free - small, fast, exceptional CLOUD protection, working with others
    security programs. It is a single scanner, VERY EFFICIENT, if it finds something to come back
    here or use Google to see how to remove.
    http://www.prevx.com/   <-->
    http://info.prevx.com/downloadcsi.asp  <-->

    Choice of PCmag editor - Prevx-
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp

    Try the demo version of Hitman Pro:

    Hitman Pro is a second scanner reviews, designed to save your computer from malicious software
    (viruses, Trojans, rootkits, etc.). who infected your computer despite safe
    what you have done (such as antivirus, firewall, etc.).
    http://www.SurfRight.nl/en/hitmanpro

    --------------------------------------------------------

    If necessary here are some free online scanners to help the

    http://www.eset.com/onlinescan/

    New Vista and Windows 7 version
    http://OneCare.live.com/site/en-us/Center/whatsnew.htm

    Original version
    http://OneCare.live.com/site/en-us/default.htm

    http://www.Kaspersky.com/virusscanner

    Other tests free online
    http://www.Google.com/search?hl=en&source=HP&q=antivirus+free+online+scan&AQ=f&OQ=&AQI=G1

    --------------------------------------------------------

    After the removal of malicious programs:

    Also follow these steps for the General corruption of cleaning and repair/replace damaged/missing
    system files.

    Start - type this in the search box-> find COMMAND at the top and RIGHT CLICK – RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to fix the system files of Windows 7 with the System File Checker
    http://www.SevenForums.com/tutorials/1538-SFC-SCANNOW-Command-System-File-Checker.html

    How to analyze the log file entries that the Microsoft Windows Resource Checker (SFC.exe) program
    generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Also run CheckDisk, so we cannot exclude as much as possible of the corruption.

    How to run check disk in Windows 7
    http://www.SevenForums.com/tutorials/433-disk-check.html

    -----------------------------------------------------------------------

    If we find Rootkits use this thread and other suggestions. (Run UnHackMe)

    http://social.answers.Microsoft.com/forums/en-us/InternetExplorer/thread/a8f665f0-C793-441A-a5b9-54b7e1e7a5a4/

    ======================================

    If necessary AFTER THAT you are sure that the machine is clean of any malware.

    How to do a repair installation to repair Windows 7
    http://www.SevenForums.com/tutorials/3413-repair-install.html

    ======================================

    Here are several free utilities to check duplicates and they all have their advantages
    and methods. Make sure that you have backups before deleting all files.

    Auslogics Duplicate File Finder is the MD5 search engine that allows you to find duplicate
    files content, without worrying other matching criteria. It would be useful, for example, when two
    identical mp3 tracks or video files have different names
    http://www.Auslogics.com/en/software/duplicate-file-Finder

    find and delete the duplicate - free
    http://www.easyduplicatefinder.com/
    Versions Installer and Portable

    Search files in doubles or similar - even binary - free
    http://www.Joerg-Rosenthal.com/en/antitwin/

    quickly find all the files in a folder and its subfolders - free duplicate
    http://www.Mindgems.com/products/fast-duplicate-file-Finder/fast-duplicate-file-Finder-about.htm

    Duplicate File Finder - Smart Port Forwarding - TCP Port Scanner - TCP Port Tunnel - multi-minuterie-free
    http://www.brooksyounce.com/

    Duplicate File Finder software (pictures, mp3, iTunes)
    http://www.Moleskinsoft.com/

    I hope this helps.

Maybe you are looking for

  • cannot signin and asked the link change password and have not received. I asked at least 5 times!

    I understand the accounts settings before 2010 to reset password, but it's difficult if you can not receive the link to get the discount to zero fact. Please can we get this support. I made several request for the link, at least 6 in the last two wee

  • Websites blocked due to security settings that I did not go to Yahoo Games

    I played Yahoo Games for years. About 3 days ago, they failed to load. When I asked about it, I saw that many other people had the same problem. So I waited. "This morning I tried to enter one of the games and got: blocked due to security settings Ap

  • ABOUT THE conime.exe FILE

    The above refers to a program file (conime.exe), located inWINDOWS\SYSTEM32C:\, starts when I start windows xp. Is this a necessary operating program? What is doing? What happens if I turn it off?

  • Installed the Windows updates now sound does not work.

    I used the windows update Center yesterday and installed the updates that were for my computer, now my sound does not work. When I try and open "Dolby-Publisher of stars", I get this message: Any help tp fix it would be greatly appreciated as im am n

  • Possible hacking of my office

    Awhile back, I had a computer repairman in our House to solve a problem since we were still under the manufacturer's warranty.  The problem has been supported, but the technology was "dubious" itself.  Starting very shortly after his visit that seems