check the following, I had to patch mine, now it works:
this message was from Colby some time ago
Dennis Saputelli

you can fix it manually by altering the HoleSize.BAS in the **99
SE\System\templates.DDB manually... I just did it to verify.
 
In the .BAS file in SP4 the faulty section looks like this

Sub RunSelectionWizardWithParameters
   Dim QueryLines As Integer
   Dim OperatorStr As String
  
   QueryLines = IncludeVias + IncludePads
 
   Select Case Operator
          Case 0  OperatorStr = "="
          Case 1  OperatorStr = "<>"
          Case 2  OperatorStr = ">"
          Case 3  OperatorStr = "<"
          Case 4  OperatorStr = "=>"
          Case 5  OperatorStr = "<="
   End Select

In the .BAS file for SP5 all of the ='s become -'s and this is what
causes it to work.
 
So... you can edit this section and change the = to dashes and it will
work for you.
 
So it will look like this instead.

 
Sub RunSelectionWizardWithParameters
   Dim QueryLines As Integer
   Dim OperatorStr As String
  
   QueryLines = IncludeVias + IncludePads
 
   Select Case Operator
          Case 0  OperatorStr = "-"
          Case 1  OperatorStr = "<>"
          Case 2  OperatorStr = ">"
          Case 3  OperatorStr = "<"
          Case 4  OperatorStr = "->"
          Case 5  OperatorStr = "<-"
   End Select

 
-- 
___________________________________________________________________________
www.integratedcontrolsinc.com            Integrated Controls, Inc.    
   tel: 415-647-0480                        2851 21st Street          
      fax: 415-647-3003                        San Francisco, CA 94110

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* To post a message: mailto:[EMAIL PROTECTED]
*
* To leave this list visit:
* http://www.techservinc.com/protelusers/subscrib.html
*                      - or email -
* mailto:[EMAIL PROTECTED]?body=leave%20proteledaforum
*
* Contact the list manager:
* mailto:[EMAIL PROTECTED]
*
* Browse or Search previous postings:
* http://www.mail-archive.com/[email protected]
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

Reply via email to