Labview DAQ channel viewer doesn´t view to much

Hi, heeelp please
I´m starting to bealive in goblins.
I have a Pci-6013, and did a university proyect using also NiDAQ 6.9.3 and Labview 6.1 eval. I tried mi code in a modern amd 2600 pc and worked fine.
Then i installed it in a Shuttle SKG1, for the cybernetic fountain (my proyect, a photo is attached, working, with the old good new computer, by the Shuttle, almost not to be seen) to be more nice. But i couldn´t get it to work, since the simple Write to digital line.vi wouldn´t get to work; LabView doesn´t read the channels i had previously configurated in the MAX explorer. When i go to tools, Data Acquisition, Daq Channel Viewer i get to see other channels i didnt configurate, like sine, or temperature.
In the Amd 2600 normal computer the problem doesn´t arise, when i go to the Channel Viewer i get to see my channels. Well, i´m in troube, since i need it to work eather in the Shuttle or in an old Pentium II, in which the same probem arises. What do have a Shuttel and a Pentium II old computer (eaven with Isa slots, besides the Pci slots) in common against a normal Amd 2600 in an Asus board in common for it to do such a thing.
Any hinch on the topic would be by this time very much apreciated.
Attachments:
IM000238.JPG ‏850 KB

It is not really clear where you see what in MAX.
If you have developed and tested your program and configured the channels on the AMD PC you have to do the following:
Open MAX, select File>>Export and go through the wizard to export the NI-DAQ configuration. You will get a file. Copy this file to the target machine. There open MAX and select File>>Import. Select the file you have copied. Then you should see your channels in MAX and your application should work.
Waldemar
Waldemar
Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
Don't forget to give Kudos to good answers and/or questions

