.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Dialog Launches Regardless of "If, The"

2 REPLIES 2
SOLVED
Reply
Message 1 of 3
mgorecki
285 Views, 2 Replies

Dialog Launches Regardless of "If, The"

I want the code to determine if there is more than one layout in the drawing (not including "Model").  After it determines if there is only one, or if there is more than one page, then do actions based on the boolean variable.

If there is only one page, then do some actions.  If there is more than one page, launch the dialog and do some actions.

Regardless of the number of pages, it always launches the dialog box.  I even put a breakpoint at the beginning of the code and it still launches the dialog.

Is there a way to force it so the dialog only gets launched if the "If, Then" criteria is met?

Here is partial code:

    Public Sub ADP()
        Dim diaAddDelete As New dialogAddDelete
        Dim pageOption As String = String.Empty
        Dim pageNumber As String = String.Empty
        Dim pageToCopy As String = String.Empty
        Dim sourceLayerExists As Boolean
        Dim selectedLayerIDs As ObjectIdCollection

        ' Check to see if the license file exists
        'Currently this is not working, so the license check is removed
        ' Dim strAmkorLicense As String = "\\\\chaznas03\\lib\\AutoCAD\\VB_Net\\AMKR_LicenseCheck.txt"
        'If (System.IO.File.Exists(strAmkorLicense)) Then
        ' If only one page exists in the drawing, create a new layout by using a the layout "EMPTY" from the "Standard Template.dwt" drawing
        Dim isOnlyOnePage As Boolean = True

        ' Check to see if the drawing has more than one page
        isOnlyOnePage = checkNumberOfLayouts()

        If isOnlyOnePage = True Then
            '    Dim templateFileName As String, templateLayoutName As String
            '    templateFileName = "\\chaznas03\support\DsnTools\DocPro\Format\Standard Template.dwt"
            '    templateLayoutName = "EMPTY"
            '    importLayout(templateFileName, templateLayoutName)

        End If

        If isOnlyOnePage = False Then
            ' If more than one page exists, use the dialog box to Add or Delete a page
            If diaAddDelete.ShowDialog = System.Windows.Forms.DialogResult.OK Then
                pageOption = diaAddDelete.newPageOption

 I even set the boolean to "True" and it still launched the dialog.

 

Thanks for any help on this,

Mark

2 REPLIES 2
Message 2 of 3
DesignProQuig
in reply to: mgorecki

Check the return vale of function checkNumberOfLayouts() with a message box to see what it's returning.

 

Also this line of code shows how you can condition if your dialog opens or not:

      ' Diaglog only loads if this value is true.
        Dim TestBool As Boolean = False
        Dim myForm As New dialogAddDelete
        If TestBool = True Then
            Application.ShowModalDialog(dialogAddDelete)
        End If

 

Cheers,

 

Maritn.

http://www.designprosoftware.co.uk/
Message 3 of 3
mgorecki
in reply to: DesignProQuig

Hi Martin,

Thank you for the suggestion.  I used the msgbox and found where my issue was.  It's all cleared up now.

 

Best regards,

Mark

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost