Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

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

Search results for query: *

  1. Praxden

    Draw line from quadrant of circle in Code

    Does anyone know how I would draw a line from a quadrant of a circle in code? Say circle is last object drawn and I want to automatically draw a line from the right quadrant out 2' Any help would be appreciated Praxden
  2. Praxden

    Compare Numbers

    Zathra, Michaels code works correctly, I apologize for not properly expressing my need Thanks Praxden
  3. Praxden

    Compare Numbers

    Zathras, Give me a day to look over my data and make sure I am presenting it properly. Since this is research on my part, I might not be thinking about it correctly. I do appreciate your help. Praxden,
  4. Praxden

    Compare Numbers

    Zathras, Thanks for your interest. The specs and the code are in line with each other. What I am trying to do is track the croosing of planetary aspects with other planitary aspects based on the angle form the sun. If you would like I could sned you some data and a grapgh I created which might...
  5. Praxden

    Compare Numbers

    Michael/Zathras, Thanks for responding. Although 21 is not close to 27. I was thinking it would loop thru the circuit adding one for each therefore something like this: a, b, c, d ,e,f b, c, d ,e,f c, d ,e,f d ,e,f so in the loop it would compare abs(21- 23)<5 inttot =...
  6. Praxden

    Compare Numbers

    What i want to do is compare each number in the list to each other and count the numbers that are within say 5 of each other. The numbers are listed in different columns (35 total). Heres a better example. 232 I 230 I 120 I 12 I 23 I 27 I 21 ----- Result would be 4 because 23 27 and 21 are...
  7. Praxden

    CountIf Advanced

    Thanks Praxden
  8. Praxden

    CountIf Advanced

    ETID, Thanks for responding. That doesn't seem to work the way I need. What i want to do is compare each number in the list to each other and count the numbers that are within say 5 of each other. The numbers are listed in different columns (35 total). Heres a better example. 230 I 120 I 12...
  9. Praxden

    CountIf Advanced

    I would like to compare a column of numbers and count the onces that are within X number of numbers from each other example 12 3 26 11 76 42 If X = 1 then the list above would return the value 1. Since only 11 and 12 are within one number of each other. Thanks Praxden
  10. Praxden

    extract autocad attributes to access

    Kelly, Here is a sample of what I use to import all text from autocad to access directly. You can change the paameters to look for attribute block with specific titles. I call this function thru a loop to import over 1000 drawings. Function Transfer_ACText_To_Access(sDwg As String, sLoc As...
  11. Praxden

    Converting a PDF file to a drawing file in 2002

    First zoom in on the PDF image to see if it is a vector or raster image. Raster images will have a bunch of dots making up a line. A vector image will be really clean. If it is a vector image open the PDF in Adobe Illustrator and save as a Autocad DWG drawing. Praxden
  12. Praxden

    External table not in expected format???????

    Ben, Don't be sorry you helped me. I am importing 400 excel file and it always misses something.I will try your function today. Thanks Praxden
  13. Praxden

    Filter to Crosstab query

    I'm having the same problem. It only seems to effect crosstab queries. Here's my code TRANSFORM First(tblData.Data) AS FirstOfData SELECT tblData.YmodData FROM tblData WHERE (((tblData.Diagram)=&quot;243132-01.dwg&quot;)) GROUP BY tblData.YmodData ORDER BY tblData.YmodData DESC ...
  14. Praxden

    All Drawings Open in new instance.

    Thanks I'll try that Praxden
  15. Praxden

    All Drawings Open in new instance.

    When I double click a drawing to open, it starts a new instance of autocad for that drawing, rather than a new window within the running instance. Does anyone know the parameter to change this setting. Couldn't find it in help file. Sincerely, Praxden
  16. Praxden

    Open AutoCad

    sButler, Most of this info is from this site Here the code to open cad Function CadOpen() Dim CadApp As AcadApplication Dim CadDwg As AcadDocument Dim sDwg As String '<><><><><><><><><><><><><><><><><><><><><> ' Connect to AutoCAD...
  17. Praxden

    Retrieving a Folder`s Path

    Try this http://www.vbdesign.net/activecad/source.html Praxden
  18. Praxden

    AutoCAD &amp; Database Connectivity

    DougP, Can you access Autocad's find and replace function thru code? Praxden
  19. Praxden

    script for acad text to microsoft word?

    I answered my own question. Praxden
  20. Praxden

    Replace XXX in Autocad drawings

    Carl, I played around with it today. I think I'm going to search for another way. The program limit's you to 5 drawings on the demo. Also I noticed that it doesn't supply the close statement. I figured out how to open and close drawing thru Access using VBA. If I could access autocad find...

Part and Inventory Search

Back
Top