Importing and displaying DXF files into Labview

Dear all,
Building an application for motion control, I want to import a DXF file into labview to be used as a template for the motion. For verification I would also need to display it. I cannot use ActiveX properly bcse I develop on Mac....
If you have any idea or experience on how I might do this, I will be glad to hear from you !
Thanks in advance !
Regards,

To display (not parse) DXF files and other CAD file formats (PRT, SLDASM, SLDDRW, SLDPRT) I've been using an ActiveX container with the EModelViewControl object from the free SolidWorks eDrawings. Use the OpenDoc method to display the file in the container (see attached snippet).
- Philip Courtois, Thinkbot Solutions
Attachments:
eDrawings snippet.png ‏21 KB

Similar Messages

  • Import and view CSV Files into OTM

    Hi All,
    Can you please help me in importing CSV files into Oracle Test Manager and to view the imported files in OTM.

    Hi,
    I have just googled and find the link :)
    http://oracleats.com/blog/?p=785

  • How to import and read .lmx files into 2710 Nav.?

    All,
    is there a way to import a route (lmx file) and use it with the 2710?
    I can't find the way to open such a file...
    Thanks a lot for any help, Benoit.

    There is a way (not very comfortable but working) how to import POIs in Nokia 2710.
    Create a set of LMX files, __each containing just one POI__.
    Store those files somewhere on the SD card.
    When you need to reach a POI, select the particular file (Menu / Gallery / All content / Memory card / (the particular directory) / (the particular file)) and select Open.
    The POI will open in the Ovi Maps. Now you can navigate to it (Options / Navigate to) or save it (by Options / Use location / Save location). When saving, you will need to insert the name (the name is NOT copied from the .LMX file).
    Make sure that you have a map covering the area of POIs (if you do NOT have it, upon opening the POI file, you will just get yellow background).
    Examples of LMX files are attached. Examples are located in the Czech republic so make sure that you have the map of the Czech republic.
    PS: Maybe someone would be interested to write a J2ME application which
    1) would parse .GPX file with a lot of POIs
    2) show the POIs to the user (including all the details of POI)
    3) when user selects a POI, generate an LMX file and invoke system to show it (using platformRequest J2ME API).
    4) alternatively, user could insert the GPS coordinates directly.
    Attachments:
    lm.zip ‏1 KB

  • Is it possible to import and display/plot (Google Earth) KML files as overlays in Mac OS 10.9 Maps application?

    Is it possible to import and display/plot (Google Earth) KVM files as overlays in Mac OS 10.9 Maps application?
    Here is the particular application: (note I haven't gotten the code to compile yet -- seems to be several differently named environment variables in Mac unix than in Linux that are making the compile blow up -- but that's another issue) there is a freeware application that can do radio path loss prediction and plot path loss contours on a map. It has an option to output the data as KML files which can be imported into Google Earth, in order to display the path loss contours on Google Earth maps. I guess you could liken it to displaying overlays of GIS-like data in Google Earth. I would like to know if there is a mechanism to facilitate importing KML data files to overlay (preferably in a translucent fasion so that you could see the underlying map) onto Mac OS 10.9 Maps?

    varjak paw wrote:
    They're also known to patent things they never release. So while it indicates that they're investigating such things, a patent application is no guarantee that anything will ever come of it, much less be immanent. And that application was filed in 2012 and is really for something rather different.
    Regards.
    As I stated, "possibly."
    While the commerce side of it has little to do with the KML files, per se, the API for the layer data should allow for any type of overlay.
    Also, the patent was filed Dec 19, 2013. There was a related patent filed in 2012. Not sure what it is about.

  • Treat JPEG files next to raw files as seperate files still imports and displays them as seperate images

    Hi, I am taking RAW + JPEG files on a Nikon D810. The RAW files are saving to a CF (primary slot) and JPEGs to an Eye-Fi card (secondry slot). When I am importing into Lightroom 5 directly from the camera, even though I have 'Treat JPEG files next to raw files as seperate files' UNchecked in preferences, it still imports and displays them as seperate images. I am trying to import the JPEG as a sidecar file only to the RAW file as I have read about but this is not happening, any ideas why? Thanks

    Well in Lightroom they are apart from each other before the actual import, all the JPGs list first then all the NEF files next. The same actual photo as the NEF or as the JPEG both have the same file name apart from the .JPG or .NEF so that is not the problem. The NEFs go to the CF card and the JPGs go to the EyeFi SD card, I think you are onto the issue but I'm not sure what I need to do to fix it. I guess I need to change a setting on the D810 itself. There really doesn't seem to be any other settings apart from the RAW + JPEG vs only one or the other and allocating which card is primary for the RAWs and which card is secondry for the JPEGs. I really need the JPEGs to go to the EyeFi SD (secondary) for live iPad image viewing and not to the same primary card (CF) as the NEFs (RAWs) go. This does seem to be a typical setup so I would think it has been encountered before.
    Thanks for your help any other advise is appreciated.

  • Set default import format when drag and drop sound file into multitrack view?

    I've looked around the preference panels but cannot find where to set the import settings for dragging and dropping sound files into multitrack view. Some of our computers have correct settings and others do not. Thanks for your help!
    G

    I should have been more specific, sorry... I mean bit depth and bit rate... On some machines this defaults correctly and on other machines it is wrong. Not sure how to set these to downconvert properly by default. Unless it automatically takes the format of the source file, in which case it's just been luck.
    Thanks,
    G

  • I am trying to import an mp3 audio file into garage band for editing.  drag and drop doesn't work. What now?

    I am trying to import an mp3 audio file into garage band for editing.  Drag and drop does not work. any ideas?

    Try reposting in the Garageband forums. You can find it at:
    https://discussions.apple.com/community/ilife/garageband

  • Generate and display excel file

    Hi guys,
    Is there a way to generate and display excel file in sapgui without the need of downloading the excel file to local directory first?
    I found the following 2 ways of doing it, but both require me to download the generated xls file to local directory:
    #1 way:
    1. Generate the xls file using GUI_DOWNLOAD with the filename = 'c:\test.xls'.
    2. Call fm SAP_STARTS_EXCEL and pass in the parameter i_filename = 'c:\test.xls'
    #2 way:
    1. Generate the xls file using GUI_DOWNLOAD with the filename = 'c:\test.xls'.
    2. Upload it back using the below so that i can get it in xstring format.
    CALL FUNCTION 'GUI_UPLOAD'
         exporting
           filetype =  'BIN'
           filename = 'C:\test.xls'
         tables
           data_tab = itab.
    3. Then pass it to the cl_gui_html_viewer to display it.
    call method html_control->load_data
        exporting
          url          = 'test.xls'
          type         = 'application'
          subtype      = 'vnd.ms-excel'
        importing
          assigned_url = l_url
        changing
          data_table   = l_pdf_data
        exceptions
          others = 1.
    I prefer the #2 way as my program will get wrapped thru ITS server, and it seems the #1 way will not work. So is there any way i can get the excel file to be generated in xstring format so that i can pass to cl_gui_html_viewer straight away to display without having to save to local directory first?
    Any other suggestion apart from the above 2 ways are welcome as well.
    Thanks guys.

    Use function module ALV_XXL_CALL. It will solve ur prob immediately.
    REPORT  ZSKC_ALV_XXL.
    TYPE-POOLS : KKBLO.
    DATA : ITAB LIKE T100 OCCURS 0,
           T_FCAT_LVC TYPE LVC_S_FCAT OCCURS 0 WITH HEADER LINE,
           T_FCAT_KKB TYPE KKBLO_T_FIELDCAT.
    START-OF-SELECTION.
    * Get data.
      SELECT * UP TO 20 ROWS
      FROM   T100
      INTO   TABLE ITAB
      WHERE  SPRSL = SY-LANGU.
      CHECK SY-SUBRC EQ 0.
    * Create the field catalog.
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
       EXPORTING
          I_STRUCTURE_NAME             = 'T100'
        CHANGING
          CT_FIELDCAT                  = T_FCAT_LVC[]
        EXCEPTIONS
          INCONSISTENT_INTERFACE       = 1
          PROGRAM_ERROR                = 2
          OTHERS                       = 3.
      CHECK SY-SUBRC EQ 0.
    * make sure you pass the correct internal table name in the field catalog.
      t_fcat_lvC-tabname = 'ITAB'.
      MODIFY T_FCAT_LVC TRANSPORTING TABNAME WHERE TABNAME NE SPACE.
    * Transfer to KKBLO format.
      CALL FUNCTION 'LVC_TRANSFER_TO_KKBLO'
        EXPORTING
          IT_FIELDCAT_LVC                 = T_FCAT_LVC[]
        IMPORTING
          ET_FIELDCAT_KKBLO               = T_FCAT_KKB
       EXCEPTIONS
         IT_DATA_MISSING                 = 1
         IT_FIELDCAT_LVC_MISSING         = 2
         OTHERS                          = 3.
      CHECK SY-SUBRC EQ 0.
    * Call XXL.
      CALL FUNCTION 'ALV_XXL_CALL'
        EXPORTING
          I_TABNAME                    = 'ITAB'
          IT_FIELDCAT                  = T_FCAT_KKB
        TABLES
          IT_OUTTAB                    = ITAB[]
        EXCEPTIONS
          FATAL_ERROR                  = 1
          NO_DISPLAY_POSSIBLE          = 2
          OTHERS                       = 3.
      IF SY-SUBRC <> 0.
      ENDIF.
    It will open the Excel in front of you and populate the cells from your internal table
    with color for Key columns.
    Cheers
    SKC.

  • I backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    i backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    Don't you just love changes in interfaces?
    I found the answer to my question.
    When you attach a device (iPhone, iPad) to your Mac, in iTunes 12 in appears as a tiny icon in the second "row" of the iTunes display. Click the icon and the familiar iTunes display for the device appears. From there, on the Summary screen, you can see the dates of the backups of the device (iCloud and backup to the computer). You can also use the button to backup to the computer.

  • I am trying to import BPM Project.zip file into Oracle enterpriserepository

    I am trying to import BPM Project.zip file into Oracle enterpriserepository from admin tab.
    I am getting the following exception. please help if any one know the solution.
    Performing import...
    Import Failed: Error [100]: An unknown server-side error occurred. Please record stack trace (if available) and contact technical support.
    com.flashline.exception.LoggableException: trouble parsing file in import bundle: SampleWScall/activityGuide.agdl
         at com.flashline.cmee.openapi.service.subsystem.impexp.XMLTranslator.decode(XMLTranslator.java:157)
         at com.flashline.cmee.openapi.service.subsystem.impexp.ImportJob.doJob(ImportJob.java:74)
         at com.flashline.cmee.openapi.service.subsystem.impexp.AbstractJob.perform(AbstractJob.java:75)
         at com.flashline.cmee.openapi.service.subsystem.impexp.JobThread.run(JobThread.java:41)
    Audit results stored in:
    C:\Users\AVINAS~1.YEL\AppData\Local\Temp\import-4705112223687937017.log
    Audit for [Import job.] created on [2012-09-24 11:53:59 IST].
    2012-09-24 11:53:59 IST - Adding Import job with ID=[50403] to job queue.
    Thanks in Advance.

    Hi
    Why are you trying to import BPM zip file are you trying to configure the out of the box workflows?
    They are something that need to be deployed from the process admin on BPM.
    There would be the .exp file you would need as its BPM 10g that you would need to use.

  • How do I import Map Info Tab files into Spatial for a map of europe?

    How do I import Map Info Tab files into Spatial for a map of europe via FME and have oracle spatial draw the map without problems?
    So far I've got to the stage where I can import the data, spatially index it (in oracle 9i) and get my SVG (scaleable vector graphics) application to view the map.
    The problem is that countries that have more than one polygon (more than one row in the database) do not draw properly.
    When I view the Map Info tab file in the FME viewer I can see that the data is fine, but I can also see that some of the polygons used to draw a country are donugts and some aren't.
    This seems to cause a problem when I import the data into oracle spatial as I don't know if a row in the table needs to be inserted as an independent SDO_GEOMETRY or if it should form part of a larger SDO_GEOMETRY (as in 2 or more rows make up the polygon shape for a country).
    I have a feeling that I'm not using FME correctly, because at the moment I have to import the tab file into Oracle then re-insert the data into a spatially formatted table (one with a spatial index) - I get the impression that FME should do that for me but as I'm new to this I don't really know.
    Any Help welcome :|
    Tim

    Tim,
    MapInfo has a free utility called EasyLoader that allows you to upload a table directly to Oracle. EasyLoader creates the geometries and spatial index. You can download it free from http://www.mapinfo.com/products/download.cfm?ProductID=1044
    Andy Greis
    CompuTech Inc.

  • Import a 10g DMP file into a 9.2.0.5 instance

    Is it possible to import a 10g DMP file into a 9.2.0.5 instance? Thanks
    in advance for your thoughts.

    No, do NOT run the catexp.sql from 9i in your 10g db! That was only a valid method with Oracle 6/7 and Oracle 7/8!
    Just use the Oracle 9.2 version of exp to create the dumpfile from the 10g database. You can use SQL*Net to connect to the 10g db from your 9.2 server connecting like system/manager@tnsname. Then use 9.2 imp to import the dumpfile into your 9.2 db.
    If you have access to Metalink please refer to the following note for full details on compatibility between Oracle releases for exp/imp: 132904.1

  • Importing and displaying captions from Aperture to iPhoto

    I'm using Aperture as my main photo library, then exporting select pictures with a copyright watermark on them. Then I'm importing those watermarked photos into iPhoto so that I can drag them into albums in iWeb (so the watermarks show).
    I'd like for the captions to show under the photos in iPhoto, but instead the keywords do. I can't find a place to require iPhoto to display the captions other than the little caption window in the lower left of the window.
    Problem is, I need the captions to chow up ultimately under the photos in the iWeb albums, but they don't. Instead, it's the keywords that show up, just like they do in iPhoto. My reasoning is that if I can get the captions to display under the photo in iPhoto, they will do the same in iWeb (I could be wrong on this).
    So the ultimate question is: how to get iPhoto to import and display Aperture-entered captions and then pass them on to iWeb.
    I've seen a few variants on this topic, but none that specifically address this issue.

    Randy
    There is no way to make iPhoto display the captions under the Photos in iPhoto. For specific help with iWeb, try posting on that forum.
    Regards
    TD

  • Need help importing corel draw 10 files into adobe indesign with editing ability.

    I would like to know if anyone knows of a way to import corel draw 10 files into adobe indesign

    Can't edit.
    Best bet..and still a longshot depending on the layout, is to open in
    Illustrator and do the editing there.
    Bob

  • How to Import AVCHD 1080/60p Files into Final Cut Pro 7?

    How do I import AVCHD 1080 / 60p Files into Final Cut Pro 7? And if there is no direct way [I certainly haven't found one, but I'm no expert], what additional software would be used? I want to import the files from a Panasonic HDC-HS700 onto an Intel Mac laptop [Mac OSX 10.5.8]? Obviously I don't want to compress & compromise my footage.
    I’m sure a simple, straightforward series of steps would help many people with this issue.
    Thanks!

    Thanks for the response!
    I'm guessing you've found ClipWrap2 to be better than competing products [such as AVCHD Converter for Mac, Toast Titanium, or Voltaic].
    On to the next steps. Using Clipwrap2, would I leave the checkbox "Convert Audio to LPCM" selected or deselected [and what the heck is LPCM?]. In the pulldown menu would I choose "Rewrap (Don't alter video samples)" or do I save a step by choosing "Apple ProRes 422"?
    And finally, am I gaining anything by shooting 1080/60p on this Panasonic HD Camera other than a headache? [Some have suggested this is not a True 60p.]

