Help with remove.Instance function removing the wrong row

Hi there,
I have been working on Livecycle forms for about two weeks now and have been able to work out quite a bit of what I need to do.  However, I am really hoping someone can help me with a two problems that I cannot seem to solve. 
The first one is; if I click on the 'remove a row' function on my form and it is the only row, it comes up with an error message,  How do I stop that from being displayed?  I think I need to use the IF function with >1 but cannot seem to get it to work.
Secondly, if for example I add two rows using the +row button to make three rows and in rows 1&2 I input some data.  If I then want to delete row 3 and press the -Row button it deletes row number 2 and the data in that row and leaves row number 3.  How can I change it so that when I delete a row it deletes row number three and leaves row number 2.  essentially, I need it to delete rows from the bottom up and not from the top down.  Hope this makes sense.  Any help would be greatly appreciated!
Attached is a link to my form.
https://copy.com/RiktBtj0uiSA
Thank you.

Hi there,
When removing instances within an object's event which is inside the instance, you must make sure that you remove this particular instance at the end of the event.
E.g.:
If you remove the instance of which the button is inside before even finishing the whole event, the program will not recognize what event is to be finished because you have removed the object's which is fired..
So here you are trying to finish some code which doesn't exist anymore ...
I suggest you should always remove the instance of (this) object at the end of any event to make sure to finish all your actions before deleting the object.
Hope this help!

