Skip to content

Commit

Permalink
changed if block as requested
Browse files Browse the repository at this point in the history
  • Loading branch information
conlooptechnologies committed Nov 13, 2024
1 parent 1097c5f commit f5d8872
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions instat/dlgUseTable.vb
Original file line number Diff line number Diff line change
Expand Up @@ -134,20 +134,17 @@ Public Class dlgUseTable
End Sub

Private Sub ucrChkExport_ControlContentsChanged(ucrChangedControl As ucrCore) Handles ucrChkExport.ControlContentsChanged
lblFileType.Visible = False
cboFileType.Visible = False
ucrFilePath.Visible = False

ucrBase.clsRsyntax.GetAfterCodes().Clear()

If ucrChkExport.Checked Then
lblFileType.Visible = True
cboFileType.Visible = True
ucrFilePath.Visible = True

ucrBase.clsRsyntax.AddToAfterCodes(clsSaveGtRFunction)
Else
lblFileType.Visible = False
cboFileType.Visible = False
ucrFilePath.Visible = False
ucrBase.clsRsyntax.GetAfterCodes().Clear()
End If

TestOKEnabled()
End Sub

Expand Down

0 comments on commit f5d8872

Please sign in to comment.