Jump to content

Cool-LV

Members
  • Posts

    117
  • Joined

  • Last visited

    Never

Posts posted by Cool-LV

  1. QUOTE(nipon @ May 3 2007, 05:48 AM)

    Hello everyone, attached is a MP3player_Sample that plays format MP3 and WMA files. Just for your fun. :laugh: :laugh: :laugh:

    Hi,

    Nice interface, but I can't open MP3player_Sample.vi ,even I re-download the Zip enclosed file twice, My LabVIEW is 8.2.1, and the other Subvi works fine, what happenned ? anybody met this condition ?

  2. The wallpaper (eventually) has to be a BMP. When you are manually setting a JPEG, for example, as your wallpaper, Windows actually makes a copy of this to a BMP format and uses that for the wallpaper. Check out the 'Wallpaper' and 'ConvertedWallpaper' regisrty entries under HKEY_CURRENT_USER\Control Panel\Desktop.

    Regards,

    -Khalid

    Oh, thanks, to be this ! I know now.

  3. There are properties on the Pane class in VI Server that you can use to get/set the wallpaper. They are Background Image, and Background Mode.

    E.g.

    -Akash

    Hi Akash,

    Thanks for your answers, Maybe I havn't given the details, my wallpaper isn't LV front panel background image, but it is computer's destop wallpaper.

    and your thread is supported at LV8.2, mine is LV7.1 (I can't find your thread at LV7.1 and LV8.0) .

  4. I want to add some items into Internet Explorer's Popup Menu, Such as "do my program", after click that item, my application Program should start running and response that click.

    I know I can Edit the Registry to add items to Internet Explorer's popup Munu, But how to bind this item with my Application Program based on Labview??any idear?? thanks...

    Hi,

    I think this is not LabVIEW query issue, en, you must write a htm script (engine) to direct your application (*.exe), the handle that you can see some examples, e.g. "Flashget" .......

  5. hi all,

    using "Port out.vi" is successful to control digital signal out corresponding, but I am fail to use "Port in.vi" to read digital signal back. read from "FAQ Moderator's tells" that the read pins is Pin15, 14, 13, 11 and 10, but I connect 5V signal to them between ground (short pin 18 to 25 as ground), there are no response at labVIEW, anything that I am wrong or any focus that I should pay attention to ? thanks @!

  6. You can use your parallel port as a free little DIO card! You get eight bits of output and five bits of input.

    If you can determine which address your port is using, it is a simple matter to use the "In Port.vi" and "Out Port.vi" (except on WinNT) to read from and write to your parallel port. WARNING!!! Be careful not to short anything out, as this port is built in to your computer, and inadvertently touching the wrong pins together for just a millisecond can destroy your port! These pins, as output, can only drive a tiny amount of current, so you would need additional circuitry to drive relays. I recommend buying a parallel port card, which are only about $20, just to be safe.

    First, you need to determine the port's I/O address. In Win95, right-click on "My Computer", select Properties, then select the "Device Manager" tab. Click on the + sign next to Ports, the double-click on any "Printer Ports" you see. Clicking in the Resources tab of the window which comes up tells you the I/O range, in hexadecimal. For the more primitive Windows, try these addresses (all hexadecimal): 0x378, 0x278, then 0x3bc.

    Once you know the port's I/O address, "In Port.vi" reads eight bits, and "Out Port.vi" writes eight bits. Take advantage of LabVIEW's ability to display any numeric in hexadecimal format (under the "Format & Precision" menu) and show the radix on your numbers lest you forget. Show the address as hexadecimal, and the data as hex, octal, or binary, for easier interpretation.

    Here is the relationship of pins to bits on the 25-pin connector: Pins 2 through 9 correspond to output bits 0 (LSB) through 7 (MSB). Pins 15, 13, 12, 10, and 11 correspond to input bits 0 (LSB) through 4 (MSB). Pin 11 in inverted. Most connectors manufactured today have tiny pin numbers embedded in the plastic next to the pins.

    If you want to know more, there are plenty of parallel port FAQ's on the internet.

    During the power on self test (POST) some BIOSs scan ports to check to see if they're installed. On one machine I had the situation where the external hardware was setting the IO lines such that the BIOS was not seeing the port (hence LPT 1 was not installed and no printing was possible). If this happens, make sure that your external hardware is disconnected when you reboot the machine.

    Credit: Bruce Mihura, Nick Moulton

    Hi FAQ Moderator,

    And I can control the parallel port data out, can control my relay open and close normally, but it can't read digital signal, for example +5v signal,and I use "in port.vi" to read the signal status, connect the signal to the pin10 or between the other 10 to 15 (except pin12) pins, and ground, but hasn't any result feedback, any wrong or focus that I should pay attention to ?

  7. You can use an array of Cluster that include diffient controls(any type control you wanted!), and then customize the cluster and the array, make them frameless and transparant background and foreground. then you can use the property of the array --NumRows to control how many lines to be shown, IndexVals to control the beganing displaying line.

    forgive my english.

    the attached vi is an example that contain an boolean, a string, an numeric. it's an array of cluster, but if you don't know the diagram of it, you may be not know it's an array of cluster, :laugh:

    Thanks keiran, your thread is good. but as the items I need much, I don't wanna display whole of them, if that array can added a scroll bar that would be perfect.

    maybe sub panel can do this, but I think this is not convenience, and good looking, any good idea ?

  8. I can see the video correctly with the windows media player.

    Sorry I don't know what hapens but I can't attach the video. So you should help me without my video!!!

    Hi,

    Have you tried the other AVI video file ? Do they open failed ? and I found your sample there are logical problem, why you put the stop button outside the while loop ??? and AVI reference not been closed etc.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.