C# Examples of GPIB Programming without Measurement Studio

I am trying to find examples of programming a gpib instrument with C#, but without Measurement studio. I am trying to cross the managed/unmanaged barrier and do not want to take any unnecessary performance hits.

Hello,
There is a very good reference on the functions that you can call for GPIB in C or C++. Once you have installed the 488.2 driver, if you go to Windows»Start»Programs»National Instruments» NI-488.2 »NI-488.2 Help.
It will contain all the functions that you can use.
Here I attached a C code for LabWindows/CVI which contains also some functions for a front panel. The important thing is to see how you use the ibdev, or ibwrt or ibrd commands.
Basically what you need is the functions I just mentioned.
You can find more examples in the Developer Zone. Look for CVI examples for GPIB and will be matter of just reading the C code.
Best Regards,
Ricardo Santa Olalla
National Instruments.
Attachments:
gpib.txt ‏9 KB

Similar Messages

  • Programming NI 6527 with VB 6.0 only without measurement studio

    Hello,
    I have a NI 6527 card which I want to control using VB 6.0 and I don't have measurement studio availabe. Is it possible at all? If yes, can anyone please direct me to some examples?
    Thanks,
    Ananda

    Ananda,
    Yes, it is possible to use the 6527 in VB 6.0 without Measurement Studio.  The best starting point is to look at the examples shipped with the Traditional DAQ drivers.  They should have installed to the following directory:
    C:\Program Files\National Instruments\NI-DAQ\Examples\VBasic
    If this directory does not exist, it probably means that Visual Basic support was not selected when you first installed your Traditional drivers.  To install these examples, reinstall the Traditional drivers and make sure that "Microsoft Visual Basic Support" has been selected to install on the Features menu.
    If you can't find what you're looking for in the shipping examples, try searching the online Example Code Library.  There are a lot of good examples out there written by both NI customers and engineers.
    Hope this helps!
    -Justin M

  • Any example for a MFC, WTL or Win32 without Measurement Studio?

    It seems that NI wants you buy their Measurement Studio which can easily cost you a fortune. I am looking around a simple example for MFC, WTL without touching the measurement studio. But if you do not have measurement studio, NI only gives you very old examples in ANSI C which is difficult to implement to MFC or WTL. Apparently they want to increase their revenue by forcing you to buy the Measurement Studio. But I will not buy their hardware in the future if this is their strategy.
    Anyone successfully implement the ANSI C example to MFC or WTL without measurement studio? Can you share an example?

    Junqi,
    Im a little confused with this request in general. What development environment are you using? Visual Studio? Also, what language are you coding in? We provide C, C#, VB.net, and legacy VB6 examples with our DAQmx driver that do not require measurement studio. They can be found in documents\National Instruments\NI-DAQ\Examples 
    Now forgive me if Im misinformed about this, but MFC and WTL are just libraries that have some of the windows API wrapped into them, correct? If so, I dont see how interfacing with them is any different than interfacing with any other library, or why this would cause issues with doing DAQ calls. If you need help with the MFC or WTL library, there are many good places to find help with on the internet. MSDN, codeproject.com, and many others come up as having examples of using MFC in various projects.   
    The MS examples dont install withough MS because they wouldnt be able to be used because they use libraries that are installed with measurement studio, so they would be nonfunctional and largely useless. 
    Regards,
    Kyle Mozdzyn
    Applications Engineering
    National Instruments
    Regards,
    Kyle M.
    Applications Engineering
    National Instruments

  • How to building a multi-channels analog output task in visual c++ 6.0 (without Measurement Studio)?

    Hello!
     I have a PCI 6251 card, and using DAQmx C function to generate a wavwform. (single channel ).
    But, how to creating a multi-channels analog output task, and had a different frequence in each channels?
    Thanks.

    This is getting to be a common question!
    The answer is, you can't.
    If the rates have common factors, you can use a higher overall rate. The slower waveform will simply have extra points in it to make up for the higher update rate.
    John Weeks
    WaveMetrics, Inc.
    Phone (503) 620-3001
    Fax (503) 620-6754
    www.wavemetrics.com

  • Is it necessary to preconfigure input mode in MAX prior to writing program in Measurement Studio?

    If my E-Series device properties Analog Input Mode in MAX is set to Referenced Single Ended, can I still over-ride in code from VB to read Differential mode?

    You can do it using VB. Please make sure that if you are changing the input mode (CWAIChannel.inputmode) or you can use functional call to change it too.

  • Can I acquire data with VB from my DAQCard without using Measurment Studio?

    I have the Measurement and Automation Software on my computer and VisualBasic.NET. Do I need any other software if I am receiving 2 analog signals and outputing 1 analog signal on my NI DAQCard-6024E PCMCIA?

    The short answer is yes, you can acquire data with VB.NET from your DAQCard without using Measurement Studio.
    There are a variety of ways to do it. All of them require that you install either the Traditional DAQ driver or the DAQmx driver in addition to Measurement and Automation Explorer. The DAQ drivers are included on a CD or CDs with your hardware. They are also available on the quarterly National Instruments Device Driver CD.
    1) You can use the Measurement Studio DAQmx .NET API. This is far and away the easiest API to use to program DAQ cards in VB.NET and C#. This API is included in the DAQ installer and does not require you to purchase Measurement Studio. However, without Measurement Studio you do not get the benefit of the DAQ Assistant integrated into Visual Studio .NET. The DAQ Assistant, when integrated into Visual Studio .NET, allows you to graphically configure your DAQ tasks, generates the code you need to configure your tasks, and generates a .NET user control (with user interface) that demonstrates how you use the tasks that you created. The caveat to this approach is that PCMCIA cards are not directly supported under DAQmx 7.0. There is, however, a beta versin of DAQmx PCMCIA support as described in this KB article.
    2) You can use the .NET P/Invoke services to call the Traditional DAQ or DAQmx C API directly. See MSDN for more information about P/Invoke. If you choose the DAQmx API, you will need to install the beta of the PCMCIA support as described in this KB article. National Instruments does not provide any examples, language-specific documentation, or code generation for this method. You'll need to look at the C API documentation to see what to do.
    3) You can use the Measurement Studio Traditional DAQ ActiveX controls. These are included in the DAQ installer and do not require you to purchase Measurement Studio.
    The absolute quickest and easiest way to get started using an NI-DAQ card in VB.NET is through the DAQ Assistant and Measurement Studio Professional or Enterprise edition.
    Your next best approach is to use the native .NET DAQmx API. This API was designed from the ground up to support .NET languages. There are examples written in VB.NET to help you get started.
    If for some reason, you don't want to use the native .NET API (or your hardware is not supported under DAQmx), whether you use P/Invoke or the ActiveX controls is a toss-up. It depends mostly on whether you are already familiar with the C API or the ActiveX API.
    David Rohacek
    National Instruments

  • I have programmed a visual basic application using activex controls. WHen I run this application through internet, it appears a message box indicating that the measurement studio is a demo, but I have the correct license. What can I do?

    I run the application in a computer without measurement studio because my application is stored in a web server and I access to the application downloading it from a web page of that server.

    Have you included the lpk file with your control? I've attached the tool you'll need and here is a nice link that goes thru it step by step.
    Hope this helps
    Bilal Durrani
    Bilal Durrani
    NI
    Attachments:
    lpk.zip ‏74 KB

  • Frequency sweep with vb6 and measurement studio

    hello! i hope you can help me with my problem
    im using:
    -PCI-MIO-16E-4 Daq-Card (at the moment, later i will get the PCI-6115 Daq-Card)
    -Visual Basic 6.0 with Measurement Studio
    my Problem: i want to stimulate a mechanical system with sine-waveforms of differernt frequencies, because i want to measure the resonance frequency of the mechanical system.  For that i want the Daq-Card to output a sine waveform, the frequency should be swept from one frequency to an other frequency (i think the real values dont matter at the moment). The Problem is that the sine-waveform must not be interrupted  when you change the frequency, because this would disturb the movement of the mechanical system.
    I allready tried (without Measurement Studio) to use the fifo buffer (regeneration of thewaveform in the fifo) to be independent of the delays caused by the pc-system, but when i change the updaterate (change of the frequency) of the DAC there is again a dependence on the pc-system and the waveform goes to zero Volts for a while.
    And i also tried to use the Chirp-Function (CWDSP.Chirp) of the measurement Studio, but with this function i have the problem, that i cant define how long the DAQ-Card outputs the actual frequency.
    greetings A.Herman

    Hello SG_ENGINEER,
    So that is possible, but it is a completely different approach than that mentioned above.  You would have to use a continuous analog output program and change the output waveform.  Check out the attached example.  I modified a shipping example to do an analog output and increment the frequency of the output waveform. 
    -Alan A.
    Attachments:
    Continuous_Analog_Out_Update_Sinewave.vi ‏100 KB

  • Using graphs in measurement studio

    I have written in multiple languages, and this �easy� �user friendly� software package has left me completely stumped. How on earth do you put data in to a graph and display it????? Can someone please show me code examples of firstly how to shove an entire array of numbers into a graph in VB.net using the new Measurement Studio and secondly how I could update a graph plot with a next acquired sample. Please help

    "Where would I find "Creating Measurement Studio Strip Charts, Scope Charts, and Graphs" document. if it is on the website it is extremeley well hidden even from its own search engine. Does this specifically talk about VB .NET and measurement studio"
    You can find this topic, as well as several other conceptual topics about the Measurement Studio .NET features with VB.NET/C#, in the Measurement Studio help that installs with Measurement Studio. You can find this help in two ways:
    Integrated into VS.ET 2003/MSDN Help - Go to the table of contents, then the "NI Measurement Studio Help" node.
    Measurement Studio standalone help - Go to the Start Menu, then Programs->National Instruments->Measurement Studio 7.1 for VS.NET 2003->Measurement Studio Documentation
    Once you're in the table of contents, you can find the topic above by navigating to:
    - NI Measurement Studio Help
    - NI Measurement Studio .NET Class Library
    - Using the Measurement Studio .NET Class Libraries
    - Using the Measurement Studio Windows Forms .NET Controls
    - Using the Measurement Studio Graph .NET Controls
    The topic above is the second link in the list. If you have Measurement Studio 7.1 installed, this link will take you directly there.
    "Using Measurement Studio ActiveX controls I wouldn't even know where to start, there is no AxCWGraph on any toolbar."
    AxCWGraph is the name of the interop wrapper that is automatically generated by VS.NET when you add CWGraph to your project, so you won't see it in the toolbox. WaveformGraph/ScatterGraph is what you should use in .NET applications if you have Measurement Studio 7.0 or higher. I only mentioned CWGraph because this was posted to the Measurement Studio for Visual Basic forum instead of the Measurement Studio for Visual Studio .NET forum, so it wasn't clear if you were using the Measurement Studio .NET controls or the Measurement Studio ActiveX controls.
    "If NI could just stick an example of exactly how to use VB.NET with measurement studio on displaying data and the various options available and stick it for all to see on the measurement studio home page it would be great."
    There are several examples that are installed with Measurement Studio 7.1. If you installed Measurement Studio to the default location, you can find this examples at:
    Program Files
    National Instruments
    MeasurementStudioVS2003
    DotNET
    Examples
    UI
    Graph
    "I write in over ten different languages and scripts and fluent in two of them. It worries me that I can't even find the front door let alone open it."
    I can understand how this could difficult if you were not aware of the Measurement Studio help and examples. Is it easier now that you know about this content that installed with Measurement Studio? If not, what else do you feel is missing?
    - Elton

  • Application distribution Measurement studio

    We have now developed a software application using Measurement Studio and VC++ for "capturing" live communication data from line as step 1 of the application and "analysing data" separately as step 2. We can do the 2 steps without any problem on a data acquisition machine. However, when we run the same application on a desktop PC (not a digitizer or not connected to digitizer) we expect the application to RUN only step 2. The question here is then, in order to set application up on a desktop PC (not a digitizer or not connected to digitizer) what changes I should do (in terms of un-tying NI scope acquisition functions)?
    NI Software : Measurement Studio for Visual C++ version 7.0
    NI Hardware : High-Speed Digitizers (Scopes) device PXI-5122
    Driver Version : NI Scope 2.6
    OS : Windows XP

    THanks for response.
    >>> Aha, I didnt realize that you were using the C++ scope classes. The scope driver does not >>> get loaded until the very first call to the scope class. So you would not need to setup >>> delay loading nor would you use LoadLibrary or GetProcAddress.
    Our application was developed using MFC VC++ 2003 .NET edition. Sorry I missed the details.
    >>> You will get an exception when you use the CNiScope constructor and if the system does >>> not have the scope driver installed.
    Exactly, I do get an exception when I use the CNiScope constructor. However, what I do is create CNiScope 2 times. The first time a dummy construction is done with function like this...
    bool CMainFrame:copeExists(void)
    bool scopeExists = true;
    CString errorMsg = "NiScope device absent.\r\nNo Scope controls will be available";
    try
    // Instantiate a scope to test is it exists
    CNiScope ProbeScope ("PXI1Slot2", false, false, "");
    catch (CNiIviException* e)
    e->Delete();
    AfxMessageBox (errorMsg, MB_OK | MB_ICONEXCLAMATION);
    scopeExists = false;
    return scopeExists;
    I use the returned boolean to identify if scope driver is PRESENT or ABSENT in the system. Using this boolean result I then do the actual scope dialog bar and CNiScope construction (the second time is when the actual CNiScope is created and used).
    If boolean is FALSE
    no scope dialog bar controls is created
    only the analyses dialog bar controls are created
    else
    application starts up with scope and analyses dialog controls
    >>> Are you using the .NET class libraries? Or is this just MFC code?
    Just MFC code with Measurement Studio
    >>> For a list of components that need to be distributed, refer to the Measurement Studio Help topic Distributing Measurement Studio Visual C++ Applications.
    This was helpful to the extent that I got the active X controls loaded and distributed with application. But analyses part of application crashes when it tries to use the CNi such as CNiMatrices, CNiReal64Vector. I found this using the debugged in Microsoft's VC++ .NET 2003.
    >>> Are you checking for exceptions when you start the analysis routines?
    I do have a few exceptions being checked. However, can you tell the exceptions you have in mind that need to be included.
    >>> Is this crash happening on the development machine or the deployment machine?
    The crash is happening only on machines NOT having scope drivers. I tried on a 2 machines.
    One WITH Measurement Studio and WITHOUT scope controls - it crashes
    Second WITHOUT Measurement Studio and WITHOUT scope controls - it crashes
    Is there something I am missing??
    >>> Could you provide more information about the crash, perhaps a code snippet or a sample app ( with only the analysis section).
    Here is code snippet....
    m_digIntpolRowLength and m_digIntpolCoeffRows are unsigned int types.
    m_farrowFilterCoeff is CNiReal64Matrix type. This is the first moment in application when a CNi is used. When the matrix elements are loaded with values, it crashes at the line
    m_farrowFilterCoeff(0,0)=0.00252;.....
    I know this may or may not give you whole lot of information. If we can go offline from discussion forum (becuase of proprietary information), I can provide more details about application etc. Thanks.
    void CDAQ_DigitalInterpolator::ResetLarge(void)
    m_digIntpolRowLength = c_digIntpolRowLengthLarge;
    m_digIntpolCoeffRows = c_digIntpolCoeffRowsLarge;
    m_farrowFilterCoeff.SetSize(m_digIntpolCoeffRows, m_digIntpolRowLength);
    m_delayLineBuffer.SetSize(c_delayLineBufferSize);
    m_delayLineSize = m_digIntpolRowLength;
    m_delayLinePtr = &m_delayLineBuffer[c_delayLineBufferSize - m_delayLineSize];
    /////Row 0//////
    m_farrowFilterCoeff(0,0)=0.00252;
    m_farrowFilterCoeff(0,1)=-0.0087823;
    m_farrowFilterCoeff(0,2)=0.0218283;
    m_farrowFilterCoeff(0,3)=-0.046127;
    m_farrowFilterCoeff(0,4)=0.0909993;
    m_farrowFilterCoeff(0,5)=-0.1884611;
    m_farrowFilterCoeff(0,6)=0.6283543;

  • Why can't visual basic 6 load CWDAQ.OCX in the example programs? I am using the latest Measurement Studio 6 and VISTA OS.

    Can someone help me with getting controls to work with Visual basic 6 in an Vista environment?  I cannot get the examples to work that use the CWDAQ.OCX control.  I did a search on my computer and the file is not even there.  What functions are in CWDAQ.OCX?  Is there a descriptions of what functions are included in this control and other controls?  It is not obvious where to find these descriptions. 
    I did install Measurement Studio 6 with all the options for Visual basic 6.
    I am new to programming NI cards with visual basic so any help in getting me started will be greatly appreciated. 
    I need to talk to a PCI-6110 card in visual basic 6.  I would like to preprogrammed the D/A fifos, store to two analog inputs simutaneously, and use some of the digital I/O.  Can someone direct me the direction as to what controls I need to use?
    Thanks in advance for any help or guidance. 
    Tony

    Hi Tony,
    So the reason you can't find the CWDAQ.OCX ActiveX controls in VB 6.0 in Vista is because that is a Tradtional DAQ (legacy) control meant to work with the Traditional DAQ Driver.
    The Tradtional DAQ drivers aren't officially supported in Windows Vista (KnowledgeBase 4FDH4MZN: Traditional NI-DAQ (Legacy) for Windows Vista OS) and so the CWDAQ.OCX controls don't get installed.
    However, the good news is that the PCI 6110 is a newer card that uses our newer driver, NI-DAQmx. DAQmx is supported in Vista and you can communicate to your card from VB 6.0 using DAQmx in Vista.
    There are several examples that show you how to communicate using DAQmx in VB 6.0.
    These can be found in:
    <Users>\Public\Documents\National Instruments\NI-DAQ\Examples
    This is also mentioned in the following Knowledgebase article:
    KnowledgeBase 47CCSQ5B: NI-DAQmx, NI-VISA and NI-488.2 .NET Example Locations
    Also, the DAQmx functions are documented in the following locations:
    Start»Programs»National Instruments»NI-DAQ»NI-DAQmx C API Visual Basic 6.0 Help
    Start»Programs»National Instruments»NI-DAQ»NI-DAQmx C Reference Help
    Hope this helps!!
    Message Edited by Jervin_J on 06-05-2008 02:58 PM
    Jervin Justin
    NI TestStand Product Manager

  • Program DAQCard-AI-16XE-50 with Measurement studio

    Does DAQCard-AI-16XE-50 can works with a application created by Measurement studio? I have developed a data acquisition software base on PCI-MIO-16E-4, but I want swith the card to DAQCard-AI-16XE-50, it likes doesn't work, I don't known why?

    Thanks lots to Chris and RamziH,
    I have tested DAQCard-AI-16XE-50 on Max, it works fine all analog channels, the device nubmer is 1. So, in my program I am using this device number, checking the sample rate no more than 20kHz and no analog output function in my program, but it still doesn't works. Does CWAI works with DAQCard-AI-16XE-50? The DAQ driver version is 6.9.2.
    Thanks again.

  • GPIB programming

    I have seen so many ways to program an application to transfer data thru GPIB, for example, there are VISA (eg. viClose, viOpen), NI-4882 API (eg. ibdev, ibclear), and CNi4882 (eg. write,read) class from Measurement Studio software. Can u tell me what's the difference between those and when do u use each of those? How they are related/categorized? Is there any caution when using those (eg. can mix or do not mix)? it would be nice too if u could give me some article to read about it. I want to get a big picture of those.
    thank you

    Irene,
    Here are some documents that should answer your questions:
    NI-VISA Help:
    http://digital.ni.com/manuals.nsf/websearch/21992F3750B967ED86256F47007B00B3?OpenDocument&node=132100_US
    Language Interfaces:
    http://zone.ni.com/devzone/devzone.nsf/webcategories/0B47FD0CFA7E3F6E862567F4005AD89C
    Please repost if you have further questions.
    JenK

  • Compatibility of NI IMAQ with measurement studio

    I would like to know where the NI IMAQ driver software is compatible with measurement studio.

    Hello,
    NI-IMAQ driver and its API is fully compatible with Measurement Studio. If you have already installed NI-IMAQ with Measurement Studio support, see the following directory (default path) for shipping examples
    C:\Program Files\National Instruments\MeasurementStudio\CVI\samples\IMAQ
    Let me know if you have further questions on this.
    Regards,
    Yusuf C.
    Applications Engineering
    National Instruments

  • Measurement studio expired first day I install

    Hi,
    I download Measurement Studio 2009 for Visual Studio Evaluation yesterday. I installed it with Labview 2009 and DAQmx 9.2.1. My OS is XP sp3. I have a DAQ card DAQ-6024E. And I tried to output a analog signal using the card. So, I found out there is an example from NI after installation named "GenVoltageUpdate" in the folder  \NI-DAQ\Examples\MStudioVC2008\Analog Out\Generate Voltage\. I used VS 2008 to try to run this program in debug mode. There was a box popped up "The Measurement studio evaluation has expired". I checked the Measurement Studio>> License, and it shown as the figure attached. None of them has expired yet.
    I don't know why there is such message about expiration. I hope someone can help me.
    Thank you very much.
    Attachments:
    新图片.jpg ‏246 KB

    Hi, I installed today (02-12-2011) the evaluation version of Measurement studio 2010 for Visual Studio 2008.
    Checking the licence page from the Measuremt studio menu I get thet all the components I installed should expire on 13/03/2011.
    The problem is that if I try to execute any sample code provided I get the following error:
    System.ComponentModel.LicenseException was unhandled
      Message="NationalInstruments.UI.WindowsForms.WaveformGraph evaluation period has expired."
      Source="NationalInstruments.Common"
      StackTrace:
           at NationalInstruments.Restricted.EvalReleaseLicense.ShowEvalBehavior(Type type, Object instance, String licenseString)
           at NationalInstruments.Restricted.EvalReleaseLicense.ComponentRunTimeCheck(Type type, Object instance, String licenseString)
           at NationalInstruments.Restricted.LicenseBase.PerformRunTimeCheck(Type type, Object instance, String runTimeLicense)
           at NationalInstruments.Restricted.LicenseBase.RunTimeCheck(LicenseContext context, Type type, Object instance)
           at NationalInstruments.Restricted.LicenseProviderBase.GetLicense(LicenseContext context, Type type, Object instance, Boolean allowExceptions)
           at System.ComponentModel.LicenseManager.ValidateInternalRecursive(LicenseContext context, Type type, Object instance, Boolean allowExceptions, License& license, String& licenseKey)
           at System.ComponentModel.LicenseManager.ValidateInternal(Type type, Object instance, Boolean allowExceptions, License& license)
           at System.ComponentModel.LicenseManager.Validate(Type type, Object instance)
           at NationalInstruments.UI.WindowsForms.WaveformGraph..ctor()
           at NationalInstruments.Examples.Plotting.MainForm.InitializeComponent() in C:\Documents and Settings\All Users\Documenti\National Instruments\MStudioVS2008\DotNET\Examples\UI\WindowsForms\Graph\Plotting\cs\MainForm.cs:line 64
           at NationalInstruments.Examples.Plotting.MainForm..ctor() in C:\Documents and Settings\All Users\Documenti\National Instruments\MStudioVS2008\DotNET\Examples\UI\WindowsForms\Graph\Plotting\cs\MainForm.cs:line 37
           at NationalInstruments.Examples.Plotting.MainForm.Main() in C:\Documents and Settings\All Users\Documenti\National Instruments\MStudioVS2008\DotNET\Examples\UI\WindowsForms\Graph\Plotting\cs\MainForm.cs:line 274
           at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
           at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
           at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
           at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
           at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
           at System.Threading.ThreadHelper.ThreadStart()
    I tried using the Measurement studio active-X License fixer. In the Licensed controls list there is "3D Graph control 8.0" but in the Elvaluation Licenses list and the Broken Licenses list the is no controls at all.
    Is there something else I can do?
    Best regards, 
    Mark