Similar Messages

  • I need help to remove the wrong email on my Iphone.  I can't down load app because my apple ID doese not match with the wrong email please help

    I need help to remove the wrong email on my Iphone.  the represnter who set up my phone put in the wrong email, and now I can't down loand apps on my phone because the apple ID does not match

    So sign out of the Apple ID under Settings > iTunes & App Store, then sign in with your own.

  • Help with removing the Flash DRM module

    Hi,
    To be able to play DRM content, Flash requires a separate DRM module that is not bundled with the Adobe Flash installer, this is downloaded separatly upon first playback of DRM content. We've successfully implemented this flow. But we now need to be able to test it in a prober way. It seems like this module is not uninstalled when uinstalling Adobe Flash. Can anyone give us instructions on how to remove this module to be able to test this flow?

    I also had to do this, but I had different results and wanted to share what I found.
    On different operating systems, I found a Flash Player folder containing a NativeCache folder in similar places:
    Windows XP/Vista/7: %APPDATA%\Adobe\Flash Player\NativeCache
    Mac OS X: ~/Library/Caches/Adobe/Flash Player/NativeCache
    Linux: ~/.adobe/Flash_Player/NativeCache
    I found that inside this directory there was at least one randomly named directory which contained at least one randomly named directory which contained a platform-specific 'adobecp' module. It would seem some of these random directory structures correspond to flash player versions.
    Simply removing the "NativeCache" directory was enough to trigger a re-download of the DRM module.
    I'm not sure why anyone else found a NativeModule directory or why I didn't find that directory on any of my systems. Also I'm not sure what "Roaming" means, but it is probably related to roaming profiles and ActiveDirectory.
    Your mileage may vary.

  • Help with remove reversed duplicate rows?

    Hi:
    I have an application where I need to remove reversed duplicate rows, such as this:
    select 'A' x, 'B' y from dual
    union all
    select 'C', 'D' from dual
    union all
    select 'B','A' from dual;
    Output is:
    X Y
    A B
    C D
    B A
    What I need is to remove the 'B A' row because it already exists in reverse form as 'A B'. It does not matter which row is kept, 'A B' or 'B A'. Just one of them needs to be removed and the other needs to stay.
    Note that the actual query to generate the data is a little more involved, but I can use a with clause to make it an inline view. I'm hoping that the actual mechanics are not relevant. If that is not the case, please let me know and I'll post more details about the actual query.
    Any ideas?

      WITH T AS
    ( SELECT  'HOUSE' x, 'HOUSE' y FROM DUAL UNION ALL
    SELECT 'HOUSE', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'JME4Q08' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'JMEM' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'MATCH3' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'PGCM' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'PGCU' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'VEL' FROM DUAL UNION ALL
    SELECT 'HOUSE', 'XXX08' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'MATCH3' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'PGCM' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'PGCU' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'VEL' FROM DUAL UNION ALL
    SELECT 'JME0609U', 'XXX08' FROM DUAL UNION ALL
    SELECT 'JMEM', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'JMEM', 'JMEM' FROM DUAL UNION ALL
    SELECT 'JMEM', 'MATCH3' FROM DUAL UNION ALL
    SELECT 'JMEM', 'PGCM' FROM DUAL UNION ALL
    SELECT 'JMEM', 'PGCU' FROM DUAL UNION ALL
    SELECT 'JMEM', 'VEL' FROM DUAL UNION ALL
    SELECT 'JMEM', 'XXX08' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'MATCH3' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'PGCM' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'PGCU' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'VEL' FROM DUAL UNION ALL
    SELECT 'MATCH2', 'XXX08' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'JMEM' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'MATCH3' FROM DUAL UNION ALL
    SELECT 'MATCH3', 'XXX08' FROM DUAL UNION ALL
    SELECT 'PGCM', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'PGCM', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'PGCM', 'JMEM' FROM DUAL UNION ALL
    SELECT 'PGCM', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'PGCM', 'PGCM' FROM DUAL UNION ALL
    SELECT 'PGCM', 'XXX08' FROM DUAL UNION ALL
    SELECT 'PGCU', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'PGCU', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'PGCU', 'JMEM' FROM DUAL UNION ALL
    SELECT 'PGCU', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'PGCU', 'PGCU' FROM DUAL UNION ALL
    SELECT 'PGCU', 'XXX08' FROM DUAL UNION ALL
    SELECT 'VEL', 'HOUSE' FROM DUAL UNION ALL
    SELECT 'VEL', 'JME0609U' FROM DUAL UNION ALL
    SELECT 'VEL', 'JMEM' FROM DUAL UNION ALL
    SELECT 'VEL', 'MATCH2' FROM DUAL UNION ALL
    SELECT 'VEL', 'VEL' FROM DUAL UNION ALL
    SELECT 'VEL', 'XXX08' FROM DUAL )
    SELECT x, y
    FROM   (SELECT x, y, row_number() over (partition by least(x,y), greatest(x,y) order by rownum) rn
            FROM   t)
    WHERE  rn = 1
    HOUSE,HOUSE
    HOUSE,JME0609U
    HOUSE,JME4Q08
    HOUSE,JMEM
    HOUSE,MATCH2
    HOUSE,MATCH3
    HOUSE,PGCM
    HOUSE,PGCU
    HOUSE,VEL
    HOUSE,XXX08
    JME0609U,JME0609U
    JME0609U,MATCH3
    JME0609U,PGCM
    JME0609U,PGCU
    JME0609U,VEL
    JME0609U,XXX08
    JMEM,JMEM
    JMEM,MATCH3
    JMEM,PGCM
    JMEM,PGCU
    JMEM,VEL
    JMEM,XXX08
    MATCH2,MATCH2
    MATCH2,MATCH3
    MATCH2,PGCM
    MATCH2,PGCU
    MATCH2,VEL
    MATCH2,XXX08
    MATCH3,MATCH3
    MATCH3,XXX08
    PGCM,PGCM
    PGCM,XXX08
    PGCU,PGCU
    PGCU,XXX08
    VEL,VEL
    VEL,XXX08

  • Pages help with removing "facing pages" margins

    howdy!
    having trouble with removing the "facing pages" function. read the post on 1-up vs 2-up and i selected 1-up and unclicked "facing pages" but my margins still show the large gray area to left and right respectively. i would like to re-set to normal 1 inch margins all around but system doesnt seem to revert back to this function. please help - i dont want to recreate this entire document!
    gracias
    powerbookg4   Mac OS X (10.4.8)  

    Welcome to Apple Discussions
    I would think what you tried would have fixed it, so there has to be something elsewhere. Did you check the margins in the layout inspector?

  • Issue with Removing the Patch Set Software 9.2.0.8

    Hi experts,
    I have issue with removing the patch set software 9.2.0.8
    I'm working on solaris box recently ugraded to 9.2.0.8 from 9.2.0.7. however i want to downgrade now. I have followed the document 4547809 mentioned. Now the real issue is when i restored the oracle_home (9.2.0.7) and execute sqlplus /nolog here is error message shown
    bash-2.05$ sqlplus /nolog
    bash: /oracle/test/920_64/bin/sqlplus: No such file or directory
    bash-2.05$ lsnrctl
    bash: /oracle/test/920_64/bin/lsnrctl: No such file or directory
    Please help
    thanks in advance

    Hi,
    Thanks for reply you are right
    ls -l /oracle/test/920_64/bin/sqlplus was not exist. However i copied everything from the backup.
    I'm trying again
    cp -r bk_test_home/* /oracle/test/920_64/*
    still i couldn't the file however it exist in bk_test_home. please suggest
    Thanks and regards

  • HT2534 But now , the hole process of sign uping is changed , please remove the wrong guide its not working , and why apple not let to access the free app .!!!

    But now , the hole process of sign uping is changed , please remove the wrong guide its not working , and why apple not let to access the free app .!!!

    Try going to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Removing the excel rows automatically using VB script

    Hi,
    Can anyone please help me in functionality of,  removing the excel rows automatically which are having  value
    as ZERO across all columns.

    Hi,
    Please try the code:
    Sub RemoveRows()
    Dim i As Long
    i = 1
    Do While i <= ThisWorkbook.ActiveSheet.Range("A1").CurrentRegion.Rows.Count
    If InStr(1, ThisWorkbook.ActiveSheet.Cells(i, 1).Text, "0", vbTextCompare) > 0 Then
    ThisWorkbook.ActiveSheet.Cells(i, 1).EntireRow.Delete
    Else
    i = i + 1
    End If
    Loop
    End Sub
    PS:
    This is the forum to discuss questions and feedback for Microsoft Excel, if you have further question about VBA code, please post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Need some help with downloading PDF's from the net.

    need some help with downloading PDF's from the net.  Each time I try to click on a link from a website, if it takes me to a new screen to view a pdf, it just comes up as a blank black screen?  any suggestions?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • One question I am looking for help with is, when you hit the history button I want my last fifty pages to show up instead of just fifteen. Is it possible to

    one question I am looking for help with is, when you hit the history button I want my last fifty pages to show up instead of just fifteen. Is it possible to change that setting?
    TY

    The History menu can only show that fixed maximum of 15 as that is hard coded.
    Maybe this extension helps:
    *History Submenus Ⅱ: https://addons.mozilla.org/firefox/addon/history-submenus-2/

  • How do I remove the last row in a csv data file

    I would like to remove the last row of data from a csv file that I have saved.  I can identify the start byte of the last row; however, I'm not sure what tool is the best one to remove it.  Should I move the EOF?  Should I open the file up to that point then save over the old one?  Is there another way I don't know about?  I am using labview 7.1.
    Thanks

    I would use the Read Text File.  You can right-click on it and tell it to read lines.  Then Delete From Array.  Leave the index and length unwired and it will delete the last item (I noticed your code is removing the second line).  Then open the file again set to replace or create and write your data.  This method allows you to propagate your errors instead of the Write/Read Spreadsheet File handling the errors for you.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Remove last row of csv_BD.png ‏14 KB

  • Help with removing my account name from the search...

    Dear Sirs:
    Due to a breach security in my P.I., I need to have my skype name to be removed from the search directory.  Please help me.
    Thanks,
    GP

    Hi, GP2013, and welcome to the Community,
    Please take a look at this information: 'Can I delete my Skype account?' and then contact customer service for assistance.  We here in the Community do not have access to Skype account details.
    Here is a slightly annotated version of the instruction to file your request with Skype Customer Service, and to receive a reply via e-mail.  Hope this serves as a useful road map!
    Regards,
     Elaine
    How can I contact Skype Customer Service?
    Skype offers help and support through:
    The Skype Support website
    The Skype Community
    The Heartbeat blog
    Skype blogs
    Email and Live chat (for eligible customers)
    To get help with the issue you’re experiencing:
    Go to the Support request page.  You will be asked to sign on to the Skype website at this step.
    Select the topic you need help with and the problem you’re experiencing. ... or the closest topic which matches your enquiry.  Some information that might help with your problem is displayed.  These are the FAQ articles pulled from the library for your review.
    If you still feel that the information doesn’t help, scroll down to the bottom of the website page and click the Continue support request button at the bottom of the screen. 
    Select your contact method. (We recommend that you check our Skype Community first. No need to circle back here, as the Community is where you started!)
    If you chose email, enter your details, describe your problem, and then click Send support request. We'll get back to you as soon as we can.
    We don’t currently provide telephone support.
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Memory upgrade on G560 and problems with removing the access cover

    Hi, this is my first post here - just bought myself a Lenovo G560 following the demise of my HP nx6325.
    The product I bought has only 2 GB RAM and so I bought an extra 2 GB chip from Crucial, which arrived here this morning.
    I've started to follow the manual's instructions to remove the system cover to gain access to the memory slots but, after removing the 2 screws in the middle of the cover and loosening the 5 screws around the edge, the cover seems most reluctant to pop off. It doesn't seem a very substantial piece of plastic and I'm worried about breaking it.
    I've tried gentle pressure under the little lip with a table knife but the cover doesn't seem to want to shift - it just bulges up at that point. I've checked and rechecked that I've removed the 2 screws in the centre and completely loosened the other 5......... Does it generally need some force to remove it, or am I doing something silly?
    Iain
    Iain
    Lenovo G560 - Windows 7 Home Premium x64
    Solved!
    Go to Solution.

    Thanks, Duck3 - I got the cover off, but I required more than just a sharp pull with my finger. - in fact, I couldn't any purchase on the access notch with a finger. I had to use a large screwdriver in the notch and gently apply increasing leverage, far more than I would have had the confidence to do without your advice.
    Anyway, now up to 4 GB and flying!
    Thanks again for your help.
    Iain
    Iain
    Lenovo G560 - Windows 7 Home Premium x64

  • Help with removing person in photo

    I'm fairly new to photoshop and am familiar with removing objects/content aware.In the link im trying to remove the person with the hat on and fix whats left over to make it look like water is there.Mostly though having trouble removing the lower part of the guy between his arms and keeping the water and plants there.
    http://i.imgur.com/Ol4NQ2J.jpg
    So my question would be what is the cleanest/pro way of removing the person and keeping it looking like the water and weeds are still there?thanks for the help.

    thank you Cadogan, I am glad you like the results. Here are a few images that might help:
    this was the plane I made inside vanishing point, the idea is to ignore everything else and just try to focus at the river perspective. If your plane turns red or yellow you have an invalid plane that vanishing point can't really understand. play around with settings until you get a blue plane. once the plane looks good, hit ok to exit vanishing point.
    create a new layer and go back to vanishing point, clone stamp some water from the top right area, until you get something like this:
    as you can see I am overlapping his arms a lot, and cleaning up unwanted parts later by loading up the mask. play around with Levels to lighten up the water a bit and it should blend pretty well.
    finally, add a new layer to clone stamp the weeds, these were the general areas I used:
    please post again if you have any question, have fun!

  • Help with removing text from background

    Hi,
    I'm pretty new to this, but I'm trying to figure out how to remove text from a background.  My problem is that when I use tools to grab the text, it only selects part of it because the pixels of the text are actually different colors as it blends in with the backgorund.  Does anyone have a quick idea how to do this?
    Thanks
    <link removed>

    Don't you like to see people's websites/projects/works in forums?  Seems to me that you get to know people and what they are into when they post their work.  Anyways in the spirit of you helping me, here is the picture.
    I'm trying to remove the letters from the background.  Everything about the letters including the shadows.
    Thanks

Maybe you are looking for