Elexol USB I/O 24 programming via DLL

Anybody out there have experience with programming the Elexol USB I/O 24 card using the FTDI DLL?  My company is using many of these boards and I would like to be able to control it via Labview using the DLL supplied by FTDI.  If someone can give me a head start on this it would be greatly appreciated.
Thanks,
Howard Spec
CMC Electronics
Canada

gab73
I'm not too familiar with DAQmx Base, so I'm afraid I won't be much help there.
I wanted to point out that there are a few C# to VB .NET translators available on-line. One that I use is at
http://authors.aspalliance.com/aldotnet/examples/translate.aspx
The translation it provides isn't perfect, but it does give a nice starting point.
Hope this helps,
-- Chris

Similar Messages

  • No DHL Here - Apple Ultracompact USB Power Adapter Exchange Program

    There is no DHL shipping center where I live but the message I got from the Apple Ultracompact USB Power Adapter Exchange Program is to ship via DHL; what should I do?

    Mine was delivered by Fedex, with instructions inside to call DHL to pick it up for the return. Well, I don't have DHL service in my area either. After calling Applecare 4 different times in one day and spending I don't know how much time on hold, I finally talked to a human, who's expert solution was for me to take it to the post office!!!!! I explained that it had a prepaid DHL sticker on it, he said he didn't know why the Post office wouldn't honor that, or maybe I should call Fedex to come pick it back up, they would probably honor the DHL sticker too? I suggested that I would be near an Apple Store the next weekend and could take it there myself, he put me on hold for another 25-30 mins to check with someone to see if this could work. When he finally came back, he was pretty sure it would, if not they could just have DHL pick it up from them, since they use them anyway. This should not be this hard. I was sold a defective product, give me my better improved product and a simple way to get rid of the one that is going to kill me and my family without me having to make 4 phone calls, be given no real solutions to my problem, and in the end I have to come up with the answer myself.....Wonderful customer service.....

  • SUBMIT program VIA JOB and SET/GET parameter

    Hi All
    I need to pass the content of a variable from the program 'A' to program 'B'.
    Program A uses JOB_OPEN , SUBMIT program VIA JOB jobname NUMBER jobnumber AND return, JOB_CLOSE.
    I tried to use import/export memory but it didn't work. Then I am trying to use set/get parameters but it also did not work.
    Program A is going to run in any server and program B will run in the central instance (it is determined in the FM JOB_CLOSE, parameter target_server).
    Program does not have selection-screen.
    Is it possible use set/get parameter with submit via job?
    Could you please advise?
    Thanks in advance.
    João Gaia

    Here a simple code
    *Submit report as job(i.e. in background)
    data: jobname like tbtcjob-jobname value
                                 'TRANSFER DATA'.
    data: jobcount like tbtcjob-jobcount,
          host like msxxlist-host.
    data: begin of starttime.
            include structure tbtcstrt.
    data: end of starttime.
    data: starttimeimmediate like btch0000-char1 value 'X'.
    * Job open
      call function 'JOB_OPEN'
           exporting
                delanfrep        = ' '
                jobgroup         = ' '
                jobname          = jobname
                sdlstrtdt        = sy-datum
                sdlstrttm        = sy-uzeit
           importing
                jobcount         = jobcount
           exceptions
                cant_create_job  = 01
                invalid_job_data = 02
                jobname_missing  = 03.
      if sy-subrc ne 0.
                                           "error processing
      endif.
    * Insert process into job
    SUBMIT zreport and return
                    with p_param1 = 'value'
                    with p_param2 = 'value'
                    user sy-uname
                    via job jobname
                    number jobcount.
      if sy-subrc > 0.
                                           "error processing
      endif.
    * Close job
      starttime-sdlstrtdt = sy-datum + 1.
      starttime-sdlstrttm = '220000'.
      call function 'JOB_CLOSE'
           exporting
    "            event_id             = starttime-eventid
    "            event_param          = starttime-eventparm
    "            event_periodic       = starttime-periodic
                jobcount             = jobcount
                jobname              = jobname
    "            laststrtdt           = starttime-laststrtdt
    "            laststrttm           = starttime-laststrttm
    "            prddays              = 1
    "            prdhours             = 0
    "            prdmins              = 0
    "            prdmonths            = 0
    "            prdweeks             = 0
    "            sdlstrtdt            = starttime-sdlstrtdt
    "            sdlstrttm            = starttime-sdlstrttm
                strtimmed            = starttimeimmediate
    "            targetsystem         = host
           exceptions
                cant_start_immediate = 01
                invalid_startdate    = 02
                jobname_missing      = 03
                job_close_failed     = 04
                job_nosteps          = 05
                job_notex            = 06
                lock_failed          = 07
                others               = 99.
      if sy-subrc eq 0.
                                           "error processing
      endif.
    Then... for import/export of a variable, you can use Import Memory and Export Memory function.
    Like this:
    REPORT A:
      IF NOT it_dlist_out IS INITIAL.
        EXPORT it_dlist_out TO MEMORY ID 'TEST1234'.
      ELSE.
    * Clearing memory
        FREE MEMORY ID 'TEST1234'.
      ENDIF.
    REPORT B:
    IMPORT it_dlist_out TO lt_dlist_out FROM MEMORY ID 'TEST1234'.
    Edited by: spantaleoni on Jan 11, 2011 3:21 PM
    Edited by: spantaleoni on Jan 11, 2011 3:23 PM

  • Problem in submiting standard program via job

    Hi Experts ,
       I have developed  programs for creating and posting return lots and payment lots for multiple incoming  files. For this i have submited standard  program of FPB3 and FPB5 transaction .  What happened is ,  if the child program fails due to some reason for one file , it is not coming back to the mother program and as a result other files remain unprocessed . So for this i tried with submiting the child program Via job so that if child program fails , only that job will fail and the mother program will not fail , so rest  files will be processed .
    But the problem is the child program (standard program of FPB3/FPB5 )  is not working by this i.e.  the lots are not getting created adn.
    Awaiting for any respone .

    Hi,
    If you are using Submit via Job, you need to use JOB_OPEN and JOB_CLOSE FM's.
    JOB_OPEN : Create a new job and return you the job number which you use in Submit
    JOB_CLOSE: Will set the release conditions of the job.
    Example:
    DATA: number TYPE tbtcjob-jobcount,
          name TYPE tbtcjob-jobname VALUE 'JOB_TEST',
          print_parameters TYPE pri_params.
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname          = name
      IMPORTING
        jobcount         = number
      EXCEPTIONS
        cant_create_job  = 1
        invalid_job_data = 2
        jobname_missing  = 3
        OTHERS           = 4.
    IF sy-subrc = 0.
      SUBMIT submitable TO SAP-SPOOL
                        SPOOL PARAMETERS print_parameters
                        WITHOUT SPOOL DYNPRO
                        VIA JOB name NUMBER number
                        AND RETURN.
      IF sy-subrc = 0.
        CALL FUNCTION 'JOB_CLOSE'
          EXPORTING
            jobcount             = number
            jobname              = name
            strtimmed            = 'X'
          EXCEPTIONS
            cant_start_immediate = 1
            invalid_startdate    = 2
            jobname_missing      = 3
            job_close_failed     = 4
            job_nosteps          = 5
            job_notex            = 6
            lock_failed          = 7
            OTHERS               = 8.
        IF sy-subrc <> 0.
        ENDIF.
      ENDIF.
    ENDIF.
    Regards,
    Jovito

  • Problem: Socket connection is not creating in machine, through utility program (MFC Dll), on ListDisplay service port - 3334 (on separate machine), while we are able to telnet on same ListDisplay service port - 3334 from same issue machine on same time

    Problem: Socket
    connection is not creating in machine, through utility program (MFC Dll), on ListDisplay service port - 3334 (on separate machine), while we are able to telnet on same ListDisplay service port - 3334 from same issue machine on same time
    Environment: -
    OS:
    Windows XP SP2/7
    Code:
    VC 6.0
    Dll: MFC
    Problem Description: -
    We have written a utility program which create socket (Using windows standard method [MFC]), and then make connection with another service (List Display) running
    on port 3334 in different machine and retrieve the required list data. This program was working fine in almost all the machines.
    But, we have received a severe intermittent issue on two machines. Client is facing issue in displaying the list data from port 3334.
    Attempt: -
    First we tried to debug code, and we come to know that socket is not creating in utility program. So we tried to telnet on ListDisplay service port 3334 and we were surprised that we were able to telnet, then we opened some more
    telnet window on same port 3334 around (6 to 8) window, and each cmd connected properly. But we were not able to create socket from utility program.
    Problem is severe because issue is intermittent.
    We have tried all the way, but we are not able to figure it out, that what can be the exact problem and what are the conditions, when utility program will not
    connect with ListDisplay service on port 3334.
    Kindly assist to resolve this issue. For any help, we would be really thankful.

    Hi,
    According to your description, it seems that you have created an utility program which is making connection with another service port 3334, however, two clients are facing issue in display the data list from port 3334.
    Port: 3334/TCP
    3334/TCP - Known port assignments (1 record found)
    Service
    Details
    Source
    directv-web
    Direct TV Webcasting
    IANA
    Since the port 3334 is used by directv-web service, I'd like to suggest check this service it is working well on the problematic clients.
    1. The client can be resolved in DNS well? Please run "nslookup" in the prompt command.
    2. Is there any 3rd party application interrupting? Do test in clean boot.
    2. Strongly suggest you run process monitor tool to analysis it.
    I am looking forward to your reply if you have any updated on your side.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • USB Power Adapter Takeback Program

    Did USB Power Adapter Takeback Program valid to brazilian users?

    Everything Apple has said about the program is here:
    http://www.apple.com/support/usbadapter-takeback/
    and they don't mention any limitations by country. Contact an authorized Apple service center in Brazil to see if Apple has rolled out the program in your country.
    Regards.

  • Out of the blue cannot launch iTunes.  Msg that program MSVCR80.dll is missing from my cptr.  Reinstall program to fix.  Am lost.

    Windows PC won't launch iTunes.  Msg that program MSVCR80.dll is missing.  Reinstall program to fix.  Have no idea what to do next.

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • Problem while trying to define a Program via OEM

    My situation involves two users: STRMADMIN and WORK.
    The Work schema holds a package called MY_PACK.
    When I try to create a new program via OEM (connected as STRMADMIN) it failes becauseI am unable to select the procedures in my package in MY_PACK when creating a program. The list of available procedures does not include my package.
    The strange thing is that creating the program manuallly via SQL-prompt seems to work fine. It does appear in the list of programs but when I view the details, I do not get to see the source code and the Status is set to "Invalid".

    Hi,
    Well they do have to follow database object privileges by doing selects as the connected user, but at least they should allow manual entering of the stored procedure.
    Just to make sure, have you done
    grant execute on STRMADMIN.MY_PACK to WORK ;
    If that doesn't work you may need to create a non-package procedure as a wrapper to your package procedure.
    -Ravi

  • HTTP Filter DLL E:\Program Files\SAP\ITS\6.20\programs\wgate.dll failed

    Hi All,
    I have installed fresh IIS 6.0 and 620 ITS on Windows Server 2003 (32-bit). While im trying to browse the link im getting service not available.
    On event viewer i found below errors.
    0000: c1 00 00 00 The HTTP Filter DLL E:\Program Files\SAP\ITS\6.20\programs\wgate.dll failed to load.  The data is the error.
    0000: c1 00 00 00 Could not load all ISAPI filters for site/service.  Therefore startup aborted.
    Could someone help us to resolve the problem
    Deepak

    Hi Vikas/Ashish,
    It seems its all related to your Windows OS...When you see the above situation when you are trying to install an ISAPI Filter, the best way to troubleshoot is to look in the Windows Event Log for error event entries from either W3SVC or W3SVC-WP regarding a failure to load the HTTP Filter DLL. The "data" of the error is the most important piece of information used to diagnose the failure to load/run an ISAPI Filter.
    You can get more information at
    http://blogs.msdn.com/david.wang/archive/2005/06/21/HOWTO_Diagnose_and_Fix_Common_ISAPI_Filter_Installation_Failures.aspx

  • ITunes has quit recognizing my iPhone as a device.  The computer still dings at me when I plug in the USB cable, but the program is failing to show my phone as a connected device.  How do I fix that??

    iTunes has quit recognizing my iPhone as a device.  The computer still dings at me when I plug in the USB cable, but the program is failing to show my phone as a connected device.  How do I fix that??

    I think this article will help you.

  • Eligible adapter for USB Power Adapter Takeback Program

    I found out about the USB Power Adapter Takeback Program, so I brought my third party USB Power adapter to an Apple Retailer. But they refused to take it. They said that the adapter have to look like an apple adapter to qualify. Is this true?

    Hi John,
    the store I found on the takeback site you listed (under Apple authorized Service providers) told me they will echange anything except look alike chargers. I gave in three chargers, look-alike and non-lookalike. They duly registered the serial numbers on the ipad and iphone and said they first have to "book it in" before they can do the exchange. They booked it in ON the October 18, 2013, so I get a call a few days later saying they looked at the chargers but "they are fine".
    The takeback site doesn't actually say the charger first has to be deemed eligible, in fact it clearly states: "We are offering this special takeback program for any USB power adapter". Further, "We will ensure that these adapters are disposed of in an environmentally friendly way" seems to be the only stated reason to book them in, not to evaluate eligibiity. The spirit of the takeback in fact is spelt out on the said page when it mentions: "Apple Retail and Apple Authorized Service Providers cannot advise you on the authenticity or safety of your adapter", meaning there is no evaluation just a takeback.
    A takeback which didn't happen, which hasn't made me safer, and only creates mistrust and an air of deception.
    Please advise, what is the service provider meant to do in my case?

  • Does anyone know yet if the new iPad will support a USB microphone plugged into Garageband via iPad's USB Camera Adapter?

    Hi,
    I've ordered a new iPad 64Gb which will arrive early April. My hobby is making music, so does anyone know yet if the new iPad (3rd generation) will support a USB microphone plugged into Garageband via iPad's USB Camera Adapter? I am hoping to use such a portable setup to record live performances of voice & acoustic instrument.
    Thank you,
    John.

    When in doubt, try it out. I bought the Apple camera connection kit & used it to connect my Blue Snowball usb mic to my new iPad 3rd generation. It works just fine. I made some test recordings in GarageBand on my iPad 3 using my Snowball mic. They sound great.

  • Streaming from WiFi connected USB HD to Apple TV via iPad

    Hi
    I´ve searched alot of forums but could not find a really good solution to what I want (perhaps there isn´t one, or I´m too stupid to find it..). But I find it hard to believe that I´m the only one with this need..
    Here´s the facts: I have a USB drive plugged into my router and I am using an iPad 2 along with Apple TV (3rd gen).
    I use the usb drive as main storage for all my media (photos, videos etc..) and would like to somehow display its content on my TV via the iPad without having to use a computer or iTunes or any other device.
    So I guess I´m basically looking for two things..  one app that connects to my usb drive and possibly another app which streams it to the Apple TV.
    And to make things abit more difficult, most of the videos I want to stream are not in Apple TV friendly format (like mov, mp4 etc).
    Any chance there is a solution to all this?
    The hardware setup is as follows
    Apple TV (3rd gen)
    iPad 2
    Belkin N+ router
    Western Digital My Passport Essential
    Thanks in advance
    /Lars

    Larsa_n-
    As you probably know, those other video formats are not iPad friendly either.  Some can be converted on your computer in iTunes.  Select the video in the iTunes Movies window, and go to the Advanced menu.  Choose "Create iPad or AppleTV Version".
    If iTunes can not handle a particular format, try the free HandBrake program.  <Download HandBrake>
    Fred

  • USB printer on Airport Express via Bonjour: print queue no longer works

    This is a variation of similar postings on this forum, but hopefully provides more information to allow others to pinpoint the problem.
    Have been using Intel iMac 10.4.8 now upgraded to 10.4.10. Two printers attached: 1 via USB and a 2nd via USB/Bonjour on Airport Express. Both working flawlessly. 2 days ago, an ADSL Internet outage occurred. When this was reestablished an hour or so later, everything was back to normal, EXCEPT that the USB/Bonjour/Airport printer no longer works. When jobs are sent to it, the printer queue stops and a red "!" appears in the dock on the queue. Restarting the queue just brings back the red "!" again.
    Have done all the usual things:
    1. Checked cables, restarted iMac, restarted printer, reset Airport.
    2. Have confirmed the printer works find if moved to a direct USB port. So the problem is not the printer.
    3. Have upgraded the Airport firmware to 6.3. Works just fine as a network access point. So the problem is not the Airport itself.
    4. Have deleted, added the printer, renamed the printer - none of these things helped (this was suggested by some postings on the forum)
    5. Have tried every combination of which item is powered up first (this was suggested by some postings on this forum)
    Have confirmed (by checking CUPS Error Log, as well as by Internet Connection Diagnostics) that the problem is that the iMac can no longer connect to the printer when printing on the local host if it is connected via USB/Bonjour/Airport. However, it can find the printer for adding a printer during setup. So Bonjour is working, but the printing is not.
    There are lots of similar postings of people having problems with printers previously working, but then stopping working on an Airport Expresss/Extreme. I hope the above scenario, which is a very simple network topology, and the fact that the iMac and printer and Airport all work correctly on their own, is of help. It does look as if the problem is in the Airport Extreme, and was triggered by the WAN outage, and not fixed by printer reinstallation or firmware upgrade.
    Looking forward to someone with a clever suggestion...
    LeslieB

    What did you use to discover the printers on both Mac and PC. Did you use Bonjour for both?

  • Why can't my g3 work with my car stereo while connected with the usb cable? It works via the bluetooth, but I get no song info on the radio.

    Any ideas?

        Thank you for reaching out to us, jmush. There are so many options to listen to music from cars nowadays. It's awesome and really convenient. Unfortunately, some features may not work correctly due to software both from devices and headunits. While, bluetooth can display your phone name and contacts, it may not display song ID3 tags, etc.
    With regards to plugging it in via the USB cable, you can try setting your phone to storage mode, and the headunit may be able to read stored music found in your phone, but it may not be compatible. http://www.verizonwireless.com/support/knowledge-base-113331/
    Keep us posted!
    NicandroN_VZW
    Follow us on twitter @VZWSupport

Maybe you are looking for