12 lines
390 B
VB.net
12 lines
390 B
VB.net
Imports XCCLibrary
|
|
|
|
Public Class GUI_Settings
|
|
Public Shared filesFolder As String = GUI.filepath ' Hämta från settings
|
|
Public Shared HLCtFolder As String = GUI.filepath & "\X2021" ' Hämta från settings
|
|
|
|
' --- Settings button clicked ---
|
|
Public Shared Sub ButtonClicked(sender As Object, e As EventArgs)
|
|
adminClass.updateDatabase()
|
|
End Sub
|
|
End Class
|