Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Forked from VECTO / VECTO Sim
7377 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
FileBrowserModule.vb 1.98 KiB
' Copyright 2017 European Union.
' Licensed under the EUPL (the 'Licence');
'
' * You may not use this work except in compliance with the Licence.
' * You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl
' * Unless required by applicable law or agreed to in writing,
'   software distributed under the Licence is distributed on an "AS IS" basis,
'   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
'
' See the LICENSE.txt for the specific language governing permissions and limitations.

''' <summary>
''' Global File Brower properties and cFilebrowser instances.
''' </summary>
''' <remarks></remarks>
Public Module FileBrowserModule
	Public ReadOnly FileBrowserFolderHistory(19) As String
	Public Drives() As String
	Public FileBrowserFolderHistoryIninialized As Boolean
	Public FileHistoryPath As String
	'-----------------------------
	Public FolderFileBrowser As FileBrowser
	Public JobfileFileBrowser As FileBrowser
	Public TextFileBrowser As FileBrowser
	Public VehicleFileBrowser As FileBrowser
	Public DrivingCycleFileBrowser As FileBrowser
	Public PTODrivingCycleFileBrowser As FileBrowser
	Public FuelConsumptionMapFileBrowser As FileBrowser
	Public FullLoadCurveFileBrowser As FileBrowser

	Public EngineFileBrowser As FileBrowser
	Public GearboxFileBrowser As FileBrowser
	Public DriverAccelerationFileBrowser As FileBrowser
	Public DriverDecisionFactorTargetSpeedFileBrowser As FileBrowser
	Public DriverDecisionFactorVelocityDropFileBrowser As FileBrowser
	Public AuxFileBrowser As FileBrowser

	Public GearboxShiftPolygonFileBrowser As FileBrowser
	Public TransmissionLossMapFileBrowser As FileBrowser
	Public PtoLossMapFileBrowser As FileBrowser
	Public RetarderLossMapFileBrowser As FileBrowser
	Public TorqueConverterFileBrowser As FileBrowser
	Public TorqueConverterShiftPolygonFileBrowser As FileBrowser
	Public CrossWindCorrectionFileBrowser As FileBrowser

	Public ModalResultsFileBrowser As FileBrowser
End Module