Maybe you are looking for

  • How to read SMS time/date stamp in mySQL backup

    what is the syntax for the timestamp on SMS messages in iPhone backups? i get a number like this for the date: 1304719698 (this is not an outgoing number, it is in the date column)

  • How to shut off bookmarks by default ( Adobe Reader 7.x)

    The company president has requested that all PDF's I send him open up without the bookmarks panel. The thing is, the PDF's are produced from a reporting tool which generates the bookmarks, then it sends him the file by email. Since there's no manual

  • Photoshop - FW workflow - need advice please!

    I've been using ImageReady CS2 along with Photoshop CS3. Just upgraded to CS4 Design Premium and now I have Fireworks, and am interested to start using it. In my current workflow, I build web files in Photoshop, save, close, then open in ImageReady a

  • Mail not displaying any messages.  Blank preview panes.

    I am not entirely sure when this started, but here is my problem: I have to constantly quit and re-open Mail. When it is hidden or minimized in the dock and I receive a new mail message (which I am notified by the red badge number on the dock icon) I

  • Mask and Limit Testing Express VI

    Hello. Im a bit new at looking at limit testing signals. Im using the Mask and Limit Testing Express VI to mask a signal I acquired previously. See attached VI. My problem is that we would like to load the limit mask at run time using a file of some