How can I use a module of another project?

Hi
I am using Visual studio 2013.
I have a solution with 2 projects (console application).  In the first one there is a module that I want to use it in the other project (without compliantly recreate it in the second one, otherwise what is the benefit to have several projects in one
solution?). is it a way to do that? 
Thanks.

Hi,
You erroneously posted you question on the Project forum, which is dedicated to the scheduling and planning Microsoft application.
Please go to the VS forum to have a proper help:
http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=visualstudio
Hope this helps,
Guillaume Rouyre, MBA, MCP, MCTS |

Similar Messages

  • How can we use Bounded Taskflow in another project.

    Greetings!
    Suppose we have 2 projects: projectA and projectB.
    In projectB we have 4 bounded taskflows: T1, T2, T3, T4.
    In projectA we have a view with a dynamic region, text input for digits and a command button.
    How can we fill our dynamic region with taskflows from projectB, by typing a number of it and pressing a button.
    Thank you.

    Hi,
    Yes, I know.
    However, I'm under the impression that this is not the preferred method. All the documentation describe the ADF library method and I cannot find any description about putting them in a separate project.
    All said, it seems to kind of work, using the 'jar dependencies', except for taskflows with a nested taskflow from another project. An I still need to import them as adf library.
    We'd like to develop our taskflows separately using a short development lifecycle. Putting each of them in a separate application and publish and import them in the main application seems to be too complicated and takes to much time, everytime.
    Am I correct that the shortest development lifecycle is to have all the taskflows in our webapplication, and have full debug and hot-swap functionality?
    Ciao
    Aino

  • How can i use iphoto pics on another mac across network for screen saver?

    how can i use iphoto pics on another mac A across the home network for the screen saver on Mac B?
    within iPhoto i can see the mac A's shared library AOK on Mac B but Mac A's library doesn't show up in the screen saver list on Mac B ;-(
    tia
    Barry

    That's exactly what I tried to do, but the iPhoto librry doesn't show up in the pulldown menu. If I click "Choose Folder", the iPhoto library is greyed out and unable to be selected.
    For some reason, iPhoto is an option in the pulldown library on my older iMac but not on my MacBook Pro. What gives?

  • How can I use my array in another method.... Or better yet, what's wrong?

    I guess I'll show you what I am trying to do rather and then explain it
    public class arraycalc
    int[] dog;
    public void arraycalc()
    dog = new int[2];
    public void setSize(int size)
    dog[1] = size;
    public int getSize()
    return dog[1];
    This gives me a null pointer exception...
    How can I use my array from other methods?

    You have to make the array static. :)
    Although I must admit, this is rather bad usage. What you want to do is use an object constructor to make this class an object type, and then create the array in your main class using this type, and then call the methods from this class to modify your array. Creating the array inside the other method leads to a whole bunch of other stuff that's ... well, bad. :)
    Another thing: Because you're creating your array inside this class and you want to call your array from another class, you need to make the array static; to make it static, you must make your methods static. And according to my most ingenious computer science teacher, STATIC METHODS SUCK. :D
    So, if you want to stick with your layout, it would look like:
    public class arraycalc
         static int[] dog;
         public static void arraycalc()
              dog = new int[2];
         public static void setSize(int size)
              dog[1] = size;
         public static int getSize()
              return dog[1];
    }But I must warn you, that is absolutely horrible code, and you shouldn't use it. In fact, I don't even know why I posted it.
    You should definitely read up on OOP, as this problem would be better solved by creating a new object type.

  • How can I use my itunes on another computer?

    I am visiting my parents, who have itunes, and I want to access my itunes on their computer. How can I do this without disturbing their account.
    I'm also scared that if I plug my ipod in that it will sync with my Dad's itunes (that would be awful).

    You can't access your iTunes from their computer because your library is at home on your computer. You can only access there library.
    To plus an iPod into another computer, be sure to set your iPod (at your house before you leave) to Manual updating rather than automatic updating. This will allow the iPod to mount and iTunes will not do anything to what it on the iPod or in the iTunes library.
    Managing content manually on iPod
    http://docs.info.apple.com/article.html?artnum=61148
    Patrick

  • How can I merge chromokey footage with another project?

    I have a project that I'm working on and want to go back in and place some green screen footage into the original project. What do I have to do to be able to use and edit the green screen footage and place it into the original footage?

    In FCPX? Just place the green screen footage over the storyline (as a connected clip) and apply the Keyer effect to the green screen footage (if the green screen is really good, you probably won't even have to make any adjustments to the keyer). You can also use the Transform parameters in the Video inspector to adjust size, positioning and orientation of the overlaid footage to fit into the storyline original.

  • How can I use my account from another I.p address

    When ever I attempt to buy anything on amazon or iTunes, while at my mums using her iPad security locks me out, how do I fix this

    You don't. You cannot buy for your account using another person's iPad and using that person's account. iPads are not multi-user devices. Use your own iPad. You should be able to connect to your mum's wireless if she gives you the network's access password. Then you can buy stuff on your iPad.

  • How can i use one dtd inside another dtd

    Hello friends,
    I have read some where that one DTD can be imported into another DTD but idont remember how to do it.
    My question is suppose we have a DTD say xyz.dtd and i am writing a new DTD say abc.dtd, and lets assume that in abc.dtd i have to declare some of the elements of xyz.dtd, so iwant to import xyz.dtd into abc.dtd.
    Can anybody please give me a solution for this.
    Thank you,
    sridhar.

    something similar to this.
    // This is abc.dtd
    <!ELEMENT MESSAGE_NODE (MSGHEADER, MESSAGEBODY)>
    // Include the DTD for the Message Header
    <!ENTITY % MSGHEADER SYSTEM "xyz.dtd">
    %MSGHEADER;

  • My computer died. I do not want to loose one video on my iPod, how can I  use the iPod  on another computer? Please help!

    please advise how I can put my iPod on another computer, my old one died a slow death.  There is one short video on my iPod that can't  be replaced.

    - What is the source of the videos? If taken by the iPod you can transfer them to the new computer by:
    Copying personal photos and videos from iPhone, iPad, or iPod touch to your computer
    - If they were iTunes purchases by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    - If they were synced to the iPod and not iTunes purchases then you need a third-party program like TouchCopy or PhoneView.

  • How can I use a JavaBean in another JavaBean?

    I create a JavaBean named "dbBean.java"
    And I create another JavaBean named "login.java" which want to use the method defined in "dbBean.java".
    Could anyone tell me the syntax of using it?

    compile the .java files into .class files and then they are usable
    from dbBean...
    login myLogin = new login();
    perhaps you want to use it in some script and not java?

  • HT204053 i RECENTLY PURCHASED ANOTHER IPHONE.  MY INTERNET IS NOT WORKING.  I JUST CREATED AN APPLE ID.  WHAT'S NEXT?  I NOW HAVE TWO DIFFERENT ACCOUNTS WITH DIFFERENT USER NAMES.  HOW CAN I USE ONLY ONE ACCOUNT FOR ITUNES, ICLOUD APPLE ID ETC???

    I RECENTLY PURCHASED ANOTHER IPHONE.  MY INTERNET IS NOT WORKING.  I JUST CREATED AN APPLE ID.  WHAT'S NEXT?  I NOW HAVE TWO DIFFERENT ACCOUNTS WITH DIFFERENT USER NAMES.  HOW CAN I USE ONLY ONE ACCOUNT FOR ITUNES, ICLOUD APPLE ID ETC???

    Welcome to the Apple community.
    iTunes and iCloud and different accounts, you will need to delete both accounts from your device before adding the new details in their place.
    For iCloud go to settings > iCloud, scroll down and hit the delete button. You can then sign back in using your correct details. For iTunes go to settings >store, tap your account ID and then sign out, you can then sign back in using your correct Apple ID.

  • How can I use the print module to print different size images on one large "canvas"?

    How can I use the print module to print different size images on one large "canvas"? An example would be in Photoshop, go to file>new, and create the size paper I want, and move images of different sizes onto it.
    I was thinking the print module would do this automatically for me.

    You can't, at present. It's been a requested feature, so we'll see if it shows up in a future version, but it's not there at present.

  • I am new to IPAD and I want o use facetime, how can I use it to communicate with my mac at home, do I need to create another account with a different email account

    I am new to IPAD and I want o use facetime, how can I use it to communicate with my mac at home, do I need to create another account with a different email account

    do I need to create another account with a different email account
    Yes, the email addresses need to be unique to each device. You may use the same Apple ID on each device, but the email address used by each device needs to be different.

  • How can i use reuse_alv_fieldcatalog_merge function module

    I am using below steps for populating the final internal table.How can I use reuse_alv_fieldcatalog_merge function module in the place of declaring all these fields.How canI put title of the report in reuse_alv_fieldcatalog_merge function module.
    FORM BUILD_FIELDCATALOG .
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'KUNNR'.
      FIELDCAT-SELTEXT_M = 'Customer Name'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-KEY       = 'X'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'VBELN'.
      FIELDCAT-SELTEXT_M = 'Invoice Reference'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-KEY       = 'X'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'VKBUR'.
      FIELDCAT-SELTEXT_M = 'Sales Office'.
      FIELDCAT-JUST      = 'L'.
    FIELDCAT-KEY       = 'X'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'VKGRP'.
      FIELDCAT-SELTEXT_M = 'Sales Person'.
      FIELDCAT-JUST      = 'L'.
    FIELDCAT-KEY       = 'X'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FINAL'.
      FIELDCAT-FIELDNAME = 'POSNR'.
      FIELDCAT-SELTEXT_M = 'Item No'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-KEY       = 'X'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.
      FIELDCAT-TABNAME   = 'IT_FIANL'.
      FIELDCAT-FIELDNAME = 'ARKTX'.
      FIELDCAT-SELTEXT_M = 'Item Description'.
      FIELDCAT-JUST      = 'L'.
      FIELDCAT-DATATYPE  = 'C'.
      APPEND FIELDCAT TO I_FIELDCAT.
      CLEAR FIELDCAT.

    Hello,
    It is very easy to use reuse_alv_fieldcatalog_merge.
    You try this it will work.
    example
    data:
    DATA : gv_repid        TYPE syrepid VALUE sy-repid .  " Report id
      PERFORM set_field_catalog USING gst_struct CHANGING lst_fieldcat.
    FORM set_field_catalog  USING uv_tab TYPE slis_tabname
                         CHANGING  xt_fieldcatalog TYPE slis_t_fieldcat_alv.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name         = gv_repid
          i_internal_tabname     = uv_tab
          i_inclname             = gv_repid
        CHANGING
          ct_fieldcat            = xt_fieldcatalog
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " set_field_catalog_spec

  • HT4994 MY IPHONE IS NOT A SIM FREE HOW CAN I USE IT IN ANOTHER COUNTRY?

    MY IPHONE IS NOT A SIM FREE HOW CAN I USE IT IN ANOTHER COUNTRY?

    Apple can do nothing. As Tim said, only the carrier to whom the iPhone is locked can authorize unlocking. You must contact that carrier.
    Regards.

Maybe you are looking for

  • Ituneshelper was not installed correctly, please reinstall itunes

    trying to install itunes i have unstalled adn reinstalled several times but keep getting this message when i try to open itunes ituneshelper was not installed correctly, please reinstall itunes error 7 please help

  • How to create sub views in Oracle SQL

    I am trying to write a select statement through TOAD that needs to build a view and then query from that view further in the same statement. I don't mean create a VIEW in the common sense of running a CREATE VIEW command, I mean creating one dynamica

  • Trackpad not working correctly in Lion

    So been waiting anxiously to download and did so this morning.  I cannot get the gestures to work.  Is the software not working properly or am I not holding my tongue correctly while using the trackpad on my core 2 duo machine.

  • SP 2013 Images not rendering

    Hey all, I've got a REALLY weird SharePoint 2013 problem that I need some help with.  If my users go to Cogwheel -> Add a page and add a publishing page, they will type some text and add some images...however, when they save the page, the images all

  • I get one bright white flash in iDVD

    After I import a Quicktime movie into iDVD and then play it, I get one very short white bright flash in the beginning of the movie. How do I get rid of this flash?