Can't edit the message popup in teststand 4.2.1

Hi,
I installed the 2010 version of TestStand on my PC.
Everything has been fine until today.
Every time i try to edit a property loader I get the following error:
Error in cal to LoadPanelEx.
Parent Panel Handel: 0
UIR File Name: PropertyLoaderUI.uir
Panel Resource ID:3
hInstance: 0xZ
I click ok and a second window appears saying
File not found
Error -94
I rebooted the PC, tried a repair, checked the adapter and made sure the search directories covered the file PropertyLoaderUI.uir
Can anyone help with this?
Thanks,
Sean

Sean -
Have you moved the TSDBComponents.dll file from its original location? If so, have you also placed the PropertyLoaderUI.uir file in the same directory as the TSDBComponents.dll file?
You mentioned that the search directories cover PropertyLoaderUI.uir. If you were speaking of the TestStand search directories, this would not affect whether or not the PropertyLoaderUI.uir file is found.
From looking at the TSDBComponents.dll source code, it looks like we load the PropertyLoaderUI.uir file using just its name expecting it to be in the same directory as the TSDBComponents.dll file. CVI then searches for the file based on its search directories. In this case, it looks in the same directory as TSDBComponents.dll to find the UIR file.
If this is not the cause of the error you are encountering, please let me know and we can troubleshoot this further.
Hope this helps.
Manooch H.
National Instruments

