10.0.343 Upgrade - Unable to Place Components

I have recently upgraded to v10.0.343 from 10.0.144.  I am now unable to place components in a new or previous file, whether off the toolbar (which has changed in appearance to blue buttons) or by right-clicking the circuit.  Thoughts?
Thanks,
David

Hello David,
Try the following KnowledgeBase:
How Can I Reset the Multisim or Ultiboard User Interface to its Default Configuration?
Let us know how this works.
Regards,
Fernando D.
National Instruments

Similar Messages

  • Visual Studio 2010 Upgrade - Unable to view some reports

    I converted an application that had been developed in VS2005 so that it would run in VS2010.  The application contains several Crystal Reports.  Now when I debug the application I can only view some of the reports.  With the others I get an exception with the message "Unable to find the report in the manifest resources.  Please build the project and try again." 
    The ones that work and the ones that don't all have the Build Action set to Embedded Resource.  I have tried removing a report from the project and then adding it back, but that made no difference.  A new report displayed fine. 
    Does anyone have any ideas about what could cause some of the reports to throw this exception?

    OK, here is the link to the thread I am replying to Visual Studio 2010 Upgrade - Unable to view some reports
    And here is what I posted to start the thread that I am replying to:
    I converted an application that had been developed in VS2005 so that it would run in VS2010. The application contains several Crystal Reports. Now when I debug the application I can only view some of the reports. With the others I get an exception with the message "Unable to find the report in the manifest resources. Please build the project and try again."
    The ones that work and the ones that don't all have the Build Action set to Embedded Resource. I have tried removing a report from the project and then adding it back, but that made no difference. A new report displayed fine.
    Does anyone have any ideas about what could cause some of the reports to throw this exception?
    As you can see, I have described the exception that occurs when I try to view some, but not all, or the reports while debugging.  I have also tried deleting a report and adding it back in but it made no difference.
    Is this enough information?

  • Unable to place a value in Flex Field in OAF page

    Hi all,
    I am unable to place this flex value in the flex field, but i can do this same thing in a normal "Text Field" am able to reterive that number and place in that text field .
    Problem is placing the same in Flex field , please suggest me how to do this .
    I have one Function Standard one that i am calling here and making use of that i can call that function and am able to get that value and place in a "Text Field" but the same thing i couldn't place in the "Flex Field" how to do this any idea am thank full to them. Its a very urgent issue i have to solve this.
    MY Controller Code:
    OAKeyFlexBean revenue = null;
    String s8 = pageContext.getParameter("Purpose");
    revenue = (OAKeyFlexBean)webBean.findIndexedChildRecursive("reveFF"); ------------------- this is the Flex Field where i have to place the output
    revenue.useCodeCombinationLOV(true);
    if(s8.equalsIgnoreCase("BILL_TO")) {
    try {
    Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
    String Query = "select SDS_CUST_BILL_INFO(:1,2) from dual";
    PreparedStatement stmt = conn.prepareStatement(Query);
    stmt.setInt(1, orgid);
    ResultSet resultset = stmt.executeQuery();
    if(resultset.next()) {
    String revenuenum = resultset.getString(1);
    revenue.mergeSegmentsWithParent(pageContext);
    revenue.setStructureCode( ); ---------------------- What i have to give here
    revenue.setCCIDAttributeName("GlIdRev"); ---------------------- Attribute Name
    revenue.useCodeCombinationLOV(false);
    revenue.setAttributeValue(FLEXFIELD_SEGMENT_LIST, revenuenum); ------------- How to use this FLEXFIELD_SEGMENT_LIST (unable to retrieve anything)
    revenue.setText(revenuenum);
    } catch(SQLException se) {
    se.printStackTrace();
    throw new OAException("Error in Staffing Query"+se, OAException.ERROR);
    Standard function i have:
    create or replace FUNCTION SDS_CUST_BILL_INFO(P_ORG_ID IN NUMBER,P_ACC_TYPE IN NUMBER) RETURN VARCHAR2
    AS
    *- Purpose: This PL/Sql program that will return GL_ID_RECEIVING_ACCOUNT or GL_ID_REVENUE_ACCOUNT
    *- information for new Customer BIll_TO site
    V_ACCOUNT VARCHAR2(2000);
    BEGIN
    BEGIN
    SELECT TRUNC(SEGMENT1)||'-'||TRUNC(SEGMENT2)||'-'||SEGMENT3||'-'||TRUNC(SEGMENT4)||'-'||SEGMENT5||'-'||SEGMENT6||'-'||SEGMENT7
    INTO V_ACCOUNT
    FROM GL_CODE_COMBINATIONS GCC
    ,HR_ORGANIZATION_UNITS HOU
    ,RA_CUST_TRX_TYPES_ALL RCTA
    WHERE HOU.ORGANIZATION_ID = RCTA.ORG_ID
    AND HOU.ORGANIZATION_ID = P_ORG_ID
    AND GCC.CODE_COMBINATION_ID = DECODE(P_ACC_TYPE,1,RCTA.GL_ID_REC,2,RCTA.GL_ID_REV)
    AND UPPER(RCTA.NAME) = 'INVOICE'
    AND HOU.ATTRIBUTE3 = 'Y';
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    V_ACCOUNT := NULL;
    WHEN OTHERS THEN
    V_ACCOUNT := NULL;
    END;
    RETURN(V_ACCOUNT);
    END;

    Hi parag,
    You mean to say i have to write like this :--
    if (pageContext.getParameter("apply")!=null)
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject accountsViewObject =
    (OAViewObject)am.findViewObject("ArBusPurAllVO");
    if (accountsViewObject!=null)
    OARow row = (OARow) accountsViewObject.getCurrentRow();
    if (row.getAttribute("GlIdRev") == null || row.getAttribute("GlIdRev").equals(""))
    //call your function here and say row.setaatribbute= revenue_acct_id from your function.
    if(s8.equalsIgnoreCase("BILL_TO")) {
    try {
    Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
    String Query = "select SDS_CUST_BILL_INFO(:1,2) from dual";
    PreparedStatement stmt = conn.prepareStatement(Query);
    stmt.setInt(1, orgid);
    ResultSet resultset = stmt.executeQuery();
    if(resultset.next()) {
    String revenuenum = resultset.getString(1);
    row.setaatribbute(revenuenum) ;
    } catch(SQLException se) {
    se.printStackTrace();
    throw new OAException("Error in Staffing Query"+se, OAException.ERROR);
    if (row.getAttribute("GlIdRec") == null || row.getAttribute("GlIdRec").equals(""))
    //call your function here and say row.setaatribbute=rec_acct_id from your function.
    if(s8.equalsIgnoreCase("BILL_TO")) {
    try {
    Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
    String Query = "select SDS_CUST_BILL_INFO(:1,2) from dual";
    PreparedStatement stmt = conn.prepareStatement(Query);
    stmt.setInt(1, orgid);
    ResultSet resultset = stmt.executeQuery();
    if(resultset.next()) {
    String receivablenum = resultset.getString(1);
    row.setaatribbute(receivablenum) ;
    } catch(SQLException se) {
    se.printStackTrace();
    throw new OAException("Error in Staffing Query"+se, OAException.ERROR);
    super.processFormRequest(pageContext, webBean);
    Am I, correct parag please tell me, if this works i will send u mail again that it is working fine .
    my mail id is [email protected]

  • Does anyone know a fix for being unable to 'place' in Illustrator cs5?

    I have been using CS5 Illustrator for over a year now and have had no problems until yesterday when I opened illustrator and was unable to place any images.
    I can click on 'place' and go find the file, it appears to go through the right process then there is no image on the artboard at all, anywhere. Then I decided to open up previously made files that contain placed images and all they have is a bounding box with no image. The Links panel recognises the name of the file but no image is visable, even as a thumbnail.
    Has anyone else had this issue? I've been searching online for someone else with this problem and hopefully a fix but no solution as yet.
    I'd be so grateful of some help...thank you

    Thanks Les.
    FX has just provided an update that is suppose to fix this issue but the update fails to download...I guess I'll just wait a couple of hours until they fix it.
    In the meantime I turned off the plugin and it's now working. At the moment I just need to draw in illustrator so fonts aren't a worry for now.
    I appreciate your help

  • Unable to place Photoshop psd file in Illustrator CS3

    Hi,
    Can someone help please???
    I am unable to place a Photoshop PSD file in Illustrator and be able to print the document correctly. The Illustrator file is saved as a ai file, both the document & PSD file are CMYK.
    On screen the document looks fine but as soon as I have printed the document, some of file has not printed.
    Do I need to have the Illustrator file as a eps file?
    I used to use an old Photoshop version that had a Export Image option, which was great for something like this, but CS3 doesn't have this option.
    Has anybody got any ideas what I am doing wrong?

    This seems to be an Illy problem, not Photoshop. You might want to check
    with the gurus there, but perhaps a few details, like what printer
    you're using and a few screenshots might help.
    Bob

  • Unable to place image in Illustrator CC 17.1

    I just installed Illustrator 17.1 on a new computer and I am unable to place (or copy and paste) an image file in to Illustrator. I do not receive an error. I've tried restarting and removing all of my Illustrator preferences.
    I found the following article on the same issue, and it was a fontexplorer plugin. I do not seem to have this plugin installed so, I do not think that is the issue.
    http://forums.adobe.com/message/4574340#4574340
    Please help! I'm not sure what else to try. Thanks in advance!

    What kind of image file?
    What exactly did you do and what exactly did Illustrator do instead of placing the image?

  • Unable to Place Orders

    For the past couple of months, I have been unable to place orders on Bestbuy.com when using only giftcards.  I have tried clearing my cache and using different computers, but the problem still persists.  The orders go through if part of the order is paid through Paypal, but there is no option to only pay with part of a gift card and leave a small amount to pay through another method.  Is this a sitewide problem, or is it specific to my account?

    Hi there UNC5052-
    Wow, that definitely sounds frustrating!  I can certainly understand why you would be disappointed and confused as to why your orders made with Best Buy gift cards are not going through.
    I did some testing and you should be able to pay partially by gift card as well as utilizing a credit card, PayPal or My Best Buy certificates.  My cart allowed me this option after adding a gift card to the payment.  What I would recommend is to try the following:
    1.       Make sure that you are using the most updated version of your internet browser.
    2.       Try a different internet browser if you haven’t already done so.
    3.       You can also call us at 1-888-237-8289 and have an agent help you complete the order over the phone.
    Is the order not letting you move forward when you use all gift cards or are the orders being cancelled once placed?  Any additional information about what you are seeing would be helpful!
    Thanks,
    Bill|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • I cannot place components or measuring instruments

    Hello,
    I installed NI Circuit Design Suite (Student Edition) approximately a month ago as my course requires it for hand-in assignments. Two days ago it stopped allowing me to edit or place components or measuring intruments. When I installed it originally, I made sure to activate it as the professor had mentioned others had forgotten in the past. My NI License Manager also verifies this, saying that it is activated for my computer, so I have no idea what the problem could be. I have an assignment due on Tuesday, so help with this would be greatly appreciated. Thank you very much and happy thanksgiving!
    Robin
    Solved!
    Go to Solution.

    Before doing a re-install try checking the Global and Circuit restictions tabs to see if maybe some of the options there have been activated. This may cause this problem if they have been turned on. I can not verify this on my version since I don't have these options in Power Pro.
    Doing a re-install from the CD usually doesl not work as that only removes the core files. It leaves other files behind and information behind. So if something other than the core files are causing this it will still be there afterwards.
    Try doing this instead. Goto C:\Program Files\National Instruments\Shared\NIUninstaller and find the program call "uninst" Open it. A dialog box will appear with a list of programs on the left side. Select the program you want i.e. Circuit Design Suite 10.1 Pro to highlight it and then on the right side click repair. Make sure your CD is in the drive proir to clicking repair. This should re-install everything back, hopefully, to the way it was when it was first installed. It is still safe and won't remiove any saved circuit files. I use it as a last resort, but it seems your there already. I have had success in doing this to correct strange problems that seem to crop up out of nowhere.
    I hope this helps as I am running out of ideas
    Kittmaster's Component Database
    http://ni.kittmaster.com
    Have a Nice Day

  • Security update unable to place in application folder. 0 kb available

    recent update unable to place in application folder. states 0 kb available

    Try to repair the disk permissions:
    * http://thexlab.com/faqs/repairprocess.html

  • Unable to place video calls using CUPC or the IP hardphones.

    Hi,
    We have installed CUVA 2.1.1 software and the VT-II camera installed perfectly fine.CUCM version 6.0 and Presence 6.0.1
    Also get the camera Icon on the IP hard phones as well.But unable to place video calls video calls both with CUPC clients and IP hard phones locally on LAN.
    Able to launch and see the local and remote image as same on my own system.
    Any thing else that I would need to check or missed out any checklist ????
    Regards,
    Shams

    Hi CJ,
    Thanks for the info actually the problem is locally I am not able to place video calls.
    When I click on the video check option both the local and remote image are the same as the local image.
    Please suggest for placing local video calls within a single cluster what all needs to be checked.
    Here we are trying to place video calls IP hard phone to IP hard phone,CUPC to CUPC ,
    IPC to IPc.
    Regards,
    Shams

  • New iPhone 5 just started being unable to place/receive calls

    My iPhone 5 just started being unable to place (says call failed) or receive calls. Cellular data works as do texts. Called ATT, can't figure it out on their end.

    I just went to the Apple Store and their solution was to replace my phone.

  • Using DISM Cmdlets to upgrade Hyper-V Integration Components

    Hi guys,
    I'm using the Deployment Imaging Servicing Management (DISM) Cmdlets to programmatically upgrade Hyper-V integration components as VMs move about my environment. My code works fine, but I have a little issue:
    I'm using a call to 'Add-WindowsPackage' to slipstream in the CAB package in. This works, but sometimes 2008 R2 VMs will immediately boot into the system recovery console -seemingly for no reason. This never happens with 2012 R1 or R2 VMs. This obviously
    makes this process not unattended, and I want it to be totally unattended (with reporting to catch stuff).
    Does anyone know a.) when this is happening and b.) can I somehow remove this recovery boot  flag, is it like the dirty bit?
    The weird thing is if I just progress into the recovery console something is changed in the VM and then it will boot just fine. There isn’t a problem with the IC upgrade, but something thinks there is. The logs for the DISM cmdlets are no help.
    I don’t have System Centre and wont be using it, FYI.
    Cheers! 

    Hi Hob,
    Just a little clarification, Please also make sure you had added the right Integration Services package version to WIM file, because each version has a different installation package, it is very important that you select the correct package for the appropriate
    OS.
    Refer to:
    Deploying Hyper-V Integration Services to VMs using Config Manager and DISM:
    http://blogs.technet.com/b/manageabilityguys/archive/2013/09/05/deploying-hyper-v-integration-services-to-vms-using-config-manager-and-dism.aspx
    If I have any misunderstanding, please feel free to let me know.
    Best Regards,
    Anna Wang

  • GRC 10 Upgrade:unable to install the add-on

    Hi all,
    Here I am facing another problem. I am basically working on SAP NW 7.3 ABAP. I have downloaded the
    *51039481 SAP Access Control/SAP Process Control/SAP Risk Mgmt 10.0 * zip file from SMP.  My backend system is SAP NW 7.0. For that, I have successfully installed add-on GRCPINW_V1000_700_INST ->  K-103AGINGRCPINW.SAR.
    Now I have to install the GRCFND_A_V1000_INST component. In the same download, I found this:
    GRCFND_A_V1000_INST -> DATA ->K-V10AGINGRCFNDA.SAR. I presume that this component is suitable for SAP NW 7.3
    i sucessfully uncarred this and placed in EPS/in folder. When I execute the SAINT in my GRC 10 system (SAP NW 7.3), it does not show me the add-on in the queue, therefore, I am unable to install this add-on.
    I have upgraded the BASIS,ABAP,PI_BASIS and BW components to SP05.
    Has any one has come across with such problem? Please share/help me on this.
    Regards,
    Faisal

    Hi Faisal,
    All of the pre-requisites and documentation points to the requirement for NW7.2 for the GRCFND_A component. I am not aware that it is compatible as yet with 7.3.
    Sorry, not particularly helpful in resolving the issue but hopefully it clarifies what I suspect you already worked out.
    Simon

  • After Lion upgrade, unable to start any 3rd-party apps. Suspect it has something to do with the cache and permissions.

    Dear Apple Support Community,
    I am using a MacBook 15" (mid-2010) with Intel i7 2.66GHz.
    Currently, I write to you via my sister's laptop as mine is unable to start-up Safari or any other web browser at the moment.
    After a relatively smooth OS installation of OS X Lion, I noticed that my usual apps, Evernote, Twitter, Skype, and others, were not able to start-up at all (i.e. kept bouncing in place on the dock for what seemed like forever). I have since disabled their 'Open at Login' command and now start my MacBook up with no apps running. After restarting my computer countless times, I've realised that only selected native applications are able to open. Finder, Safari, App Store, iTunes, FaceTIme and most of the Utilities. Even on Finder, right-clicking is apparent blasphemy as the window freezes and the windmill pops up, and I am forced to relaunch Finder. Safari is only able to load simple web pages such as Google.
    I have attached an excerpt of my Console for you guys (I could take a screenshot but dropbox could not even open to allow me to send it to my sister's laptop). As you can see, at every refresh, the same 5 messages appear, that a particular 'com.apple.launchd.peruser.501' keeps crashing. Correct me if I'm mistaken but this is probably the process handle for Launchpad. Although I am not sure whether this is the only reason for my computer's sluggishness post-Lion update, I would really like to eliminate this possibility.
    Things I have tried:
    Repairing Disk Permissions
    Unfortunately, this yielded no positive results as it did not seem to rectify the problem. Subsequent reparations have produced the same log, hence I don't think it's working.
    Waiting for Indexing to complete
    Some people have cited that the reason behind the sluggishness could be due to the fact that Spotlight was indexing my hard drive for optimal search results. I have since waited 7 hours for the indexing to complete, but am still stuck with a computer that cannot even open Twitter.
    Installing Onyx
    Other forum users have said that it is possible that the computer's cache has been clogged up or something. I am not entirely sure what this means but I went to attempt to download the free product that most people have recommended. Although installation was a cinch, I was not able to even start Onyx. After 10 minutes, Lion just told me that the program had been unresponsive for too long and asked me whether I wished to kill it.
    I am almost certain that the overarching problem could be erroneous sharing permissions. But then again, that is no reason for my computer to behave in such a snail-like manner. I would really appreciate if you guys could provide me with some sudo commands to use in the terminal or something that can fix the problems my computer is facing, after understanding the limitations that I currently face considering the state of my MacBook.
    The fact that I am writing here on this forum is that I wish to do anything other than a full reinstallation of the OS that has caused me so much anxiety (Snow Leopard was just magical compared to this pile of sh*t, pardon my language). I just want to do everything I can before having to resort to such a barbaric act (I have a lot of applications but I don't know whether I am able to restore those using Time Machine as well).
    In any case, thank you guys so much for reading all the way to the end. Help of any sort, be it sincere or condescending, will be fully appreciated. Please don't hesitate to ask for more information if I have not already provided it. As I am an average user, I may not be too familiar with jargon. So if getting the information requires complicated procedures, please provide a step-by-step.
    Also, tl;dr: Updated from Snow Leopard to Lion, computer became slow and buggy, tried many things, didn't work, need help.
    Thanks,
    Nathan

    Thanks for the quick advice!
    Unfortunately, I am still unable to open my core productivity apps, namely Skype and Evernote. Twitter, as well, could not start. But interesting quick fix though, I never knew you could do that.
    Here's the error log after the restart:
    What else should I try?

  • MIGRATION AND UPGRADE NOT IN PLACE

    We are in processes to migrate from two box to new one.
    FROM
    1) AIX 4.3.3 32b 8.1.7.4 32b
    2) AIX 4.3.3 64b 9.2.0.5 64b
    TO
    3) AIX 5.1 64b 9.2.0.6 64b
    After reading the following notes: 210073.1 223521.1 159657.1 from Metalink.
    I understand this is the migration path:
    a) 8.1.7 32b aix 433 32b -> move DFs(clone)-> 8.1.7 32b aix 5L 64b
    b) 8.1.7 32b aix 5l 64b -> migrate in place->9.2.0.6 64b aix 5L 64b
    c) 9.2.0.5 64b aix 433 64b -> move DFs(clone) -> AIX 5L 64b
    d) 9.2.0.5 64b aix 5L 64b -> upgrade in place -> 9.2.0.6 64b AIX 5L 64b
    Here! I have some questions:
    - The obvious: THIS IS A RIGHT PATH!?
    - I really need open the database with 8.1.7.4 32b AIX 5.1 after upgrade to 9.2.0.6?
    - Could be possible, applies the upgrade directly on the 8.1.7.4 32b DFs on AIX 5.1?
    - The same questions to 9.2.0.5 64b AIX 4.3.3 64b.
    - Coexists with the pw-syscall64 (required for 8.1.7 32b AIX 5L) and the 9.2 software on AIX 5L.
    Tx in advance,
    DL.

    Hi Chris,
    You are right sir, it is definitely an add-on install that requires a separate installation & license key, in order to utilize the functionality. I would see if the two notes that Sebastian suggested does the trick. However, I know you said they weren't installed previously, they might still reside down there and can at least get rid of the icon for you.
    If that doesn't work, I would second your notion of what you stated, try to install the base 4.1 install first. My suggestion would be to uninstall it and clear out everything in the install directory, make sure nothing is left behind (If you're comfortable with it, I'd also suggest clearing out relevant entries in the registry. Some people don't like to do it, I'll only suggest it, if you're comfortable with it). Deploy the webapps into the Tomcat server, after the base 4.1 install, pull up the BI Launch Pad, and see if the same icon appears.
    At least, this way, you can get an idea if something is going on with the base install versus the SP1 upgrade. If nothing else, until a definitive solution is found, you can always ensure that users don't have explicit permissions to that application.
    Hopefully one of the two does the trick for you.
    -Victor

Maybe you are looking for

  • No Privacy Selection Capability in Safari under iOS 8.1

    I am mystified. On my iPhone 6  I don't have the capability to turn Privacy on or off in Safari under iOS 8.1.  There is absolutely no 'Privacy' button when I select the double boxes while on a web page.  In addition, the Safari setting has the 'Clea

  • Multiple bugs

    I have a few basic ones. Certain features in the user manual don't work. Examples include scrolling with two fingers to get to top and bottom of browser docs. Using the volume control to go to next song doesn't work. Swiping up and right to go back t

  • I-Frame Only MPEG in premiere pro cc

    please help........ I dont have I-Frame Only MPEG preview file format in sequence settings. It is set to Microsoft AVI. I want to set it to I-Frame Only MPEG.

  • PLEASE someone explain 2x Apple ID and Apple TV

    I have an Apple TV HD. And I have an Apple ID that is my own for years. I have an iPhone, iPad and a PC and a Mac that all use my Apple ID. I can watch vids from any of my computers on my Apple TV with no issues. Very smart. Then I got married. My wi

  • Breadth First Traversal of a Tree...

    Hi, I want to make a program to print every node of a tree in a Breadth First Search (BFS)/Traversal. Since, BFS searches a tree in levels (i.e. 1st the root, then it's Children, then Grand Children etc from left to right), this is where I'm stuck. H