SSAS 2005 put measures in the same folder

I created a SSAS 2005 cube and connect to it from Excel 2007. I have a measure group sales. The key of the table is receipt no, line no. Now I create a new measure transactions, which is count distinct of receipt no.  SSAS 2005 automatically assign
the new measure in a separate measure group. The problem is in Excel, sales related measures are now in two measure groups (the sales and newly created one for the transactions). I find it a bit of awkward to go to these two folders to drag these measures
since they are requested together a lot.
 Is there a way to put these measures in same folder? I know there is a folder property for each measure in BIDS, but that will just create a new folder under existing folder for the measure group. Thanks.

Just mark the distinct count measure as Visible=false, rename it to Transaction Count Hidden. Then create a calculated measure in the right measure group with a calculation that simply references the hidden measure... An alias calc measure.
http://artisconsulting.com/Blogs/GregGalloway

Similar Messages

  • Just purchased a ipod and trying to import my music collection. When I have imported some artist have duets with others and those are going in seperate folders not the same as the artist. How can I put all the music in the same folder

    have alot of music to import and some of the artist are not in the same folder. like elton john who has duets with others. is there anyway to put all the music in same folder and not have several folders for same artist

    If you right click on a son in iTunes and click Get Info. Under the Sorting tab iyo can change how the songs is sorted in iTunes
    Tips for using song and CD info to organize your music
    You can edit information in the Info window to make it easier to find and sort items in your library. For example, you can:
    Group individual movements on a classical CD into one work by indicating the name of the work (for example, “Piano concerto in A Minor, Op. 54”) in the Grouping field.
    Group songs that are part of a compilation together in your library by clicking Details and selecting the checkbox next to “Album is a compilation of songs by various artists”.
    Identify the individual artists on a tribute album in the Artist field, and type “various” in the Album Artist field.
    Create your own genre category by clicking Details and typing the category in the Genre field.
    Change the order in which tracks on a CD play by changing the numbers in the Track fields.
    Create a Smart Playlist that includes only songs that are just the right speed for your workout by typing the number of beats per minute in the BPM field. For instructions, see Create a Smart Playlist.
    Identify a movie as a music video (click the Options button, and choose Music Video from the Media Kind pop-up menu).
    Identify an item that you imported from a CD as an audiobook, so it appears under Audiobooks instead of Music (click the Options button and choose Audiobook from the Media Kind pop-up menu). If you do this, iTunes also remembers your place in the audiobook.
    Enter custom sorting criteria for an item. Select the item, choose File > Get Info, click Sorting, and enter the custom text.
    Does the non-syncing songs play in iTunes on the computer?
    is there anything different about the songs that do sync and those that do not? Like where they cam from? The format (Get Info>under the File tab).

  • HT1451 how do i get updates put in the same folder as apps???

    I was being super organised and due to a large amount of apps i decided to make a library in windows explorer dedicateded to apps - how can i get the updates put in the same folder. i also put my music and books into a seperate folder (not in the itunes music folder)how do i get new songs / new books put there?

    Drag the artwork from the artwork window to the desktop.  Then, select the song without artwork and drag the artwork to the blank artwork window.

  • Find text and replace with a pdf stored in the same folder

    Hello,
    I have a catalog that is updated every so often.  I have written a script to find/replace the text from a .txt file.  but i have a pdf that i want to insert that is part of it as well.  Inside the .txt file i have the name of the document.  and the pdf is stored inside the same folder as the original .indd and the .txt file.
    can someone point me at some examples on how this could be done. 
    Thanks

    I use this script: it puts a txt in a text frame, check the overflow and find/replace some words with a pdf. Hope this is helpful.
    Paolo
    /************************FLOW************************************************
    * This function looks for Overflows in the story and either resizes the           *
    * frame to the size of the margins (if necesary) or adds a new page and     *
    * a new frame, which is then linked to the previous frame.esizes the           *
    function flow(){
        for(var i = 0; i < app.activeDocument.pages.count(); i++)
            for(var b = 0; b < app.activeDocument.pages[i].textFrames.count(); b++)
                if(app.activeDocument.pages[i].textFrames[b].overflows == true )
                    var currentPage = myDocument.pages[i];
                    var myPageNo = currentPage.name;
                    var currentFrame=currentPage.textFrames[b];
                    var e =currentFrame.geometricBounds[0];
                    var f =currentFrame.geometricBounds[1];
                    var g =currentFrame.geometricBounds[2];
                    var h =currentFrame.geometricBounds[3];
                    if(myPageNo %2==0){
                        var myMargins =currentPage.marginPreferences;
                        var a = currentPage.bounds[0]+myMargins.top;
                        var b = currentPage.bounds[1]+myMargins.right;
                        var c = currentPage.bounds[2]-myMargins.bottom;
                        var d = currentPage.bounds[3]-myMargins.left;
                    else{
                        var myMargins =currentPage.marginPreferences;
                        var a = currentPage.bounds[0]+myMargins.top;
                        var b = currentPage.bounds[1]+myMargins.left;
                        var c = currentPage.bounds[2]-myMargins.bottom;
                        var d = currentPage.bounds[3]-myMargins.right;
                    if (g < c)
                        currentFrame.geometricBounds = [a,b,c,d];
                    else if (g==c){
                    var newPage = myDocument.pages.add(LocationOptions.AFTER, currentPage);
                    currentPage = newPage;
                    myPageNo = currentPage.name;
                    if(myPageNo %2==0){
                        var myMargins =currentPage.marginPreferences;
                        var a = currentPage.bounds[0]+myMargins.top;
                        var b = currentPage.bounds[1]+myMargins.right;
                        var c = currentPage.bounds[2]-myMargins.bottom;
                        var d = currentPage.bounds[3]-myMargins.left;
                        var newFrame = currentPage.textFrames.add({geometricBounds:[a,b,c,d]});
                        newFrame.textFramePreferences.textColumnCount = 7;
                        newFrame.previousTextFrame = currentFrame;
                    else{
                        var myMargins =currentPage.marginPreferences;
                        var a = currentPage.bounds[0]+myMargins.top;
                        var b = currentPage.bounds[1]+myMargins.left;
                        var c = currentPage.bounds[2]-myMargins.bottom;
                        var d = currentPage.bounds[3]-myMargins.right;
                        var newFrame = currentPage.textFrames.add({geometricBounds:[a,b,c,d]});
                        newFrame.textFramePreferences.textColumnCount = 7;
                        newFrame.previousTextFrame = currentFrame;
    //************************************END FLOW FUNCTION*********************************************
    /*******************TextPlacer***************************
        this script will add a text file in an existing text frame
        Questo file deve essere copiato nella cartella Script di InDesign
    function myGetBounds(myDocument, myPage){
    var myPageWidth = myDocument.documentPreferences.pageWidth;
    var myPageHeight = myDocument.documentPreferences.pageHeight
    if(myPage.side == PageSideOptions.leftHand){
    var myX2 = myPage.marginPreferences.left;
    var myX1 = myPage.marginPreferences.right;
    else{
    var myX1 = myPage.marginPreferences.left;
    var myX2 = myPage.marginPreferences.right;
    var myY1 = myPage.marginPreferences.top;
    var myX2 = myPageWidth - myX2;
    var myY2 = myPageHeight - myPage.marginPreferences.bottom;
    return [myY1, myX1, myY2, myX2];
    /*******************ImagePlacer***************************
        this script will addimages to the document by
        substituting them with the name of the image file
        between @s (file format included[@mypic.bmp@]),
        selecting them from a specified file (see below)
        and applying object styles to them, as well as
        applying the right tab i necesary.
        It then looks for overflows in the document. If an
        overset is found, it will resize to margin size the
        text frame and if overset continues, it will add a
        new page and frame, which then will be linked
        to the previous frame, allowing the story flow.
        Questo file deve essere copiato nella cartella Script di InDesign
    //Creates a new document using the specified document preset.
    //Replace "myDocumentPreset" in the following line with the name
    //of the document preset you want to use.
    var myDocument = app.documents.add(true,app.documentPresets.item("Preset"));
    //If the active document has not been saved (ever), save it.
    if(app.activeDocument.saved == false){
    //If you do not provide a file name, InDesign displays the Save dialog box.
    app.activeDocument.save(new File("/Users/Paolo/Desktop/Documento.indd"));
    function main()
    var myDocument = app.documents.item(0);
    var myPage = myDocument.pages.item(0);
    var myTextFrame = myPage.textFrames.add({geometricBounds:myGetBounds(myDocument,myPage)});
    myTextFrame.textFramePreferences.textColumnCount = 7;
    myTextFrame.place(File("/Users/Paolo/Desktop/text.txt"));
    //Place a text file in the text frame.
    //Parameters for TextFrame.place():
    //File as File object,
    //[ShowingOptions as Boolean = False]
    //You'll have to fill in your own file path.
    //Define GREP search
    var grepFind ="@@@.+@@@";
    //Folders name where there are pdf, must be in the same place of the file
    var myFiguresFolder = "testatine";
    // Applied paragraph style
    var myPStyle = myDocument.paragraphStyles.item("Paragraphstyle");
    var NextPStyleCS = myDocument.paragraphStyles.item("Par_Style");
    var NextPStyleEN = myDocument.paragraphStyles.item("Par_Style_en");
    var NextPStyleDE = myDocument.paragraphStyles.item("Par_Style_de");
    // Applied text style
    var myCStyle = myDocument.characterStyles.item("text");
    //Applied object style
    var myOStyle = "";
    var oStyle_1 = myDocument.objectStyles.item("Pictures");
    var oStyle_2 = myDocument.objectStyles.item("Pictures");
    var oStyle_3 = myDocument.objectStyles.item("Pictures");
    //MEASUREMENTS
    var maxWidth = 467; //Maximum width of an image
    var maxHeight = 666; //Maximum Height of an image
    var colWidth = 468; //Width of the main columb (340pt) + maximum Tab (128pt)
    var maxTab = 0;
    var xTab;
    var xtTab;
    var minTWidth = 340; //any image with a width below this will have the maximum Tab (maxTab) applied.
    var PWidth; //Width of the Picture
    var PHeight;//Picture Height
    var myTotal;
    //---------------------------------ALERTS---------------------------------\\
    var notSaved = "Documento non salvato; devi prima salvare il documento";
    var noFolder = "No such folder exists; "+myFiguresFolder;
    var noImageMessage = "No Images were found";
    var finished = " immagini sostituite"
    //---------------------------------ALERTS---------------------------------\\
    /************************END OF STORY*****************************************
    *  The object of this bit of programming is to add an empty paragraph break *
    *  at the end of the story, in order to make the actual script work in the case   *
    *  that the LAST paragraph were a TABLE                                                              *
    var findEnd_of_Story = "\\r(?=\\z)" //GREP for End of Story                        //
    app.findGrepPreferences = NothingEnum.nothing;                              //
    app.changeGrepPreferences = NothingEnum.nothing;                         //
    app.findGrepPreferences.appliedParagraphStyle = myPStyle;              //
    app.findGrepPreferences.findWhat = findEnd_of_Story;                      //
    var fItems = myDocument.findGrep();                                              //
    var myC = fItems.length-1;                                                             //
    if (fItems =!0){                                                                              //
        do{                                                                                             //
            if (fItems.appliedParagraphStyle = myPStyle){                          //
                cItem = fItems[myC]                                                          //
                app.changeGrepPreferences.changeTo = "$0\\r";                  //
        myDocument.changeGrep();                                                       //
    myC--;                                                                                           //
    while (myC >= 0);                                                                       //
    try{
    var myDocPath = myDocument.filePath; //Complete Path to the Current Document
    catch (myError){
    alert (notSaved);
    //throw("");
    return;
    var myFFldr =Folder(myDocPath+"/"+myFiguresFolder); //Complete Path in which the figures to be placed should be found
    if(myFFldr.exists){
        flow();
        app.findGrepPreferences = app.changeGrepPreferences = null;
        app.findGrepPreferences.findWhat = grepFind;
        var myFoundItems = app.activeDocument.findGrep();
        var myCounter = myFoundItems.length-1
        myTotal = myCounter+1;
        for (i = myCounter; i >=0; i--) {
            var myName = myFoundItems[i].contents.replace (/@/g, "");
            app.selection = myFoundItems[i];
            var fFig=app.selection[0];//Found text for
            var cPStyle= fFig.appliedParagraphStyle;
            var myFile = new File( myFFldr + "/" + myName);
            if (myFile.exists) {
                var cFig = fFig.place(myFile);
                var sFig = cFig[0].parent;
              switch (cPStyle){
                  case (myPStyle):
                  myOStyle =oStyle_1;
                  PWidth = sFig.geometricBounds[3] - sFig.geometricBounds[1];
                  PHeight = sFig.geometricBounds[2] - sFig.geometricBounds[0];
                  if (PWidth >= minTWidth){
                      xTab = (colWidth-PWidth);
                  else{
                      xTab =maxTab;
                  var currentPar = sFig.parent.paragraphs.item(0);
                  currentPar.leftIndent = xTab;
                  var nextPar= currentPar.insertionPoints[-1].paragraphs[0];
                  var nextParStyle = nextPar.appliedParagraphStyle;
                  if (nextParStyle == NextPStyleCS||nextParStyle ==NextPStyleEN||nextParStyle == NextPStyleDE){
                      xtTab = xTab
                  else {
                      xtTab = nextPar.leftIndent;
                  nextPar.leftIndent =xtTab;
                  sFig.appliedObjectStyle = myOStyle;
                  cPStyle = "";
                  break;
                  case (myPStyle):
                  myOStyle = oStyle_3;
                  sFig.appliedObjectStyle = myOStyle;
                  cPStyle = "";
                  break;
                  default:
                  myOStyle = oStyle_2;
                  sFig.appliedObjectStyle = myOStyle;
                  cPStyle = "";
                  break;
              var oFig = sFig;
              sFig = ""
    flow();
      //alert(myTotal + finished);
    else{
        alert(noFolder);
    var myDocument = app.documents.item(0);
    //Clear the find/change grep preferences.
    app.findGrepPreferences = NothingEnum.nothing;
    app.changeGrepPreferences = NothingEnum.nothing;
    //Set the find options.
    app.findChangeGrepOptions.includeFootnotes = false;
    app.findChangeGrepOptions.includeHiddenLayers = false;
    app.findChangeGrepOptions.includeLockedLayersForFind = false;
    app.findChangeGrepOptions.includeLockedStoriesForFind = false;
    app.findChangeGrepOptions.includeMasterPages = false;
    //Regular expression to use
    app.findGrepPreferences.findWhat = "<(.+?)>";
    //Apply the change to 24-point text only.
    //app.findGrepPreferences.pointSize = 24;
    //app.changeGrepPreferences.underline = true;
        var myFoundItems = app.activeDocument.findGrep();
        var myCounter = myFoundItems.length-1
        myTotal = myCounter+1;
        //alert("occorrenze" + myTotal);
        app.changeGrepPreferences.changeTo= "$1";
        app.changeGrepPreferences.appliedCharacterStyle= myDocument.characterStyles.item("head");
       myDocument.changeGrep();
      for (i = myCounter; i >=0; i--) {
            var myName = myFoundItems[i].contents.replace ("/</g", "");
            var myName = myFoundItems[i].contents.replace ("/>/g", "");
            app.selection = myFoundItems[i];
            var fFig=app.selection[0];//Found text for
            var myCStyle = myDocument.characterStyles.item("head");
            app.selection[0].applyCharacterStyle(myCStyle, true);
    //Clear the find/change preferences after the search.
    app.findGrepPreferences = NothingEnum.nothing;
    app.changeGrepPreferences = NothingEnum.nothing;
    main();

  • I want to but can't play WAVs and MP3s in the same folder, please he

    Hello,
    I have a Zen Nano Plus. One of the reasons I got it was because it has a built in microphone. When you record with the mic it saves it as a WAV file, and puts it in the "recorded" file. I want to make a folder with both songs (mp3s) and bits of spoken word that I record in - so that when I play it I can select shuffle and it will randomly play either a song or a recorded part. (It's for a friend in a coma and we want to leave it playing her favourite songs as well as messages from her friends.) When I make a new folder it won't recognise WAVs only the MP3s, and when I put MP3s in the "recorded" file it won't recognise them, only the WAVs. The shuffle option will only shuffle between tracks in the same folder. I've called the help line and spent half an hour talking to them but nothing was solved. I realise that I can convert the WAV files into MP3 files (anyone recommend a good, free converter?) but would rather not have to do this. Also, if it is possible to play both in the same folder, can I also record through the mic directly into this folder? This would save me having to take it home whenever a new message is left to organise the tracks.
    Any help given very much appreciated,
    Anil.

    Firmware is the operating system of the player, written by Creative. Peebee is saying that it would require a fundamental change to this operating system, which would need to be reprogrammed by Creative. You can by all means request it as a wishlist item, by sending to support, but there's no guarantee it will be implemented.

  • How to have projectname_edge.js in a subfolder? (not in the same folder as the project file)

    Hello,
    Is it possible to have the file projectname_edge.js in a subfolder? Not in the same folder with projectname.html.
    It seems that edge.5.0.1.min.js looks for dependencies only in the same place as the main file of the project. Moving projectname_edge.js to other folder (js, script, etc) causes the animation not to run. Can I store it in different folder? I would like to put it into "Content" or "Scripts" folder on the server.
    I am trying to integrate edge animation into ASP.NET MVC application, and I do not have any index.html file. I am inserting the <!--Adobe Edge Runtime--> section into the view  (the .cshtml file stored in subfolder). Having the projectname_edge.js in the main server path require to deal with security settings, so I would like to put it in 'Scripts'.
    I found the video showing the solution for the older API: http://www.edgedocks.com/content/edge-animate-publish-files-and-js-folder but it is no longer valid with Edge 5.0 API
    Any ideas how to achieve this?
    Thank you in advance!
    Eric

    Thank You! This is exactly what I looked for!
    Additionaly having runtime projectname_edge.js in htmlroot in ASP.NET MVC website, is slowing down the animation show up. Now (with subfolder) it working fast and fluid
    Many, many thanks!

  • I am getting the following error message when i download CS6 Design Standard 'The message says" the file archive part of Adobe CS6 Design Standard is missing. you need all parts in the same folder in order to extract adobe CS6 Design Standard. Please down

    i am trying to download CS6 design standard. but it wont work. the second part of the download comes up with the following message "The message says" the file archive part of Adobe CS6 Design Standard is missing. you need all parts in the same folder in order to extract adobe CS6 Design Standard. Please download all parts."
    Does anyone know what to do?

    Do as it says: Put your downloaded 7z file and the *.exe in a proper folder, not just dump it onto your desktop or whatever.
    Mylenium

  • Files from Windows 7 are not alphabetized correctly on OS X, and can match identically named files in the same folder

    I receive MS Word files from students using Macs or Windows-based computers.  This year, files prepared by students using Windows 7 are not alphabetized correctly on my Mac (under Snow Leopard or Mountain Lion).  The same four students keep having their files put at the END of the alphabetical sort by name, even though the files should appear earlier in the list.  I have to copy the file contents and paste the contents into a new document to get the new document to appear in the right order, and if I do so, then BOTH the old and new files appear in the Finder, even though the names appear to be identical!  So can have to files with the same name in the same folder, which ought to be impossible.  Does anyone have any idea what's going on?

    Bingo! 
    The problem is not the letters themselves, but non-letter characters in the file name; this showed up with the fixed-width fonts. The apparent duplicates and mis-sorting are caused by dashes, which differ because they're done as en-dashes in one file name and em-dashes in the other file name, or by curly or straight apostrophes.  I didn't see that in the Finder window.
    I never saw this behavior before this year.  Last year, when I was using a Mac for the first time, I did not see any such problem, even though my students' files were named using the same conventions. When I was using a Windows-based laptop before that, I never saw the problem.
    Windows must do something to style the non-letter characters differently than a Mac.  Is there any place in Windows Explorer or the OS X Finder that styles characters this way?  I can see this being a big problem for someone who needs to sort very important data by name, when the files are coming from different operating systems!
    (I just Googled en-dash, em-dash, and curly quotes with file names, and found a good number of posts on various sites about similar problems based on ASCI character coding, html coding, Windows Explorer, and other applications.  Sometimes the files don't appear at all, because the application reading the file name can't deal with a certain ASCI code.  What a mess.)

  • How do I return to the same folder in Mavericks?

    Since I've upgraded to Mavericks, my apps always go back to the top level when I open a document. For example, let's say I want to open a document called SAMPLE FILE.  I go to the file menu, select OPEN and then navigate thru the directory to find the file I want...
    HD > Clients > Documents > SAMPLE FILE
    Now I want to open a second file - I go to the file menu, select OPEN and instead of returning to the "Documents" folder where my SAMPLE FILE was just found - it puts me back at the top of the directory...
    HD >
    ... and I have to dig thru all the folders again to return to where I just was.
    In my previous system configurations (going back as far as I remember) - the default was to return to the same folder. Or maybe I always set the preferences that way - I honestly don't remember. But now I've searched all over for it and can't find it. Anyone know where to find it? Or has it been eliminated in Mavericks? I can't imagine Apple would do that.
    Any and all help would be appreciated. Thanks.

    Dear Friends
    My actual problem description as the following
    I have a form for production order screen , and this form contain header and details blocks , so the user in the details will select Type Code , and he will go the next field that is Item Code Field search for specific Item Code if it is not exist he has to call the Item Definition Form by using this script
    CALL_FORM(ITEM_DEFINITION);
    Then when he finished defining the Item , and I assign the item code as the following in the :
    WHEN-BUTTON-PRESSED TRIGGER
    :GLOBAL.ITEM_CODE_VAR := :ITEM_CODE;
    DO_KEY('exit_form');
    But I don't know where to keep this assignment
    :ITEM_CODE := :GLOBAL.ITEM_CODE_VAR;
    inside the caller form in which trigger do I have to use when it return from the caller form it should assign the :GLOBAL.ITEM_CODE_VAR to the :ITEM_CODE and the cursor it should show inside the ITEM_CODE , and as I mention it does not return to the same location of The ITEM_CODE when it return from the calling form
    Waiting for your valuable answer .
    With example please .
    Best Regards
    Jamil Alshaibani

  • Why all the videos are in the same folder

    Hi,
    Is there a way to put videos in a different folder or they always ended up in the same folder on the Ipod, any help would be ....
    thanks
    Mike

    My 10 step solution
    1. Plug in your Ipod and start Itunes.
    2. Now in Itunes select your Ipod.
    3. Then go to file and click on New Smart Playlist.
    4. make sure that Match the following rule is checked.
    5. What I did was change artist to album and give it a name such as horror or action then press ok.
    6. now when your movies are in the ipod go to your movie and click on file and click on get info.
    7. A window opens and click on the info tab and under album write what you wrote for the smart playlist such as action or horror and click OK.
    8. it will update your movie depending on file size and length is how long it will take to update.( for me with a dual 2.7 g5 i waited like 3-5 mins for a 2:30 hr movie.
    9. Once done it will be in your new folder.
    10. Your Done
    I hope this helps.

  • Install more than one exe into one folder or into some subfolders of the same folder

    Hi!
    I want to do at least one of the following:
    1. I want to install several exes (built with LV app builder) into one directory because they belong together.
    2. Make several subfolders under the same top level folder aand install exes into each of them.
    The (top level) folder should be the "company" folder. The subfolders are for the applications.
    For example:
    c:\company\app1\app1.exe
    c:\company\app1\app1setup.exe
    c:\company\app2\app2.exe
    etc.
    This may also reside under the "program files" folder.
    If i try to do so, i encounter some problems setting up the build specifications. If i have more than one build spec. for exes i cannot add them to the same folder. At least if they contain the same external files, e.g. dlls.
    If i try to make one installer per exe, i get an error message telling me that the same folder (my "top level folder") already exists in the registry and cannot be added a second time. This is also true if i try to make a new project instead of having several installer build specs in one project.
    I use Labview 2009 (engl.) under Windows Vista (german).
    If anyone has some help for me or encounters similar problems please let me know.
    Holger
    Message Edited by HolgerD on 09-26-2009 10:13 AM
    Solved!
    Go to Solution.

    Hi Holger,
    the build directories should be different for each build, but you can copy the executables into one folder manually (tested successfully in WinXP). For multiple installers, put each installer build in a separate directory, and install all to the same program files subfolder. Works with XP (tested!), so this must be a Vista issue...
    Please build the four specs in attached project and run both installers to the same directory - should be working...
    Best regards,
    Sebastian
    Attachments:
    calc.dll.zip ‏73 KB

  • DLL needs to be in the same folder as LabView85.exe

    I initialise a spectrometer using a call to
    a dll through a call function library node. The dll was supplied with the
    spectrometer (which also came with its own stand alone software) and was
    installed in the spectrometer folders in C:\Program Files\Spectrometer. The standalone
    software works fine. However my labview code does not initialise the
    spectrometer properly if I point the function node to same copy of the dll.
    In order to get my code to initialise
    properly I have to
    a)     
    put a copy of the dll in the
    same folder as Labview85.exe
    b)     
    reset the path in the call
    library function node every time I open my code (ie browse and reselect the dll
    that the node is already pointing to and click OK)
    Any ideas why this is?
    I am considering using the ‘Specify path on
    diagram’ option to see if this would make a difference and allow me to point to
    the dll in C:\Program Files\Spectrometer but since I have many function nodes
    that I would need to change I would like to know if there is another fix, before
    ploughing ahead.
    I use calls to other dlls in the same
    program and these work fine wherever the dll is located.
    Thanks in advance
    Dave

    Hi Dave,
    I apologize for misunderstanding the first go around.  In order to prevent LabVIEW from prompting for the DLL path each time you execute, the location of the DLL must be added to the VI Search Path in LabVIEW.  Here are the steps for accomplishing thispen a new VI in LabVIEW.
    Select Tools » Options. Select Path and VI Search Path from the pulldown menus.
    Uncheck the Use Defaults checkbox.
    Use the Browse button to select the path to the directory in which you are storing the DLL.
    You can find more details about the issue here.
    Regards,
    Justin Fuller
    National Instruments
    -Justin F
    National Instruments
    Worldwide Graphical System Design Conference and Exhibition
    August 5-7 – Register now >

  • Want to replace Wav Files with Apple Lossless in the same folder...Scripts?

    Hello!
    I have about 4,000 wav files (wow) that I digitized from Vinyl. I organize my media folder myself (I have the organize option unchecked in preferences) and most of the songs are not properly tagged. I would love to convert the wav files to apple lossless and have Itunes save the file in the same folder from where it originated. I havent found a way to do this yet. Its weird to me that I can select a song in a playlist and hit "Show in Finder" and it knows exactly where it is yet when I convert files to apple lossless they end up in the "unknown artist-unknown album" folder. Anyone have any ideas or is there any scripts that can do this for me ? thanks so much!!
    I had found one script that deletes the original wav files but still the new apple lossless are still put in the unknown album folder.....
    Zeke

    When iTunes converts a file, it does not allow you to direct the location of the output file, but rather places it according to the Artist/Album tags, which in your case are unknown.
    Almost every other conversion tool allows you to direct the location of the output. There are not a huge choice that run on the Mac and support Apple Lossless, but a good one is Max.

  • Images (and image folders) in the same folder as Lightroom Catalog?

    I'm just switching over from Aperture 3 to Lightroom 4.  I'm wondering if its ok (or smart) to keep the images (and image subfolders) in the same folder that the Lightroom.lrcat and Previews files are kept in.  I'm trying to better organize my Pictures folder so that there are a whole bunch of separate sub-folders.  Thoughts?

    In Lightroom, there is no specific location where the photos should go. You can put them wherever you want, based upon your storage needs and hard drive setup.
    So, with regards to your specific question, yes you can put the photos in the same folder as where the .lrcat is located, I can't see any harm, but I also don't think you need to do the work to make that happen. You can pretty much leave your photos where they are (which is easier and less time consuming) than moving them to the .lrcat folder, and easier and less time consuming than moving them at all.
    In fact, I strongly suggest you change your thought processes from "Where do I put my photos" to "How can I organize my photos". Now that you are a Lightroom user, you organize your photos from within Lightroom, not by moving them here to there, but by adding keywords and other metadata. Organizing, now that you are LR user, is not folders ... it is metadata. Searching, now that you are a LR user, is not done in your operating system and in folders, it is done in LR by searching for keywords and other metadata.

  • Downloading a file to the same folder as an applescript

    I have never used applescript before and have what should be a simple problem.
    I just want to download via FTP a file and have it in the same folder as script application.
    This is what I have and it downloads what I want, but to get it where I want. This puts it in my home directory. I think "path to me" needs to come in here somehow. Now I am dumb so probably need the whole script!! thanks.
    tell application "System Events"
    do shell script "curl 'ftp://user:password@server//www/htdocs/current/l.txt' -o ~/l.txt"
    end tell

    Try using:
    tell application "Finder"
    set path_2 to quoted form of POSIX path of (folder of (path to me) as alias)
    end tell
    tell application "System Events"
    do shell script "curl 'ftp://user:password@server//www/htdocs/current/l.txt' -o " & path_2 & "l.txt"
    end tell
    (41158)

Maybe you are looking for

  • How can I convert an version into a master?

    I just upgraded to Ap3 from Ap2. I have lost the reference to master files on hundreds of my images. There doesn't seem to be any rhyme or reason as to which master images disappeared. I have tried all three options for repairing the library and they

  • Can i use icloud as storage and delete pictures from macbook?

    My macbook is currently full. I would like to know if i can move all photos/videos to icloud then delete them from macbook. My fear is the backup would run and realize they were not on the macbook then delete them from the cloud.

  • Fiscal Year Variant V3

    Hi Experts, I am using V3 Variant, ( I don't no how to maintain it ?) In OB52 I have Maintatined Periods from 1,2008 to 12,2010 and 13,2008 to 16,2010 In MMRV, Current Period is 04,2008. I have checked Allow posting to previous period. Now, while doi

  • Vendor master maintenance from one client to other

    Hi, Vendor master will be created in a production client and transferred to other client using ALE. The changes will be made only in first prodcution client. For any changes in vendor master of those vendorsin first production client, needs to get up

  • Blobs

    Hi all, I am having a table with one of the column as Blob.When I use Form builder to develop a form then in the data block wizard I am getting the following error message: Unsupported network datatype or presentation I am able to insert value into b