Similar Messages

  • Can't edit the Message Popup in TestStand 3.5

    I'm using TestStand 3.5/Labview 8, and when I inserted a Message Popup in my sequence, I found that I'm unable to edit it.
    I started with a new sequence file, right click->Insert Step->Message Popup, then right clicked the message popup and select Edit Message Settings.  I then get the following error (see err1.jpg attachment for actual error popup):
         SeqEdit.exe
         Error in call to LoadPanelEx.
         Parent Panel Handle: 1
         UIR File Name: editmsg.uir
         Panel Resource ID: 1
         hInstance: 0x597F0000, D:\...\TestStand 3.5\Components\NI\StepTypes\MsgBox\msgbox.dll
         Error Code: -143
         ActiveX control error
    Then when I click OK in that error I get another error (see err2.jpg attachment for actual error popup):
    Sequence Editor
    Program Error.
    Error Code: -17001
    I verified that the msgbox.dll file exists, and from reading some posts on the forum thought it wasn't properly registered.  When I tried to register it using regsvr32 I got the following message:  "msgbox.dll was loaded, but the DllRegisterServer entry point was not found.  This file can not be registered."  See err3.jpg attachement for actual error popup.
    Any ideas what is going on here and what I need to do to correct it?
    Thanks,
    -Bill
    Attachments:
    err3.JPG ‏15 KB
    err1.JPG ‏20 KB
    err2.JPG ‏11 KB

    Unfortunately that didn't work.  I went to Start->Programs->National Instruments->TestStand 3.5->Operator Interfaces->LabWindows-CVI and got the following error message:
    Test Executive
    Error in call to LoadPanelEx
       Parent Panel Handle: 0
       UIR File Name: TestExec.uir
       Panel Resource ID: 4
       Hinstance: 0x00400000, D:\...\OperatorInterfaces\NI\Full-Featured\CVI\TestExec.exe
    Error Code: -143
    Active X control error
    The actual error window is attached.  Looks like my installation has other problems?  With the way our IT department operates, if there is a way to fix this without reinstalling, that would really be helpful... :-)
    Attachments:
    err4.JPG ‏20 KB

  • Message Popup crashes TestStand

    Hello,
    Our sequence executes under TestStand 3.5 ; steps call dlls written with LabWindows/CVI 7.1.1.
    Everything is going fine except some calls to the "Message Popup" step
    of TestStand : sometimes TestStand crashes on such calls (we have to
    stop it from Windows Task Manager). We have several "Message Popup" to
    display during the sequence execution and we have noticed that the
    application does not systematically crash on the same Message Popup
    step.
    The target computer is a PIV 3.2 HT with 1Gb RAM.
    Does anybody have the same problem ?

    Hi,
    We have installed CVI8.0.0.273 runtime engine and we still have crashes on some Message Popups in SeqEdit.
    Here is a short description of the system : we have a PXI 1000B chassis connected to the computer with a PCI and a PXI MXI-3 (software v1.15).
    PXI cards : 2 PXI CAN 8461/2 (one dedicated to DiagOnCAN and the other one for CAN), 1 PXI 6070E, 1 PXI 6713, 1 PXI 6704, 1 PXI GPIB. We also have 2 PCI cards : Addi-Data APCI 2032 which drive the relays of the system. We have installed DAQ-mx 8.0 (DAQ 7.4.0 is also used on the system for an other application, not with TestStand), NI-488.2 2.43 and NI-CAN 2.3.2.
    Our application is multithreaded (3 threads + 1 main thread).
    We have tried several solutions not to use the step "MessagePopup" of TestStand : we have created a specific step calling a CVI dll. In this dll we call the CVI MessagePopup function, but TestStand still crashes. Next we have tried to display a panel (created in a uir file) instead of the Popup but the problem is not solved (we tried several combinations of panel attributes).
    In Windows TaskManager we see that the PIV 3.2GHz HT is never overloaded (CPU load = about 90%) and that there is enough memory available on the system.
    If we try to run a sequence that creates 3 threads which process nothing (infinite loops), with no signals / CAN / instruments processing, we can't reproduce the crash caused by the Popups.
    Do you have any suggestion about that ?

  • How can i display the message

    public class Userdefined extends Exception {
              Userdefined(String sparam){
              System.out.println(sparam);
              Userdefined(){
         private static int acno[]={100,105};
         private static double bal[]={100.00,200.00};
         public static void main(String args[]) {
              try{
              for(int i=0;i<2;i++)
                   System.out.println("ACCCCNO------>"+acno[i]+"BAl------>"+bal);
                   if(bal[i]<150.00)
              Userdefined udexp=new Userdefined("bal less");
              throw udexp;
              catch(Userdefined e){
                   System.out.println("--->"+e);
    How can i display the message "less amt" using my parmeterized constructor.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    VinayTK wrote:
    How can i display the message "less amt" using my parmeterized constructor.Erm ... what? You can't --- at least not with the stuff you've got there.
    A properly formed question, with some idea of what you're trying to accomplish would be a huuuuge help.
    Winston
    BTW: Congratulations. At my age, 'first's in computing are rare; but it's definitely the first time I've seen an Exception class with a main() method.
    Edited by: YoungWinston on Sep 1, 2009 9:46 AM

  • How can we change the message type?

    Hello all
    We use SRM server 5.5 with classic scenario.
    When we create shopping cart, we implemented the Change Badi to assign the purchasing group from R/3 material master.
    We implemented the following logic.
    If material master in R/3 has no purch. Group, SRM also has no purch. Group. So SRM display the error message “You should select the purch. group” to determine the purchasing group in basic view.
    But, We have the standard error message, when we choose the material code – this material code has no purch. Group in R/3 – “No purchasing groups were found”.
    Message number is BBP_ATTR050.
    Because of this message, we can not progress the process to create shopping cart.
    Can we change the message type from Error to Warning Message?
    Or, Can we delete this message?
    Thank you,
    Best regards,
    SH

    Yes. You are right.
    When user choose the material code, there is no purch. group in 1st Step, but
    we want to choose the purch. group in 2nd Step on basic view.
    But we have the error message at 1st step. so we can not progress to 2nd Step.
    If we use dummy purch. group, user could make the human mistake.
    So our customer want to remove purch. group and choose the purchasing group by user.
    But i'm not sure if we remove this error message, we got solve this problem..
    Pls give me an idea..
    Message was edited by:
            So Hee Lee

  • How to Edit the message mapping in Quality server

    Hi Experts,
    Can you plz tell me, is there any way to edit the message mapping in QUALITY system?

    Hi,
    >>>>Can you plz tell me, is there any way to edit the message mapping in QUALITY system?
    the correct one:
    - correct on DEV
    - export/import
    and it's edited on quality
    if you edit on qulity by changing the SWCV to editable then remember to
    do the change in DEV later and export import and solve the version conflict on quality
    as if you forget to do this someone will have to solve in the future and will not know why....
    Regards,
    Michal Krawczyk

  • Can I edit the email created to send a PDF form back to me when a user clicks on Submit?

         I created several PDF fillable forms for our users to request services and send back data needed to deliver those services. They are simple forms, and users will click on Submit to return to a mailto: address.
    My question is about the email message that is auto-created when the user clicks on Submit. I can't find any config window to be able to edit the message in the body of the email. The message reads:
    Form Returned: 2014PrintingRequestForm.pdf
    The attached file is the filled-out form. Please open it to review the data.
    Is there any way to edit this message?

    majende,
    Adobe Reader for iOS does support a Submit button.
    (a) Button action to submit an entire PDF document via email
    (b) JavaScript submitForm to Adobe FormsCentral
    Do you use the desktop version of Adobe Acrobat to create a PDF form?
    For option (a)
    Add the "Submit a form" action to your Submit button.
    Enter "mailto:" (including a colon) followed by email recipient(s).  Please add a comma between two email addresses.
    Example: [email protected], [email protected]
    Select "PDF The complete document".
    This particular type of PDF form will work with Adobe Reader desktop and mobile products (including Adobe Reader for iOS and Android).
    In Adobe Reader for iOS, a user can do the following steps to submit the particular type of PDF form.
    Fill out the PDF form.
    Tap the Submit button in the PDF form.
    Select "Share Original Document" or "Share Flattened Copy" from the Share File dialog.
    Adobe Reader for iOS will automatically fill in the email address(es) that you specified when you created the PDF form.
    Tap the Send button in the upper right corner.
    Adobe Reader for iOS will send the PDF form as an email attachment via Apple Mail (the default mail app for iOS).
    Please let us know if you have additional questions.

  • How can I edit the default settings for the Email button?

    I saw this question posted for February and as yet still unanswered. So I am now asking it again.
    I do not want to use my .mac account email address in my website. I want it linked to my domain. I have found no specific instructions for changing the default. Also my drag down "Link to" menu in the Inspector does not work.
    Thanks........
    eMac   Mac OS X (10.3.9)  
    eMac   Mac OS X (10.3.9)  

    While you can't edit the default email address in iWeb, there is a workaround which may suit.
    In Safari, locate a web page which has iWeb's email button on it (if you've already published a site, one of your own web pages is ideal). Control-click on the button and select 'Add Image to iPhoto Library'. Drag this image from the Media Browser to your iWeb page, select the image, and use the Link inspector to enable it as a hyperlink linking to 'An Email Message'. Enter whatever email address you like in the To box and a Subject for the message if you wish.
    To make things easier, create an iWeb library in iPhoto and add the email button to it for handy access.
    [ Visit here for iWeb Tips, Tricks and Hacks ]

  • Change/Edit the message center number in Xperia X 10 ( Not Mini)

    Dear All,
    I bought xpria X 10 yesterday and i am facing 2 major problems.
    1) I am unable to send sms , i am sure i have to change my message center no but i dont know how to do it ? The instructions are given about Mini but not Xperia X 10.
    2) Not able to sync contacts from my old Nokia N 96 .
    Help needed
    Gaurav

    Dear bclerdx,
    Re: Change/Edit the message center number in Xperia X 10 ( Not Mini)
    1. X10 SMS service center number is system default and cannot be editor.
    X 10 mini has an option of changing a message center number but this facility is not in X 10 Xperia.
    Wat you advise me to do now ? I can receive messages but am not able to reply to send sms to anyone.
    I went to my service provider and then told me the message center number but i am not able to edit the same in my phone
    Pls help
    Gaurav

  • How can I remove the messages list on imessage on ipad?

    How can I remove the messages list on imessage on ipad?

    If you want to delete messages from the list - Tap the Edit button in the upper left corner of the messages app - above the Messages list. Then tap the red circle next to the messages that you want to delete.
    But ....if you are asking how to remove the entire list from the screen so that you can use messages in a "full screen" type mode, there is no way to do that.

  • Udio to my clip.  When I bring it over it highlights the entire clip as opposed to adding it above or below.  Then I can't edit the audio clip.  HELP!!

    Trying to add audio to my clip.  When I bring it over it highlights the entire clip as opposed to adding it above or below.  Then I can't edit the audio clip.  HELP!!

    Just discovered this nifty little bug myself today. Boy, Leopard is really bug city, I'm definitely regretting the upgrade. I was glad to find the 'show in mailbox' trick, although then once I went to re-send the message, it duplicated it for some reason and sent it twice, so now my business contact thinks I'm a moron because I sent him this super large attachment TWICE thanks to moronic Mail.app.
    Another interesting thing though, is that after finding the email via 'show in mailbox' and opening it, it actually displayed the MP3 attachment as the old Tiger quicktime player (w/progress bar) as opposed to when I first composed the message and it would only display it as an icon. I thought they had just removed that feature for some reason, but nope! Another bug!

  • Can we edit the payload

    Hi All,
    Message processing failed at mapping stage in IE, since the source XML was not well-formed. SXMB_MONI shows that Manual restart is possible. Can we edit the payload and then restart the message processing? or is there any other workaround to avoid re-sending the message from source system?
    Thanks.
    Regards,
    Riyaz

    Hi,
    NO,To my knowledge we cannot  edit the Pay load.
    In SXMB_MONI  the restart is to resend the message if we feel there is error  in the Configuration side so that we can correct any configuration part  and resend the  correct message  again, Not as you have mentioned the error in Source XML.
    Regards
    Agasthuri Doss

  • Can I edit the size of my photo when setting up an email signature?

    Can I edit the size of my photo when setting up an email signature?

    Not sure what you mean by "photo screen?" Do you mean your Photo Stream?
    In the Photos app there are several ways to view the photos. Tap on Albums. Your Photo Stream is one Album but there may be others including the Camera Roll, albums made on the iPad with photos from the Camera Roll, and albums of photos copied to your iPhone by syncing with your computer.
    To remove albums from the Camera Roll, tap on the Camera Roll album to see the small thumbnails of the photos there. Tap on Select, tap on the photos to delete, then tap on the trashcan. The photos will then be moved to another album called Recently Deleted. They remain there for 30 days to allow you time to reconsider whether you really want to delete them or not. After 30 days they will automatically be deleted from your iPhone. But if you are sure you want the photos deleted from your iPhone delete them again from the Recently Deleted album.
    Albums created on the iPad with photos from the Camera Roll can be deleted in the same way.
    To delete albums copied to your iPhone by syncing with your computer running iTunes are deleted by doing another sync. But before you click on Sync deselect the albums in iTunes. Then when you click on Apply or Sync the albums will be removed from your iPhone but they will remain on your computer.

  • TS2755 I am trying to find a message from 2012 and when I load previous messages it only goes back so far then the program quits and sends me to the home ( main) screen. How can I find the message and get around this?

    I am trying to access a message from early 2012. When I load previous messages It will only go back to oct 2012 and then the program stops and kicks my to the home page. Anyone know how I can get to the message? Thanks.

    Try Spotlight Search
    1. From any Home screen page of iPad, drag your finger down anywhere on the center of Home screen.
    2. Spotlight search will now appear and you can search for apps, texts, or any other content you'd like just as you did on previous versions of iOS.

  • I get "an error has occurred in the script on this page" it comes up for no reason on Firefox and I can't remove the message, it then goes away on it's own after 3 minutes? how do I prevent this message coming up? I have Windows 7.

    I get "an error has occurred in the script on this page" it comes up for no reason on Firefox and I can't remove the message, it then goes away on it's own after 3 minutes? how do I prevent this message coming up? I have Windows 7.
    I can work the screen behind the message which stays in the centre of my screen.

    Windows version is...?
    What pages are giving you problems? [post links to same]
    Are you getting the script errors only when attempting to print or...?
    Has your printer's manufacturer confirmed that your currently installed printer software is IE11-compatible (yet)?
    ~Robear Dyer (PA Bear) MS MVP-Windows Client since 2002 Disclaimer: MS MVPs neither represent nor work for Microsoft

Maybe you are looking for

  • Same itunes library for 2 iphones on 2 computers?

    Me and my brother would like to use both of our iphones on the same library but also access that library from different computers.  Is this possible and how?

  • SUMIF to sum only if test-value field is non-blank?

    Hey Numbers experts, I'm looking for a way to conditionally sum the values in a column. In other words, if the corresponding field in my "test values" column is blank, I do not want to include the value from the same row in my "sum values" column. Is

  • How to pass import/export parameters while event handler call in OOABAP?

    Hi Experts, Is it possible to use export parameter in set handler method? Actually my requirement is while creating customer through XD01 after committing to data base i want that customer. So i exporting  customer no. in one of the badi before commi

  • Unable to open files from Finder

    I just bought my Macbook Pro yesterday.  This is my first Mac so bear with me.  I bought and installed Office for Mac.  The problem is that I cannot open files directly from Finder or the folder stack on my Dock.  If I trt to open a Word or Excel fil

  • Why won't Firefox load videos/sites properly...

    When I go to Youtube, the video will load but will freeze after a few seconds. Some sites (like Tumblr, for example) don't load properly as well.. Help?