Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jh0401

    VB 2005 & DWGeditor

    Hello, Does anyone have any good examples of editing TEXT within a DWG file using VB 2005 & DWGeditor API? It's easy to control layers and others but we cannot find a way to update TEXT. EX: change string from from "Hi" to "Hello" where text handle = "2ABF" Any help would be greatly...
  2. jh0401

    DWG Files & VB 2005

    Hello, We are looking for a package that will allow us to edit DWG files within our VB 2005 projects and distribute to our reps WITHOUT having AutoCad or any other drawing software installed on the client machine. Specifically, we need to: 1) Turn Layers On/Off 2) Save DWG files AS NEW 3)...
  3. jh0401

    AutoCad & VB.NET

    Thanks borgunit... Any idea what the $ is to become a development partner?
  4. jh0401

    AutoCad & VB.NET

    Hi, First off thank you for looking @ the post and any feedback you have to offer. I am getting ready to compile a selection program for our reps and would like to add the ability to EDIT .DWG files based on various selections within the program. NONE of our reps have ACAD loaded on their...
  5. jh0401

    Solidworks,VB & Erratic Equations... DSI Where are you?

    Hello, I am currently working on a VB project to automate the design of a few parts. Everything was working great until I decided to start using equations in Solidworks to help speed up the process... The first two automated parts in this project there were only a couple of integrated...
  6. jh0401

    VB & Solidworks -- Changing K-FACTOR on SM Part

    Hi, We have standard sheet metal templates set up for 10ga, 12ga, etc in solidworks for our new parts. I've automated the design process & part creation through solidworks on several of our company parts/assemblies. I've come to some parts that need to be available in multiple gauges of...
  7. jh0401

    Using MAPISESSION controls

    'Add attachment(s) - ALL .PDF files within app.path directory - destroy file after adding as attachment and copying to fileserver Dim g_AttPass% '// Attacment Index Dim New_File3$ '// File string g_AttPass = -1 Do while dir(app.path & "\*.PDF") > "" New_File3 = Dir(App.Path & "\*.PDF")...
  8. jh0401

    Move the mouse from VB

    SORRY - POSTED IN WRONG THREAD!
  9. jh0401

    Move the mouse from VB

    'Add attachment(s) - ALL .PDF files within app.path directory - destroy file after adding as attachment and copying to fileserver Dim g_AttPass% '// Attacment Index Dim New_File3$ '// File string g_AttPass = -1 Do while dir(app.path & "\*.PDF") > "" New_File3 = Dir(App.Path & "\*.PDF")...
  10. jh0401

    Using MAPISESSION controls

    CajunCenturion already answered your question as I was responding!
  11. jh0401

    Using MAPISESSION controls

    I think the reason your code errors in the module is because the mapi control instance is specific to the form on which it is placed. If you referenced the form then the code would work in a module. ex: '**** MODULE CODE **** Public Sub Send_Email(ByVal ReferenceForm as Form) 'Sign On If...
  12. jh0401

    ??? Solidworks Animator - Can you set FPS ????

    I realized yesterday that you can set the frames per second when you record the animation. It was right in front of me the entire time. Josh
  13. jh0401

    ??? Solidworks Animator - Can you set FPS ????

    Can you set the frames per second in SolidWorks Animator? Any help appreciated. Thanks, Josh
  14. jh0401

    Using MAPISESSION controls

    >> The only way I've found to avoid getting the pop up >> question is to already have Outlook running at the >> time you send an email. You can always check to see >> if Outlook is running and shell it if it is not, but >> we just have our users keep Outlook running while they >> work...
  15. jh0401

    Using MAPISESSION controls

    FaxFolder I had the 'question' problem as well. The only way I've found to avoid getting the pop up question is to already have Outlook running at the time you send an email. You can always check to see if Outlook is running and shell it if it is not, but we just have our users keep Outlook...
  16. jh0401

    Using VB to print a PDF file

    Here's the code to get SolidWorks to make a PDF file in the same location as SolidWorks drawing if anyone is interested. Put this in a module and call from VB app: GENERAL DECLARATIONS Option Explicit Const vbPRORPortrait As Long = 1 Const vbPRORLandscape...
  17. jh0401

    Using MAPISESSION controls

    msmith, Thanks for the tip. You were right about the indexing, but this was not my only problem. I also needed to set the attachment position to an incremented variable because each pass the .AttachmentPosition defaults to zero. I used your tip on setting the .AttachmentIndex =...
  18. jh0401

    VB/SolidWorks printing to distiller

    I forgot to mention that you have to have Adobe Acrobat 5.0 and not just Adobe Reader to print to either the Adobe Distiller(for more detail) or Adobe PDFWriter(for mainly text documents). Thanks, Josh
  19. jh0401

    VB/SolidWorks printing to distiller

    Here's the code to get SolidWorks to make a PDF file in the same location as SolidWorks drawing if anyone is interested. Put this in a module and call from VB app: GENERAL DECLARATIONS Option Explicit Const vbPRORPortrait As Long = 1 Const vbPRORLandscape...

Part and Inventory Search

Back
Top