ListProducts.vb
- Public Class ListProducts
- Dim ProgramName As String = My.Application.Info.AssemblyName
- Dim DataPath As String = System.Environment.CurrentDirectory & "\UAM"
- Dim ProductPath As String = DataPath & "\Products" '
- Dim ServicesPath As String = DataPath & "\Services"
- Dim CatPath As String = DataPath & "\Categories"
- Dim StoresPath As String = DataPath & "\Stores"
- Dim RequestsPath As String = DataPath & "\Requests"
- Private Shared ListProductsInstance As ListProducts
- Public Shared Function GetInstance() As ListProducts
- If (ListProductsInstance Is Nothing) Then
- ListProductsInstance = New ListProducts
- End If
- Return ListProductsInstance
- End Function
- Private Sub ListProducts_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load