Looking for simple PC x86 mono/vga driver

Is source code available for a simple Monocrome or VGA driver
in Solaris 8 on a PC x86 platform

Gallantm:
All of the peripheral drivers for our controllers are posted on this page. Please let me know if you have any more questions. Have a nice day.
Tori W.
National Instruments

Similar Messages

  • Looking for LabView 6i GPIB-USB-A driver for Agilent E7401A

    I am looking for LabView 6i GPIB-USA-A driver for Agilent E7401A EMC ANALYZER.

    Hi,
    There is a driver for this device available for downloading from the National Instruments Instrument Driver Network. Here is a link to the download page:
    Multi-Environment Certified IVI Instrument Driver
    Unfortunately, however, this driver is only available for 7.0 and 7.1. Unless someone else on this message board has created one for 6i, you will need to create your own.
    The other option is to upgrade to LabVIEW 7.1, which I highly recommend. There are many improvements over LabVIEW 6, including Express VIs, Event Structures, and many others. You can see the new funtionality of LabVIEW 7.1 with a free online demo version at this link
    Try LabVIEW 7.1 FREE Online
    If you are interested in upgrading, you can call your National Instruments Technical Sales Representative at (888) 280-7645. Have a great day, and good luck with your driver search.
    -John M

  • Looking for simple timeline/calendar screenlet/widget.

    Good day gentlemen,
    I'm looking for a simple screenlet or widget for linux that is a calendar, but designed to be more of a timeline of past events than a reminder of future events. For my specific purpose in this case I'm trying to lose weight. So I'm seeking an application to record my previous weight and other notes about what i ate, and how much and what kind of nutrients i had that day. I would like to keep it in a calendar or timeline like format. Something easy to the point where if my buddy asked me how much i weighed last week or what i did last week, i can simply click on the date and all my notes appear about my weight, and what i ate, etc. Also simple to input data like clicking on the date and entering a note about that day. Something easy to use and sort of integrated into the desktop such as a screenlet or widget, so I don't have to open up a separate window to view these records. I did a little research and was able to find a few things, Rainlendar being one of them. But I feel most of what i found are way more complicated for my purpose. Would any of you happen to have any suggestions on what application would most suit my purpose in its most simplistic form? thanks in advance for your kind and prompt response
    Sincerely,
    Sicariuxs

    There are, apparently, quite a variety of tools just for this purpose.  here's one.  That was just the first one up from a search, I don't actually know anything about it.  But overall, I'd suggest you actually narrow your search as there are tools targetted specifically for such goals.

  • Looking for Simple JSTL Example

    Hi Everyone,
    I'm looking for an example of a simple Web application that uses "JavaServer Pages Standard Tag Library" (JSTL) -- that doesn't use JDeveloper!
    I have OC4J stand-alone 10.1.3.0.0 on Microsoft Windows XP Professional Version 2002 Service Pack2 with JDK 1.5.0_07
    I created and packaged a J2EE application in a EAR file. The EAR file contents:
    META-INF/application.xml
    frstjstl.warContents of "application.xml"
    <?xml version="1.0"?>
    <application
           xmlns="http://java.sun.com/xml/ns/j2ee"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/application_1_4.xsd"
           version="1.4">
      <module>
        <web>
          <web-uri>frstjstl.war</web-uri>
          <context-root>frstjstl</context-root>
        </web>
      </module>
    </application>Contents of "frstjstl.war"
    META-INF/MANIFEST.MF
    index.jsp
    WEB-INF/lib/standard.jar
    WEB-INF/web.xmlContents of "web.xml"
    <?xml version="1.0"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
             version="2.4">
      <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
      <jsp-config>
        <taglib>
          <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
          <taglib-location>/WEB-INF/lib/standard.jar</taglib-location>
        </taglib>
      </jsp-config>
    </web-app>Contents of "index.jsp"
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <html>
      <head>
        <title>Simplest JSTL</title>
      </head>
      <body>
        &lt;h1>Simplest JSTL</h1>
        <c:forEach var="httpRequestHeaders" items="${headerValues}">
          ${httpRequestHeaders.key} = ${httpRequestHeaders.value}
        </c:forEach>
      </body>
    </html>My JSTL implementation comes from here:
    http://jakarta.apache.org/taglibs/doc/standard-doc/intro.html
    The distribution contains a "standard.jar" file and a "jstl.jar" file (among other things). The "standard.jar" file is included in my WAR (see above) and I have copied the "jstl.jar" file to:
    %J2EE_HOME%\jsp\lib\taglibI launch OC4J from the command prompt like this:
    java -jar oc4j.jarI deploy my EAR using the following command:
    java -jar admin.jar ormi://localhost oc4jadmin xxx -deploy -file frstjstl.ear -deploymentName FirstJSTL -bindWebApp default-web-siteThen I launch my Web browser and enter the following URL:
    http://localhost/frstjstlAnd I get the following error message:
    500 Internal Server Error
    OracleJSP: oracle.jsp.parse.JspParseException: /index.jsp: Line # 8, <c:forEach var="httpRequestHeaders" items="${headerValues}">
    Error: Attribute: items is not a valid attribute nameThanks (for reading),
    Avi.

    Thanks Qiang.
    Yes, when I copy file "index.jsp" to directory "%J2EE_HOME%\default-web-app\testJstl.jsp" it works.
    I use the following URL:
    http://localhost:8888/testJstl.jspAnd this is the output I get:
    [Format modified to be more suitable to post on this forum.]
    Simplest JSTL
    CONNECTION = [Ljava.lang.String;@7348e
    USER-AGENT = [Ljava.lang.String;@10b8d03
    ACCEPT-LANGUAGE = [Ljava.lang.String;@157011e
    ACCEPT-ENCODING = [Ljava.lang.String;@10a8143
    ACCEPT = [Ljava.lang.String;@ac8360 HOST = [Ljava.lang.String;@1e534cb
    [/pre]
    But I guess, since the JSTL related JAR files are part of the default Web application, there is no reason it shouldn't work.
    That's why you said:
    Let us do a sanity test first.So now what?
    (And, by the way, thanks for your help.)
    Cheers,
    Avi.
    Message was edited by:
            Avi Abrami                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Looking for SIMPLE time tracking app

    Hi all
    I'm looking for a really simple 'retrospective' time sheet app - wondering if anyone knows one?
    I've seen literally hundreds, but they all want you to 'click to start the clock' and then click to end it. This doesn't work for me, as I spend only about 25% of my time in front of the computer.
    What I'm looking for is something that I can put all my client contacts in, then separately link projects to those clients. Then at the end of each day I can quickly recall what I did during the day and assign time to each project.
    Most apps want you to assign time to each project as you go through the day, so its relatively painless to switch projects. However when you do it all at the end of the day, you don't want to keep entering the date, you just want to enter the start/end time, and what project it was. More like a journal entry I guess.
    Then at the end of the month it would print a report that groups the hours worked on each project so that you can review them and create an invoice (or in my case send to my accounts clerk who makes the invoice for me).
    Any ideas from anyone would be greatly appreciated.
    Thanks!

    Hi shannonbray, welcome to the AppleWorks forum, which is intended for discussions of Apple's now-legacied productivity suite called AppleWorks.
    One could develop such a template using the spreadsheet or database modules of AW separately or in combo,but it doesn't sound as if that's your aim. I'm sure clever types have done such things, and perhaps shared them to the AWUserGroups and such, and I hope they note your post and reply. There are certainly numerous clever folks who follow this forum, and they may have pointers to other apps for you, but essentially I think you've posed the wrong question in the wrong place.

  • Looking for Simple Password App

    I'm looking for a simple, secure, free app to store my passwords in. I did a google search and there are hundreds out there. I'd like to use one that someone here has had experience with. I don't want anything sophisticated or something that syncs. Just something to store my passwords on my iphone.
    Thanks, Dick

    Put the Library on an encrypted disk image. Unless Mom is a serious computer head she'll not know what you've been up to.
    Regards
    TD

  • Just put my i-tunes library on a 2nd hard drive, how do I easily change the location where the program looks for current songs from the C:/ drive to the new drive without going thru each song individually in the "get info" tab

    I just installed a new hard drive and transfered my i-tunes library to the new drive.  How can I make a bulk change of the location the program looks for the current songs.  I know you can do it song by song from the "get info" tab but I need to do it for all 4500 songs.  I have already changed the location that new files are stored to the new hard drive.

    The pop-up lets you connect to the library file, iTunes Library.itl, on the external drive. This will, in turn, automatically update the preference for the iTunes Media folder to be the iTunes Media or iTunes Music folder inside the iTunes folder on the external drive and it will update the locations of all the content inside the media folder so that it uses the version on the external drive.
    This works seamlessly if all iTunes content was inside the iTunes Media (or iTunes Music) folder (which was itself inside the iTunes library folder) before you moved/copied the iTunes folder. For content outside the iTunes Media folder iTunes should remain connected to the original location. These files should be consolidated (before or after the move/copy) and in addition, if available the library should be upgraded to the newer layout which places iPod Games and Mobile Applications inside the media folder instead of the library folder. (File > Library > Organize Library...)
    For split libraries there are methods to rejoin them before moving (preferred) or repairing after the fact (e.g. my script) which I can go into if needed.
    tt2

  • Looking for Solaris 10 x86-64 Generic_142910-17

    Hello
    Can you help me to find an iso of the Solaris 10 x86-64 Generic_142910-17. It must be exactly that version.
    Thanks

    Not exactly. I have asked for media with the version that I have in the specification requirements (for some project). So it will be good to check the version before proceed with install...
    Edit:
    Ok, i have found that the system version is listed in the Solaris boot menu and that is the version I was looking for.
    Edited by: 991601 on 2013-03-04 06:37

  • Looking for a new budget mono Laser printer

    Hi,
    I was originally looking at the HP LASERJET P1005 but have read that there are a few problems with drivers for Leopard. Had a quick scout around and found a Samsung ML-2240 which is 10.3 - 10.5 compatible.
    Does anyone have any other suggestions?
    Cheers

    In my opinion, pretty much all the machines in that price range(that have the specs you're looking for) are going to be pretty much the same when it comes to quality/durability.
    I prefer the brand ASUS(and most of the other's on here will chime in to that effect). I'm very partial to them, and would toss this out as a recommendation : http://www.bestbuy.com/site/Asus+-+K-Series+15.6%26%2334%3B+Laptop+-+4GB+Memory+-+500GB+Hard+Drive+-...
    Thought it has Windows 7 on it, I can't say I consider that a bad thing.
    If you like my post, or solution to your issue/question, go ahead and click on the little star by my name and/or accept the post as the Solution. It makes me happy.
    I'm NOT an employee of Best Buy, or Geek Squad, though I did work as an Agent for a year 5 years ago. None of my posts are to be taken as the official stance that Best Buy will take on your situation. My advice is just that, advice.
    Unfortunately, that's the bad luck of any electronic, there's going to be bad Apples... wait that's a horrible pun.

  • Looking for Simple Archiving Catalog Software

    I  have previously used AutoCat. Simply drag and drop a folder and AutoCat copies
    the folder hierarchy and makes aliases of all the files. I keep this a catalog to
    be able to simply find all of my files by a search through the finder. It tells
    me the archive number of the disk where I can find a particular project. Very
    simple, very legant. Not supported in Lion so I'm looking for a replacement.

    Touvaly serves the same function as AutoCat. But it goes too far. It makes a "vrtual copy" of a removable disk. It is so hard to tell if you've pulled up real files and folders or the fake ones! - Somebody PLEASE bring back AutoCat!

  • Looking for Simple report

    Hi All
    Hope u are doing well
    I was looking a simple report which gives me celar picture of the stages
    Sales oder no, Invoice numberNo, if on production production ordernumber due date of production order and po invoived to get the production done and trceiving date of POs for the same
    Kindly revert with the best possible option
    Have a nice day
    Kind regards,

    Dear Mona,
    The requirement you have putted on your report is very much complex.As per your scenario this one is only possible when you guys are following the base document otherwise this report is not possible
    Regards,
    Kumar

  • PSE 6 wants to look for reconnections on the wrong hard drive

    I recently installed a new 500 GB hard drive.  I want that to be my new C [main/boot] drive and managed to accomplish this with some changes to the boot.ini file.  My original C is now named J and is a 120 GB hard drive that I wish to use to backup pictures. I have an identical set of digital pix on both the new C and J.
    The problem I'm having with PSE 6 is that following a digital picture download to my new C, the thumbnails show up in PSE 6, but when I attempt to print one, the recently downloaded files are noted as disconnected.  When I try to reconnect, I find that the photos were indeed downloaded to my new C drive, but PSE 6 lists them as connected to the J [old C].  When I try to navigate the reconnect process to the proper hard drive, the button grays out and nothing happens.  I went to Edit>Preferences>Files>Folders for saved files and navigated to the new C and confirmed that is was set as the location for the stored files.  It seems that no matter what I do, PSE 6 wants to look for everything on the old C, now called J.
    Any thoughts on why this is happening and how I can fix it?
    Thanks for any and all help.

    John,
    At long last, here is the output.log that I typed in.  For some reason, the site will not let me paste anything in it.  And, as I indicated earlier, any emails that I've sent by hitting REPLY keep bouncing back.
    Again, thanks for any help.
    Larry
    START
    output.log
    psedbtool version 1.05
    Opening catalog C:\Documemnts and Settings|Larry|Application Data\Adobe\Photoshop Elements|Catalogs\LPY Photo Catalog-1\catalog.psedb
    Photoshop Elements version    :         6
    Total files                                :  22675
    Total files missing                    :     423
    Total files offline                       :        1
    *****Volumes with warnings : 2
    PSE Volume Table
    Path used by PSE          :  [E : ]
    Status                           :  offline
    Total files                       :  1
    Total files missing           :  0
    Description                     :  E:
    Serial                             :  2AF8-D2D9
    Drive_path_if_builtin         :
    Type                               : readonly_drive
    ID                                   :  125494
    Path used by PSE           : H :
    Status                             : online
    Total files                        :  0
    Total files missing            :  0
    Description                      : H:
    Serial                              :  CED7-425F
    Drive_path_if_builtin          :  H
    Type                               :  builtin_drive
    Id                                    : 70172
    ******WARNING*******      : wrong serial number in catalog
    Path used by PSE           : J
    Status                            :  online
    Total files                        :  22674
    Total files missing            : 423
    Description                      :  C:
    Serial                              ;  E4AD-EB12
    Drive_path_if_builtin          :  C :
    Type                               : builtin_drive
    Id                                    :  4119
    ******WARNING*****         : wrong drive letter in catalog
    Windows Drives
    Drive       Type                        Serial              Path
    A:          removable_drive         0000-0000                                
    C:          builtin_drive               70BC-7478                                              This is my new 500 GB HD that I want to be the primary HD.                  D           removable_drive         0000-0000                                                Zip drive
    E:          readonly_drive            0000-0000                                               DVD drive
    F:          readonly_drive            0000-0000                                               DVD/CD-RW drive
    G:          removable_drive         0000-0000                                               Compact flash card reader
    H:          removable_drive         3B69-1AFD                                             Flash drive
    I:           builtin_drive               B33C-2AA2                                              External hard drive
    J:           builtin_drive               E4AD-EB12                                            Original 120GB HD where RECONNECT searches get directed to.
    END OF OUTPUT LOG

  • My itunes seems to be looking for my library on my computer C drive,  rather than my external drive ( originally set up to as default ).  How do I re-set itunes to look for my library on the external drive ?

    Suddenly, after a year of good operation,  my itunes seems to be looking for my library on my computer C drive, rather than the external drive it had been set up to as default   How do I get it to search for the stored library on the external drive again ?

    Quit iTunes.
    On the external drive;
    1 - Create new folder called iTunes (or whatever you want).
    2 - Move your music folder into this.
    3 - Go to the the C: drive iTunes folder.
    4 - Copy the iTunes library.itl file into the iTunes folder on the external drive.
    5 - Start iTunes holding the Shift key.
    6 - Select Choose existing library and select the iTunes library.itl file you just copied to the external.

  • I am looking for a USB 2.0 Flash Drive with a fast read/write speed as possible

    Around a price of $100 or less.
    I am looking for either a 64 GB of 128 GBs Flash drive OR a very small portable USB 2.0 ( if available would prefer FW800 connection) hard drive that I can conveniently carry on my with complete system and data on it. I would like the portable hard drive to be less than $200, if possible.
    All ideas for this ard welcome.
    I am just looking for a solution that is fairly easy to carry in a pants pocket that I can use to boot up on Macs of my various friends.
    Thanks everybody.

    Around a price of $100 or less.
    I am looking for either a 64 GB of 128 GBs Flash drive OR a very small portable USB 2.0 ( if available would prefer FW800 connection) hard drive that I can conveniently carry on my with complete system and data on it. I would like the portable hard drive to be less than $200, if possible.
    All ideas for this ard welcome.
    I am just looking for a solution that is fairly easy to carry in a pants pocket that I can use to boot up on Macs of my various friends.
    Thanks everybody.

  • Looking for simple waveform filter

    I am using E series board using single ended input to collect 16 channels of constant value data, (ie 10volts). The data has a small amount of noise and outlying data points which I need to remove. I am attempting to implement a simple low pass filter. I attempted the Buterworth and FIR filters. The code I have attempted based upon the help examples unbundles the waveforms, filters the data, and rebundles the waveforms. This produces a discontinuous waveform when ploted. Addtionally the filtered data looks like a sine wave with an amplitude ranging between zero and the bias of the constant input data dependent upon the input parameters fo the filter. I'm looking for an example code that filters a constant signal with outlying da
    ta points and small amount of noise. I cannnot use a average because the outlers are all on one side of the average value and will bias my data.
    Thanks for the assistnance
    Brian Wells
    Space Research Institute
    Auburn University, AL

    Brian,
    Can you try a running average using shift registers? With this, if the latest point is over x% outside of the running average, then do not include it. Since your signal is "constant," then frequency filters will probably not help you. See the attached example in LabVIEW 6.0.2. The interesting part of this example is that you need to know what your expected value is. If this is unknown, then one must do a bit of statistics (probably through histogramming) to get an initial average value.
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://www.ni.com/ask
    Attachments:
    Remove_Outliers.vi ‏62 KB

Maybe you are looking for

  • External ThinkPad USB Keyboard with TrackPoint issues with scroll (55Y9003) and hotkeys on a x201

    Hello Once more there is a glitch with the drivers for this external keyboard 55Y9003. I have the drivers: 16.2.19.13 for the ultranav system of the x201 1.10 for the external keyboard My system is XP sp3. The keyboard of the x201is fine relative to

  • Frequency Modulation circuit simulation in Multisim Using 566.

    How can I get Frequency Modulation circuit simulation in Multisim Using 566? In Multisim I dont have IC 566.. And I have attached the image of the circuit i want... I dont want to use FM signal source directly. Attachments: FM CIRCUIT USING IC566.PNG

  • Graphics Repository/Browsing

    I was wondering if anybody out there has figured out a way to implement a "graphics repository" in portal? Is there a way to browse the graphics that are already in the Portal database? For example: I have been building pages and noticed in wwdoc_doc

  • Font display problem after updating to 10.5.5

    After updating to 10.5.5, I have an identical font problem on two different machines: an iMac and a Macbook. The problem concerns font display on the screen and only occurs when viewing PDF files using Leopard's built-in facilities. So the problem sh

  • Had to reset iPod.  Now it will not allow me to get my WIFI

    I had to restore my iPod and now it will not let allow my WIFI to update the iPod.  I do not know if it is because of other WIFI systems in my area. Someone uses NETGEAR, another uses ATT904.  When they are in use I cannot use my iPod.  I have called