1. DXF_tester_A_MAIN with the main function MainDxfTester that gets the full path to one Dxf file and returns an error code with the processing results:
Code: Select all
'Response:
'-1 Error not processed at all
'0 Unexpected error
'1 Processed no errors
'2 Processed there are errors Response save
'3 Processed there are errors Response do not save
Since this was done for a specific production, the layers are set explicitly:
Code: Select all
"0" - cutting geometry
"UP" - bend lines up
"DOWN" - bend lines down
"BOX" - overall frames
"GRAV" - layer with engraving.
3. DXF_tester_C_Draw with the main function DrawDxf which draws geometry from DXF on the form, it should return True if everything is drawn well, but this is not done - there is no point. When searching for errors, the tolerance is used: Public Const Tolerance As Double = 0.005 in DXF file units (usually mm).
The main dictionary where all information is recorded is a dictionary with dictionaries, such a structure:
Dictionary("Layer Name")("Group Name")("Object Name")(array or collection with coordinates)
"Group Name" - "LINES", "ARCS", "CIRCLES", "POLYLINES", "SPLINES" (The macro works only with such geometric primitives)
"Object Name" - for example: "Spline2"
"LINES" - array Array(StartX, StartY, EndX, EndY)
"ARCS" - array Array(CenterX, CenterY, Radius, startAngle, endAngle)
"CIRCLES" - Array(CenterX, CenterY, Radius)
"POLYLINES", "SPLINES" - collection with arrays: Array(StartX, StartY)
For example:
DIC_ReadDxfFile.Item("0")("SPLINES")("Spline2")(1)(0)
1-first array in collection / 0-coordinate X
Form with output of graphic part: DXFtest_Form. Image from DXF is output within Label1 field. No scaling and manipulation with image. You can only look (for VBA and for this we should say thanks).
You can see total number of errors, number of each type of error, and also layer name with number of geometric objects on them and number of errors on each. Display of layers can be turned on and off. Display of errors can be turned on and off. Since the form is displayed in context of batch saving of DXF files, there is a timer for 10 seconds. User sees image with error and can make a decision: Save anyway (that is there is no forced error). Or can press Mark as Error which will happen automatically after 10 seconds.
The macro gave me the idea that I need to tie up with VBA and study VB.NET, and develop. VBA is reliable - but it is tied hand and foot and many ideas and their implementation simply have to be sacrificed. The macro is provided as is, because I have not found a single solution for processing the contents of DXV without connecting third-party libraries on the Internet.
Oh, yes. An important point to test all this, the launch model has been added: ListDxfTester in it Sub MainLisDXF - Excel is used here to select several DXF on the computer and conduct testing. (don't forget: Tools - Reverences - Excel (you can look here:
Red circle - intersection error
Yellow circle - free end error
Yellow circle with red dot - common end point for more than 2 geometric objects.
Blue line with dot in the middle - overlapping objects (common area shown)
**Below is a button to stop the timer "чекаю"