Maybe you are looking for

  • Validation Issue - urgent

    Hi experts, I am facing a peculiar issue with Validation Check, in Process Control. I have done the following: 1. set the Validation Top account, in my AppSettings 2. Enable SupportsProcessManagement - in appropriate scenario 3. Manage Submission Pha

  • Error in Sender File content Conversion - how to ignore keyfieldName

    Dear Frndz, I'm new to SAP PI. I want to post a flat file to ECC. The Souce Structure is:   Record(1-unbounded)     |_Header(1.1)           field1           field2           field3     |_Detail(1.unbounded0         field4         field5         field

  • How to stop document posting when filling setup tables for logistic app.

    Hello Boys I've read several threads and weblogs about data extraction from logistic applications i.e the ones which uses the infosources like 2lis_13_vditm, 2lis_02, 2lis_03, etc, etc,and now almost every thing is clear to me but one thing: how do i

  • [Solved] Screen resolution problem in a qemu guest

    Hi, I have a problem with my arch os on qemu : there is a black line (near 100 pixels high) on the bottom of the virtual screen, and when i put the cursor on the bottom the screen slide (I don't see the top part of the virtual screen). I use "-vga qx

  • Reg: Total sales of each month of customer

    Dear All, I have the below two tables Customers (customer_id, custer_name,customer_address) Sales (sales_id, sales_cust_id, sales_order_date, sales_amount) I need to write the SQL query to display the total sales made by each customer, each month wit