How to move form from one account to another

I have bought a second account for another user so that his responses would be confidential.  How do I copy existing forms from one account to another.  Do not want to have to recreate them.  Thanks for your help..

Hi,
In order to move a form to different account, you can export the design file:- Open the document- Design- Export Design File
Regards,
Nakul

Similar Messages

  • How to move contacts from one account to another

    I have 2 exchange accounts configured in my iPhone, one Corp exchange account and one personal exchange account, both have Contacts sync enabled.
    I noticed somehow all of new created Contacts are under Corp account, these Contacts do not show up on my iPad / Mac which only have personal account.
    How can I move the selected Contacts from Corp account to personal account?
    How can I choose which account to use when I create a new Contact?
    Thanks

    I can answer your second question but I share your problem related to the first question.
    In answer to your second question:
    To make sure that new contacts go into the desired account:
    1.     Go to Settings
    2.     Select "Mail, Contacts, Calendars"
    3.     Scroll down to "Contacts"
    4.     Select the last item in the group, "Default Account"
    5.     A list of the accounts on your iPad will appear.  Select the account that you want to use for your new contacts.
    If you solve the problem of moving existing contacts from one account to another, I'd love to hear about it.

  • How to move ebooks from one account to another

    I have some books bought on an old computer with an old email account. It seems that this adobe account doesn't exist anymore
    I have an new computer now and want to move the books to digital editions on this new computer. I haven a new adobe account how can I transfer these books ?
    thx
    Gerard

    I can't answer properly, but a few things.
    The ID is not hard-wired to the email address. 
    There is an internal ID which is the 'real' fixed id, and (if you manage to login) you can change the email address associated with it.
    It looks something like "urn:uuid:ff2ddc22-eca0-46c6-a84d-xxxxxxxxxxxx"
    I've copied a post below that shows how to get the internal id from a .epub book that is assoicated with it.
    If you've got the new ADE2.0, when you do ctrl-shift-I it tells you the internal ID as well as the currently associated email address.
    I'm pretty sure that both the older and the newer ADE remember both the internal ID and the email address.
    If you update the email address associated with the ID, ADE catches up with the email address at some point, but I'm not sure exactly how.
    I changed the email address associated with my ID a couple of months ago, and both ADE2.0 and ADE1.7.2 are now showing it correctly, but they didn't immediately.
    Maybe they sync it up the next time you actually buy/borrow a book ~ but that is pure hypothesis.
    The ID is not specifically associated with ADE; it is a generic Adobe ID used for all sorts of other things.  It won't actually have been generated by ADE, and it shouldn't make any difference which version of ADE you were using when you first got the ID.
    I don't know if Adobe can access your account based on the internal ID.  Clearly most of the software can and does do its access by internal ID, but it depends how the database is surfaced to the admin staff whether they can access it that way.  It may well be that if you are lucky with an admin they will know how, and that others less well trained will tell you it is completely impossible.
    Sorry if that is all a bit confusing: I hope it helps.
    ~~~
    Finding the internal ID.
    You can't find it in the .acsm.  The .acsm is downloaded before the book is associated with an AdobeID;
    its association with the ID is created when the excrypted .epub file is created/downloaded, and held at the server end.
    However, you can find the AdobeID (at least in internal form) from the .epub file.
    To see the AdobeID from an encrypted .epub file:
    Open the file as a zip archive. 
    If you have a good zip archive manager like 7zip you can do this directly.
    Otherwise, you must rename the .epub file to a .zip file to open it.
    Find the file rights.xml inside the zip; probably META-INF\rights.xml
    Inside that file, you will find a section that looks something like <user>urn:uuid:ff2ddc22-eca0-46c6-a84d-xxxxxxxxxxxx</user>
    That is the AdobeID.
    The ID was stored only in its internal form, and not by the username that belongs to the ID.
    However, if you are on ADE2.0 you can use Help/Authorization Information (ctrl-shift-I, cmd-shift-I on Mac) which will show you both the external username and the internal ID.
    At least you can check that way if ADE thinks you have the correct AdobeID for the book; but if you haven't it won't remind you of the username you used.
    I don't know if Adobe service are able to find the userid if you can give them that internal ID.

  • How to move data from one account to another?

    Sheesh, I think I've created a monster for myself.  I got a new macbook pro and migrated my data from Time Machine.  As I was doing everything I didn't realize that the set up for the computer was in a different account than the migrated data went to.  So I have my main account on the computer and another account with all my emails, itunes pics etc. 
    I think the other account is considered the main account on the computer so just to make sure I have all my privileges etc, I want to transfer all this data into the main account.  Does that make sense? 
    I started figuring all of this out as a problem when my second account (the one with all my old data) could not download podcasts.  I can do that with the main account. 
    Anyway, can anybody tell me a simple way to transfer all of this?  Should I just try to start all over?
    Thanks!

    The Users -> shared folder is a common ground all accounts share.

  • How to move value from one tlist to another tlist in same form?

    how to move value from one tlist to another tlist in same form on button press?
    Same like in data block wizard when we select value from 1st list it will go to 2nd list and can be move back. Please help i am new to forms .
    Regards

    just call the following proc in your add & add all buttons. Reverse the code for REMOVEs
    this proc will move one item at a time from list_item1 to list_item2.
    PROCEDURE add_an_item
    IS
      v_list_count    NUMBER;
      v_item1_label  VARCHAR2(60);
    BEGIN
      IF :list_item1 IS NOT NULL THEN v_list_count := nvl(Get_List_Element_Count('list_item1'),0);
          IF v_list_count >= 1 THEN FOR i IN 1..v_list_count
          LOOP
             IF   :list_item1    = Get_List_Element_Value('list_item1', i)
             THEN
                  v_item1_label := Get_List_Element_label('list_item1', i);                 
                  Add_List_Element('list_item2',1,v_item_label,:list_item1);         
               Delete_List_Element('list_item1',i);
               Exit;
             END IF;
          END LOOP;
           END IF;
       END IF;
    END;
    *********************************************************************************this proc will move all items from list_item1 to list_item2.
    PROCEDURE add_all_items
    IS
      v_list_count NUMBER;
      v_item_label VARCHAR2(60);
      v_item_value VARCHAR2(60);
    BEGIN
    v_list_count := nvl(Get_List_Element_Count('list_item1'),0);
    IF    v_list_count = 1 AND Get_List_Element_Value('list_item1', 1) IS NULL THEN NULL;
    ELSIF v_list_count >= 1 THEN
           FOR i IN 1..v_list_count
           LOOP
            v_item_value  := Get_List_Element_Value('list_item1', i);
            v_item_label  := Get_List_Element_label('list_item1', i);       
            Add_List_Element('list_item2',i,v_item_label,v_item_value);
           END LOOP;
           clear_list('list_item1');
    END IF;
    END;I added [ code ] tags to make this easier to read.
    Message was edited by:
    Jan Carlin

  • Transfer a form from one account to another

    how can I export a form from one account to another (transfer)

    This FAQ explains:
    http://forums.adobe.com/docs/DOC-1390

  • Can i move money from one account to another?

    Can i move money from one account to another?

    Basically, no; only the iTunes Store staff can do this, and then only by putting the balance from a completely unspent gift card back onto the card.
    (83942)

  • Failure to move messages from one account to another

    I have recently started having problems when trying to move messages from one account to another. I get a message that says: The IMAP command "APPEND" (to INBOX) failed with server error: message contains NUL characters.
    I have tried shutting down and restarting, repaired permissions. Not sure what to do next. Any help?

    Ernie,
    One is POP thru Cox Comm and the other is mobile me (the old .mac accts). Why would all of a sudden there be an issue when I several times during the day have been able to move messages from Cox to mobile me?

  • How to move materials from one sloc to another sloc  materials are more tha

    Hi,
    Can any one help me on this issue How to move materials from one sloc to another sloc  materials are more than 1000
    and from existing sloc to new sloc which is Hum managened i need help onthis issue thanks

    hi
    use T-code: MB1B Transfer Posting
    Movement type:
    311 Transfer posting storage location to storage location in one step
    The quantity is transferred from unrestricted-use stock of the issuing storage location to unrestricted use in the receiving storage location.
    Possible special stock indicators: E, K, M, Q
    313 Stock transfer storage location to storage location in two steps - removal from storage
    The quantity is transferred from unrestricted-use stock of the issuing storage location to stock in transfer in the receiving storage location.
    Possible special stock indicators: None

  • How to move iTunes from one user to another on the same Windows 7  computer

    How to move iTunes from one user to another on the same Windows 7 computer? Thanks, Bob

    Move the iTunes library to a shared area and then into the desired location. If this isn’t the default one, launch iTunes with the Shift key held down and choose that library.
    (122379)

  • How can i move music from one account to another

    I have 4 different accounts in Itunes and i wish to move all the music into one account
    help please !!!!

    You can't transfer content from one account to another account, nor can you merge accounts - content will remain tied to the account that downloaded it

  • How to transfer music from one account to another through an iphone?

    Recently, I was able to get a brand new laptop. I was excited to finally be able to purchase my own music from my own iTunes account, but over the past few years, I'd been buying songs off of my family's shared iTunes account. How can I transfer the songs I purchased from there onto my new iTunes library with my individual account?

    I'm afraid you cannot transfer purchased items from one account to another: this is a limitation imposed by the copyright owners. However recent purchases from the iTunes Store are not DRM-protected so you may be able to play them anyway if you manually copy them across. You will need to drag the out of the original iTunes to a folder on the desktop, and then transfer that to your new Mac and drag them into iTunes there. Try it with a few there and see if it works.
    Should you have any movies, though, these cannot  be transferred.

  • How to move cursor from one textfield to another textfield byusing enterkey

    hii all,
    I have a problem in java script.
    To move cursor from one textbox to another text box ,I have take the length of the textboxes of the first column.I used onkeyDown event .
    in the function ,firest i checked the condition like
    for(i=0;i<form1.box.length;i++) //box is the name of the textboxes
    if(event.keyCode==13)
    form1.box[i+1].focus();
    return false;
    by using this the cursor is moving from first text box to secon textbox and stops.
    if i use event.returnValue=false; instead of return false ,then the cursor automatically going to the laxt textbox of the column.
    my problem is how i can focus the cursor from one textbox to another textbox one after the other till the end.
    if any one has solution please help me.
    also if we can do in another way also,please help me.
    thanx.>

    try the following code :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </HEAD>
    <SCRIPT language="Javascript">
    function fnTest(str)     {     
              if(event.keyCode==13)          {
                   if(str == 4)     {
                        formHeader.box[0].focus();
                   else     {
                        formHeader.box[parseInt(str)+1].focus();
                   return false;
    </SCRIPT>
    <BODY>
    <FORM name="formHeader">
    <CENTER>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('0');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('1');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('2');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('3');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('4');">
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    ----------------------------------------------

  • How to move files from one folder to another folder in webdynpro java for sap portal

    Dear Experts,
    I wan to move files from one folder to another folder in SAP portal 7.3 programmatically in webdynpro java.
    My requirement is in my portal 1000 transport packages is their. Now i want to move 1 to 200 TP's into Archive folder.
    Can you please help me how to do in through portal or wd java ...
    Regards
    Chakri

    Hello,
    Do you know what the difference between copying a file this way :
    ** Fast & simple file copy. */
    public static void copy(File source, File dest) throws IOException {
    FileChannel in = null, out = null;
    try {         
    in = new FileInputStream(source).getChannel();
    out = new FileOutputStream(dest).getChannel();
    long size = in.size();
    MappedByteBuffer buf = in.map(FileChannel.MapMode.READ_ONLY, 0, size);
    out.write(buf);
    } finally {
    if (in != null) in.close();
    if (out != null) out.close();
    ================SECOND WAY============
    AND THIS WAY:
    // Move file (src) to File/directory dest.
    public static synchronized void move(File src, File dest) throws FileNotFoundException, IOException {
    copy(src, dest);
    src.delete();
    // Copy file (src) to File/directory dest.
    public static synchronized void copy(File src, File dest) throws IOException {
    InputStream in = new FileInputStream(src);
    OutputStream out = new FileOutputStream(dest);
    // Transfer bytes from in to out
    byte[] buf = new byte[1024];
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    in.close();
    out.close();
    And which is better? I read up on what each kind of does but still a bit unclear as to when it is good to use which.
    Thanks in advance,
    JavaGirl

  • How to move tabs from one screen to another?

    Just started to group tabs. How can I move tabs from one screen to another to consolidate them into the groups?

    See <b>Tab Groups</b> (new in Fx4) (Panorama) [http://support.mozilla.com/en-US/kb/what-are-tab-groups What are Tab Groups] (video included)
    From one Window to another Window, by drag & drop
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

Maybe you are looking for

  • Question about Time Machine backup on external drive containing photos

    I have a Le Cie external hard drive with iPhoto '08 photos on it.  I bought the drive when I started running out of room on my early 2008 iMac and moved a bunch of iphoto pictures and imovie movies onto it.  Can I use this same external drive to run

  • Intradoc.data.DataException: !csDbFailedToGetNonEmtpyTableList,(null),SIL_OCS

    hello all, I am using UCM. When i am starting UCM server i am getting this error.Do you hve any idea about this????????????????? how to resolve.yesterday i run some clean up sql after that i start getting this error. please suggest???

  • NvidiaGTX680 Mac Edition with PremiereProCS6 - no GPU acceleration

    Hey i installed NVIDIA GeForce GTX 680 Mac Edition (part nr. 02G-P4-3682-KR) in a MAC PRO 3, 1 (2008 - OX 10.8.5). i work with Premiere Pro CS6 (6.0.5, latest update). the Mercury Playback Engine does not support GPU acceleration. But a Link from NVI

  • General \ About \ TTOU - What is TTOU?

    On my iTOUCH i discovered something called TTOU (under the General \ About section). I have researched this and have been unable to find anything about this. when you select it, it reads: title: TTOU Manufacture: illegal instruction Mondel number: ti

  • [device manager] permanent show hidden devices

    Hi there i would like to permanently enable the view of hidden devices. Yes, i´ve already set the variable DEVMGR_SHOW_NONPRESENT_DEVICES and yes i know that i have only to click the View menu, and then select Show hidden devices. But this selection