StoreCat.vb
- Public Class StoreCat
- 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 CustomersPath As String = DataPath & "\Customers"
- Dim CompanyPath As String = DataPath & "\Company"
- Dim MovmentPath As String = DataPath & "\Movment"
- Dim RequestsPath As String = DataPath & "\Requests"
- Dim VendorsPath As String = DataPath & "\Vendors"
- Private Shared StoreCatInstance As StoreCat
- Public Shared Function GetInstance() As StoreCat
- If (StoreCatInstance Is Nothing) Then
- StoreCatInstance = New StoreCat
- End If
- Return StoreCatInstance
- End Function
- Private Sub StoreCat_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
- LV.Columns.Add("إسم السلعة \ المنتج")
- LV.Columns.Add("الكمية")
- LV.Columns.Add("الكمية المباعة")
- LV.Columns.Add("سعر المبيع")
- LV.Columns.Add("ربح القطعة")
Hello,