Similar Messages

  • Labview DAQ channel wizard

    I followed instructions in the Labview manual to access the DAQ channel wizard. For some reason I am directed to the device & automation explorer instead. I have Labview 5.1 installed on windows 95 system.

    Hello;
    You are probably being pointed to Measurement and Automation Explorer to have your hardware configured.
    MAX is the Software that allows you to configure your hardware and set some virtual channels up.
    Regards
    Filipe A.
    Applications Engineer
    National Instruments

  • Configuring DAQ channels through LabView program

    Hi,
    I want to scan one analog input of PCI 6025E every 250 msec and I scan 8 such channels. I am using AI Sample Channel VI to do this and for its channel input I am feeding a string (with channel name) that is typecasted using a Traditional DAQ channel constant. All the required channels are configured using this constant. However this VI doesn't seem to be portable. When I use it on a different machine, the constant shows no channels defined.
    Is there a way to configure DAQ channels through my program such as to make the program portable? I came across notes that mentioned DAQ global channel but I don't know how to use it.
    Thank you in advance,
    Sharmila

    One of the great things about DAQmx is that there are only 4 basic VI's to learn to use. The Configure, Read, Write and Stop. The same Configure VI that was used to setup the analog input channels can be used to setup analog output, digital in/out and counter in/out.
    The small menu on the bottom of the VI is actually a listing of all the different operations that this single polymorphic VI can do. Click on the down arrow and you'll see what I mean.
    I've modified the example to read DIO lines 0-3 and write to lines 4-7 on Port 0. Again it programatically builds the channel list so it will always refer to the correct device. To create individual channels for a digital line, you first specify the device, then the port, then the line or lines. Example, to create a task for lines 4-7 on port 0, you would use "Dev1/port0/line4:7".
    Notice that the "DAQmx Create Channel.vi" is the same one used in the analog input configuration, but with different polymorphic selections. Also note the "DAQmx Read.vi" is the same except for the selector.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.
    Attachments:
    Build Task and Scan Channels with DIO.vi ‏127 KB

  • A little lost here, view doesn't seem to want to show up

    Hi,
    First of all, let me say that i am not a iPhone or Mac developper although i'm a super good programmer that knows lots of languages (c/c++, java, c#, php, vb, vb.net, etc)
    I was tasked to add a screen to an iphone app that asks for user acceptance of terms and then store the acceptance into the phone. I'm not even at the storage part yet, i'm all lost in that objective C thing... What kind of programming language is that... lol
    Anyway, i tried my best and am able to open a view that was already existant in the system as the application starts. The same view, i duplicated it and renamed all its files, identifiers in the .h and .m file to a new name. I scoured the source code of the app to add the different variables or properties just as the previous view had been added to the app.
    Compile, works, view never shows up... maybe i messed up something, try the older view i tried at first, still works... strange.
    Here is a bit of code:
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    [window addSubView:agreementView.view];
    [window makeKeyAndVisible];
    This portion of code doesn't work, but if i change "agreementView" for "hmView" it works fine and shows the view called HmView. The app compiles completly and works in all cases, its just the agreementView that never shows up.
    Can you help me with this at all? Do i need to post anything else. Please keep in mind that i thought it would be super simple to do this and finaly, it's taken me 3h already to simply create a view and recompile the code.

    CDGI Developper wrote:
    this application is already multiview. I'm just trying to add a view in the code that shows an agreement ppl have to accept.
    Ok, understood. It's sounding more and more like a modal view would be the best solution.
    If i use the variable name of another view that was working, it loads up fine as the application starts.
    Although you mentioned creating another view, it seems likely you didn't actually do so, or that the variable you assigned to the new view doesn't actually point to that view. You haven't mentioned Interface Builder yet. IB is the resource editor for Xcode, and is usually where Cocoa developers start when creating a new view (though new views can certainly be created in code without using IB).
    Since you've been focusing on the root view so far (i.e., the view which is added directly to the window in applicationDidFinishLaunching), can we assume that you want the "agreement view" to be reached directly from the root view? Or, do you want agreementView to replace the current root view at start up? For example, do you want agreementView to be the gateway to the app, like a login screen, so that none of the app's functionality can be accessed until the agreement is accepted?
    Once we know exactly how the agreement fits into the view hierarchy, it might be easy to walk you through the steps needed to create it, display it, and dismiss it. Another question that might help clarify your requirements: Could you use an "alert view" instead of a new, full-screen view for your purpose? An instance of the UIAlertView class is used just like a Windows "MessageBox" to display a message and wait for the user to respond. So an alert view would be good for obtaining a "yes" or "no" answer from the user. Of course, if the agreement screen needs to present the text of an agreement, much like the contract presented during an app installation, I guess you'd need a new full-screen view.
    ... if i use the new view i have created (from a copy of the one that works) and i adapt all the identifiers in the different copied files, then the app still compiles, but the reference to the view variable doesn't seem to work.
    Here's an example of how to bring up a modal view that covers the root view at startup:
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    // add the root view to the window
    [window addSubview:viewController.view];
    // make a new view controller
    // (this also makes a default view for the new controller)
    UIViewController *myController = [[UIViewController alloc] init];
    myController.view.backgroundColor = [UIColor blueColor];
    // set the modal transition style of the new controller
    myController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
    // add a text view object to the new view
    UITextView *myTextView = [[UITextView alloc]
    initWithFrame:CGRectMake(36, 50, 248, 228)];
    myTextView.editable = NO;
    myTextView.showsVerticalScrollIndicator = YES;
    [myController.view addSubview:myTextView];
    [myTextView release];
    // add something legal to the text view
    NSString *legalText = [NSString string];
    for (int i = 0; i < 40; i++)
    legalText = [legalText
    stringByAppendingString:@"Whereas, henceforth and notwithstanding.
    myTextView.text = legalText;
    // add a button to the new view
    UIButton *myButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    myButton.frame = CGRectMake(124, 320, 72, 37);
    [myButton setTitle:@"Agree" forState:UIControlStateNormal];
    [myController.view addSubview:myButton];
    // connect the action of the button to a method in this file
    [myButton addTarget:self action:@selector(dismissAgreement)
    forControlEvents:UIControlEventTouchUpInside];
    // bring up the modal view as a child of the root view
    [viewController presentModalViewController:myController animated:NO];
    [myController release];
    [window makeKeyAndVisible];
    - (IBAction)dismissAgreement {
    [viewController dismissModalViewControllerAnimated:YES];
    To see how the example works, remove the current version of applicationDidFinishLaunching from the app delegate .m file, replace it with the two methods above, save the file and click Build and Go. The example is working, tested code which doesn't require any work in Interface Builder. Be sure to cut and paste directly from the forum to the source file. At this point you don't need to lose a day or two tracking down a syntax error.
    - Ray

  • Table or view doesn't exist when deploying a mapping

    Hello,
    OWB and BI in general is new for me. I have read the tutorials but I have a problem and I don't understand how to solve it :
    I have 2 databases in 2 different services :
    - dbsrc (where I have tabsrc with 2 columns)
    - dbtarget (where I have tabtarget with 1 column)
    OWB connect correctly to dbsrc
    I have made a mapping between dbsrc and dbtarget and I have just joined the second column of dbsrc with the unique column of dbtarget.
    All the steps before deploying are ok but when I deployed I have a warning saying that table or view doesn't exist.
    I have used the debugger and it seems that owb searches dbsrc in the service dbtarget ... I have copied my table from dbsrc to dbtarget and in this case the deployement and the execution of the mapping runs correctly.
    What I'm doing wrong ? Why OWB isn't able to see that my table source is in another database/services ?
    Thanks in advance for your help.

    Hi,
    In design center, you need two oracle dbs: one as data source (with a location pointing to you src db) and one as dwh target (with a location pointing to your target db).
    Your mapping has to be in the target db. In the mapping, you use the target table from the target db and the source table from the source db.
    When you deploy the mapping using control center manager, owb will create a database link for you from the target to the source db. The mapping will read the data through that database link and write it into the target table.
    Regards,
    Carsten.

  • Bank statement doesn't view properly

    bank statement doesn't view/print properly, told adobe reader problem

    You really need to provide some details if you expect any help.

  • Procedure Issue (Table/View Doesn't Exist)

    Hi,
    I am running procedure its giving error (table/view doesn't exist) but if i run plsql block then noo error. Please note there is no grants issue.
    please see.
    1) Successfull case:
    BEGIN
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA1';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA2';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LINERENTDISCOUNTB';
    END;
    2)Un-Successfull case: Table / View doesnt exist.
    CREATE OR REPLACE PROCEDURE mobi_test AS
    BEGIN
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA1';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA2';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LINERENTDISCOUNTB';
    END;
    BEGIN
    mobi_test;
    END;
    Any help.
    Regards,
    Irfan Ahmad

    The problem is that your grants for your user to be able to truncate those tables is given through a role. An anonymous block will use role based permissions so you're ok that way. But when it's a stored procedure, role based permissions don't apply.
    To solve it, grant delete/truncate permissions to that user directly.

  • Cropping pictures with Viewer doesn't work.

    Cropping pictures with Viewer doesn't work.
    Selecting < or ~ 12 pictures. (picture size are Snapshots with iphone resolution) ->Viewers opens and display them. -> Russian roullette between cmd+k or the little crop button. No indication which one will process a crop or which not. -> Both result in picture selection disappear with no crop.
    Selecting > 12 pictures. (picture size are Snapshots with iphone resolution) -> Viewer opens and display them. I crop them one by one with same Russian roulllette behavior between cmd+k or the little crop button. -> Closing Viewer. -> Pictures remain like they've been before. Not cropped.

    I just tried what you described (although I can't really fathom why you would describe it as Russian roulette (with a variable number of L's). Unless you've been drinking a lot, which is what people are usually doing when they are playing Russian roulette. Your post was hard enough to decipher without that.
    Anyway, my cropping was saved each time. I think there's something wrong with your Preview.app. Have you changed anything about the autosave functions of OSX?
    I would try:
    Boot into your recovery partition (restart, hold down ⌘R until you see the Apple logo), and use Disk Utility to repair your hard drive. Repair permissions too while you're there. OS X: About OS X Recovery
    if that doesn't help, then I'd reinstall Mavericks over your current installation.

  • Ical Month View doesn't work

    Okay, this just started happening to me randomly about 2 weeks after I got my macbook. Ical can no longer be viewed in month view. Furthermore, in either week view or day view, the page on the right that lets you set specific date/time as well as priority, alarms and notes and such, no long exists either. iCal starts, however nothing shows up as it starts in month view. When I click view>week view, that shows up fine (but still without the editor pane as I described above), but as soon as I click on month view, everything disappears. Please Advise
    Macbook Pro 17   Mac OS X (10.4.8)   Boot Camp Installed

    Hi,
    This is a problem with your iCal's preferences.
    The easiest way to deal with it is to close iCal, go to your users Library > Preferences, find the file 'com.apple.iCal.plist' and delete it. When you re-open iCal the window positions will revert to deafult. Open iCal's preference window and make sure all your settings are how you want aftter this.
    John M

  • HTML editor - design view doesn't accept specific chars on Polish keyboard

    I'am trying to edit simple HTML page based on the JDeveloper wizard and I cannot input specific windows-1250 code page characters in the design view of the HTML editor altough I can do it in the source pane.
    The code page is set properly
    example document content
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1250"></meta>
    <title>JDeveloper Journal, Issue 1, Welcome</title>
    </head>
    <body><p>
    Wyp&#322;ata prowizji / wyp&#322;ata zaliczek
    </p></body>
    </html>
    JDeveloper 10.0.1.3 (10g EA 3) on Windows 2000 Professional SP4 Polish version
    Regards
    Piotr Dadura

    Code errors are responsible for 98% of rendering problems.  Your pages lack a valid doc type declaration which puts them into quirks mode.
    On line #1 in code view, change this:
         <html>
    to this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    At least that will give you a fighting chance of validating without errors.  Use the online code validator below to check for other errors in all your site pages.
         http://validator.w3.org/
    Incidentally, asking a non-coder to use Dreamweaver is form of punishment.   Basic coding skills are necessary to get the most out of this product.   Anything less is going to result in frustration and confusion.
    It's worth noting that DW is NOT a WYSIWYG editor.  Design View is at best, an approximation of what you can expect to see in some browsers.  For best results, use Live View in Split View and edit the code.
    Nancy O.

  • Setting DAQ channel by property node does not display the value

    I am writing a configuration VI to set channel selection and calibration parameters for an SCXI chassis. I store a default setup in a configuration (ini) file and read that file automatically when the VI is called. The value from the file are set by property nodes using the "Value" property. The values from the file do not display in the DAQ channel selection rings, but the numerical calibration values do display correctly. When I click the down arrow in the channel rings, the correct value displays.
    This behavior exists both in LabView and app-builder EXEs. Also, if I change the property nodes for the DAQ channels to local variables, it works. The Value (signaling) property doesn't cause them to display
    properly either. Why can't I use the property node?

    I don't understand exactly what you are trying to do.
    Please upload a simple VI to demonstrate the behavior you are describing. Remember also to attach the .ini file.
    Best regards,
    Philip C.
    Applications Engineer
    National Instruments
    www.ni.com/ask
    - Philip Courtois, Thinkbot Solutions

  • PCI-6251 into LABVIEW DAQ Assist block interrupti​ons and resets

    Signals being received from PCI-6251 into a LABVIEW DAQ Assist block interrupts and resets every 10 seconds after 1 minute of data acquisition. Would this be a memory buffer problem or is it something related to the hardware? I am using a BNC-2110 hardware connector. Please view the attached image.
    Attachments:
    Interuption1a.GIF ‏4 KB

    Hey Peter,
    Ahh, I understand the graph now!  Hmm, this is very strange behavior.  Instead of using the DAQ Assistant, try to use the explicit DAQmx VIs (see picture).  You have more explicit control over what is going on with the DAQmx VIs and keep as much as you can out of the loop.
    Regards,
    Erik
    Attachments:
    analoginput.JPG ‏23 KB

  • LabView DAQ running more stable under Linux?

    Hello,
    We are doing LabView DAQ using a cDAQ9714 module (with AI card 9203 and AO card 9265) at a customer site. We are running an excutable on a Windows PC and had a couples of times (3 so far) that the PC just gone freeze for some reason and we lost all inputs and outputs. Each time it happend after the program continous run a few days. So far we have no clue why this is happening (Any idea?)
    We need the program to run continously for months and years and absolutely hate the fact that it freeze. Since we couldn't find any bug in the program till now, we're thinking to blame Windows. Then alternative for us is to use Linux os. My questions are:
    1. Does LabView run stable on Linux than on Windows? Any data or experience anyone has?
    2. To get the same program runs on Linux, I heard I have to buy a LabView Linux delelopment tool and create the excutable from there. Does this involve any extra effort than the Windows one?
    3. Does NI have any industrial PC that has Linux OS preinstalled instead of Windows? We bought one PPC 2115 before.
    Thanks!
    Rgds,
    Harry

    Harry - the main link here: http://zone.ni.com/devzone/cda/tut/p/id/6909 will show DAQmx (some Linux) and DAQmx Base (Linux/Mac) support for all of our products.  It's the same table on the last link it just links a list for all of our hardware offerings.  Currently there aren't any offerings with your desired I/O, we have a few multifunction DAQ devices like the USB-6218 that can be programmed with DAQmx Base in Linux.  If you are looking to run stand-alone and highly stable applications you may want to look into programming an application with the LabVIEW Real-Time Module and deploy it to a RTOS (Real Time Operating System) controller.  You would program the application in Windows with LabVIEW and this additional module, and then distribute the program to a controller.  If you deployed to an industrial controller you can interface PCIe, USB buses etc for your DAQ instruments.  We also offer this in our CompactRIO form factor where you would deploy the application to a controller/C series chassis similar to the compactDAQ you are using now in that it houses those C series modules but has much more to offer.  I've put a few links below here if you would like to look into these products any further.  
    NI 3110:  http://sine.ni.com/nips/cds/view/p/lang/en/nid/206847
    NI CompactRIO: http://www.ni.com/compactrio/
    NI 9074 Integrated 8 Slot Controller-Chassis:  http://sine.ni.com/nips/cds/view/p/lang/en/nid/203964
    Regards,
    Ben N.
    Applications Engineering
    ni.com/support

  • Refreshing the Data from a embed view in a view container

    Hi everybody
    I would like to know how can I do to refresh all data from a View with a view container the problem is:
    that I have a window that has a view at the same time this has a view container.  The Main view brings the data of editable elements when I select one element of the main view the view container brings a list for that element (dependencies) but only the first time a choose an element loads the correct data, when I choose another one it brings the same old data and doesn't make the call for the wdDoInit() method.
    The question is:
    How do I force the view to refresh all the data or call again the wdDoInit() method?
    Thank you for your help

    Aida,
    Lets say you have two components C1 and C2 and you want method from C1 to be available in C2 then follow these steps:-
    1) Goto the Interface Controller of C1 and create a method there lets say doSomething
    2) Then goto C2. There you can see Used Web Dynpro Components --> Right click Add Used Component --> Give some name say C1Comp --> Click browse and select C1 --> Click Finish.
    3) Next goto Component Controller of C2 --> Properties --> Click Add and check if C1 is added. If not then select the checkbox and select OK.
    4) Now goto Implementation tab of C2 and lets say wdDoInit you can write following code:-
    wdThis.wdGetC1CompInterface().doSomething();
    Chintan

  • Design view and browser view in DW are different than when I view from local folder

    I'm brand new to Dreamweaver CS5.5 and here is my problem:
    I've made an html page in dreamweaver with a banner, with an additional graphic and some text on top of the banner.  It displays just fine in every browser when I view from the local folder, but when I open DW and view, it displays incorrectly in all three design, live and browser views within DW.  If I make changes to the css file until it views correctly in design view, it no longer displays correctly from the local folder and it still doesn't view correctly in live or browser view within DW.  If what I'm doing isnt going to display accurately in any of the views provided by Dreamweaver as compared to the live server, whats the point in having this software?  I could just keep building webpages in notepad and uploading with CoreFTP.
    Any suggestions?  Is it some setting that I dont know about that I need to change within DW?   Please help.

    align="center" is deprecated (obsolete) code in XHTML & HTML5 doc types.  Instead of styling markup with HTML, you should be using CSS. 
    CSS
    .center {text-align:center}
    HTML
    <p class="center">some centered text here</p>
    With respect to break tags, in XHTML doc types the correct syntax is <br /> not <br>.  However your usage of line breaks is inconsistent with good symantic markup.  Use headings <h1> <h2> <h3> <h4> for important keywords.  Use <p> for descriptive paragraphs.  Use <ul> <li> or <ol> <li> for lists.  Line breaks should be used minimally if ever.
    XHTML doc types require all tags to be lowercase.  Uppercase tags will throw errors.
    Your design is too rigid.  When text size is increased in browsers, your content is unreadable.  See screenshot.
    SOLUTIONS:
    1) DO NOT USE POSITION ABSOLUTE.  You don't need it.  Absolute positioning removes content from the normal document flow resulting in a jumbled mess.  Use default CSS positioning (none) with margins, padding & floats to align elements.
    2) Remove HEIGHT values from all CSS containers.  Height limits a container's capacity to hold more content when needed.  Container height should always be determined by the amount of content it holds; not explicit values.  If required to reveal a background image, for example, use CSS min-height instead of height.
    CSS Box Model
    http://www.w3schools.com/css/css_boxmodel.asp
    CSS Floats
    http://www.w3schools.com/cssref/pr_class_float.asp
    CSS min-height
    http://www.w3schools.com/cssref/pr_dim_min-height.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

Maybe you are looking for

  • Getting started with JVMTI on Linux

    Hi All, I've been doing some JVMTI code for a while using windows, and I want to get that code working on Linux. The problem is that I can't seem to get even the simplest agent running on Linux. I can't figure out how to troubleshoot this, so any hel

  • My Online Number

     I'm furious and deserve credit. I've been paying for an online number for over a year on a 3 month basis so my friends and family in California can call me in Korea. When they call my number it tells them the number is not in service. When I call th

  • TS2755 My iMessage won't activate.

    I have great cellular data, but my iPhone has been saying "waiting for activation..." for about three weeks under my iMessage on and off switch. I have an iPhone 4. I've tried restarting my phone and I just updated it to the 5.1.1 software, but nothi

  • Dvd burner

    having problems backing up itunes libray on dvd 4.7 discs. used to back up at max burn speed. now i keep getting messege burn speed to high. i am now down to burn speed 2x and was able to back up. I really think it is a problem with itunes and not my

  • How to find CK40N release date.

    Hi Team, I have a query regarding CK40N here on which date we have released i want to know this date where we can get this date. In table or in CK40N pls advice me. Regards, Nauma.