Cara membuat aplikasi

(maklum pake excel manual mas), in-out dan sisa ada kolom nya jugaya kaya kartu stok yang manual tuh (yang manual abis, pake kertas kartu stok). Cara merubah datanya apakah pada “tabel barang”? Trus pengertian TRUE and FALSE itu gimana mas?apakah kalau saya edit dengan data saya istilah “TRUE and FALSE” harus diubah juga?soalnya.

Ebook mql4 bahasa indonesia ke online. ' Declare an object variable to hold the object ' reference. Dim as Object causes late binding. Dim ExcelSheet As Object Set ExcelSheet = CreateObject('Excel.Sheet') ' Make Excel visible through the Application object. ExcelSheet.Application.Visible = True ' Place some text in the first cell of the sheet. ExcelSheet.Application.Cells(1, 1).Value = 'This is column A, row 1' ' Save the sheet to C: test.xls directory. ExcelSheet.SaveAs 'C: TEST.XLS' ' Close Excel with the Quit method on the Application object. ExcelSheet.Application.Quit ' Release the object variable.

Set ExcelSheet = Nothing Dim xlApp As Excel.Application Dim xlBook As Excel.Workbook Dim xlSheet As Excel.WorkSheet Set xlApp = CreateObject('Excel.Application') Set xlBook = xlApp.Workbooks.Add Set xlSheet = xlBook.Worksheets(1).