L A M P I R A N. Universitas Sumatera Utara

Size: px
Start display at page:

Download "L A M P I R A N. Universitas Sumatera Utara"

Transcription

1 L A M P I R A N

2 LAMPIRAN 1 Kode program frmbrowse (frmbrowse.frm) Public strsql As String Public xreturn As String Public xreturnname As String Public xreturnaddress As String Public cfilter As Integer 'Public sfilter As String Dim scar As String 'Private Sub cbfilter_keypress(keyascii As Integer) 'On Error Resume Next 'If KeyAscii = vbkeyback Then ' KeyAscii = 0 ' If Len(scar) > 0 Then ' scar = Left(scar, Len(scar) - 1) '"" ' If rsfind.recordcount < 1 Then Exit Sub ' rsfind.movefirst ' rsfind.find "[" & rsfind.fields(cbfilter.listindex).name & "]" & " LIKE '%" & scar & "%'" ' If rsfind.eof Then ' If Len(scar) = 1 Then ' scar = "" ' rsfind.movefirst ' ' DataGrid1_KeyPress vbkeyback ' ' ' ' Label1 = scar ' ' If rsfind.recordcount < 1 Then Exit Sub ' scar = scar + Chr(KeyAscii) ' Label1 = scar ' rsfind.movefirst ' rsfind.find "[" & rsfind.fields(cbfilter.listindex).name & "]" & " LIKE '%" & scar & "%'" ' If rsfind.eof Then ' If Len(scar) = 1 Then ' scar = "" ' rsfind.movefirst '

3 ' DataGrid1_KeyPress vbkeyback ' ' ' ' ' Private Sub cmdcancel_click() On Error Resume Next xreturn = "" Unload Me Exit Sub Private Sub cmdok_click() On Error Resume Next If cmdok.enabled = True Then xreturn = Trim(DataGrid1.Columns(0).Text) xreturnname = Trim(DataGrid1.Columns(1).Text) xreturnaddress = Trim(DataGrid1.Columns(2).Text) Unload Me Exit Sub Private Sub DataGrid1_DblClick() cmdok_click Private Sub DataGrid1_KeyDown(KeyCode As Integer, Shift As Integer) On Error Resume Next Select Case KeyCode Case 13 cmdok_click Case 27 cmdcancel_click End Select Exit Sub Private Sub DataGrid1_KeyPress(KeyAscii As Integer) On Error Resume Next If KeyAscii = vbkeyback Then KeyAscii = 0 If Len(scar) > 0 Then scar = Left(scar, Len(scar) - 1) '"" If rsfind.recordcount < 1 Then Exit Sub rsfind.movefirst rsfind.find "[" & rsfind.fields(cbfilter.listindex).name & "]" & " LIKE '%" & scar & "%'" If rsfind.eof Then If Len(scar) = 1 Then scar = "" rsfind.movefirst DataGrid1_KeyPress vbkeyback

4 Label1 = scar If rsfind.recordcount < 1 Then Exit Sub scar = scar + Chr(KeyAscii) Label1 = scar rsfind.movefirst rsfind.find "[" & rsfind.fields(cbfilter.listindex).name & "]" & " LIKE '%" & scar & "%'" If rsfind.eof Then If Len(scar) = 1 Then scar = "" rsfind.movefirst DataGrid1_KeyPress vbkeyback Lampiran 2 Kode program Form login (frmlogin. Frm) Public LoginStatus As Boolean Private Sub cmd_click(index As Integer) On Error GoTo erx Dim rs As New ADODB.Recordset Select Case Index Case 0 If Trim(t(0)) = "" Then MsgBox "Silahkan masukkan UserName!", vbcritical t(0).setfocus: Exit Sub Dim sql As String sql = "select * from t_user where user_id='" & t(0) & "'" If setrs(rs, sql) = True Then If Trim(t(1)) = CekNul(rs.Fields("user_pwd")) Then If CBool(rs!Locked) = True And LCase(t(0)) <> "admin" Then MsgBox "Maaf login anda terkunci!" & vbcrlf & _ "Silahkan hubungi administrator, untuk mengaktifkan login anda.", vbcritical Exit Sub ' xuser.user_id = Trim(t(0)) xuser.user_name = CekNul(rs!User_Name) xuser.user_pass = Trim(t(1)) xuser.cabang = CekNul(rs!cabang)

5 rs.fields("stsactive") = True rs.update rs.requery If chkremember.value = 1 Then SaveSetting App.ProductName, "login", "user", t(0).text SaveSetting App.ProductName, "login", "pwd", t(1).text If GetSetting(App.ProductName, "login", "user") <> "" Then DeleteSetting App.ProductName, "login", "user" DeleteSetting App.ProductName, "login", "pwd" LoginStatus = True Unload Me MsgBox "Password tidak benar!", vbcritical t(1).setfocus Exit Sub MsgBox "UserName tidak terdafatar!", vbcritical t(0).setfocus Case 1 End End Select Set rs = Nothing Exit Sub erx: MsgBox err.description Exit Sub End Lampiran 3 Kode program form laporan buku besar Private Sub cmd_click(index As Integer) Dim sqlsaldo As String Select Case Index Case 0 sqlsaldo = "select sum(debit)-sum(kredit) as xvalue from qtransaksiall where tgl<#" & Format(dtp(0).Value, "mm/dd/yyyy") & "#" With rptbukubesar.datacontrol1.connectionstring = adocon.connectionstring.datacontrol1.source = "select * from Qtransaksiall " & _ "where tgl between #" & Format(dtp(0).Value, "mm/dd/yyyy") & _ "# and #" & Format(dtp(1).Value, "mm/dd/yyyy") & "# order by periode,tgl,jenis".nsaldoawal = CEmty(getValueAt(sqlSaldo, "xvalue"))

6 .Show End With Case 1: Unload Me End Select Private Sub Form_Load() CenterForm Me dtp(0).value = Format(Date, "dd/mm/yyyy"): dtp(1).value = Format(Date, "dd/mm/yyyy") Private Sub MyNiceFrame1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Pdrag Me Lampiran 4 Kode program form laporan panen Private Sub cmd_click(index As Integer) Dim sqlsaldo As String Select Case Index Case 0 sqlsaldo = "select sum(debit)-sum(kredit) as xvalue from qtransaksiall where tgl<#" & Format(dtp(0).Value, "mm/dd/yyyy") & "#" With rptpanen.datacontrol1.connectionstring = adocon.connectionstring.datacontrol1.source = "select * from qpanen " & _ "where tglpanen between #" & Format(dtp(0).Value, "mm/dd/yyyy") & _ "# and #" & Format(dtp(1).Value, "mm/dd/yyyy") & "# order by nmlokasi,tglpanen".lblperiode = "Periode : " & Format(dtp(0).Value, "dd-mmm-yyyy") & " s/d " & Format(dtp(1).Value, "dd-mmm-yyyy").show End With Case 1: Unload Me End Select

7 Private Sub Form_Load() CenterForm Me dtp(0).value = Format(Date, "dd/mm/yyyy"): dtp(1).value = Format(Date, "dd/mm/yyyy") Private Sub MyNiceFrame1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Pdrag Me Lampiran 5 Kode program form pengeluaran material Private Sub cmd_click(index As Integer) Dim kdperusahaan As String Select Case Index Case 0 frmentripengeluaranmaterial.frmstate = adstateaddmode frmentripengeluaranmaterial.show 1 If frmentripengeluaranmaterial.bsimpan = True Then IsiList Case 1 If lv.listitems.count = 0 Then Exit Sub kdperusahaan = Trim(lv.SelectedItem.SubItems(1)) frmentripengeluaranmaterial.kode = Trim(kdperusahaan) frmentripengeluaranmaterial.frmstate = adstateeditmode frmentripengeluaranmaterial.show 1 If frmentripengeluaranmaterial.bsimpan = True Then IsiList Case 2 If lv.listitems.count = 0 Then Exit Sub If MsgBox("Hapus Selected Item?", vbquestion + vbyesno, App.ProductName) = vbno Then Exit Sub adocon.execute "delete from pengeluaran_material where kdpengeluaran='" & Trim(lv.SelectedItem.SubItems(1)) & "'" IsiList Case 3 Unload Me Case 4 If Trim(txtCari) = "" Then IsiList " "

8 IsiList " where " & lv.columnheaders(cbocari.listindex + 2).Tag & " Like '%" & Trim(txtCari.Text) & "%' " Case 5 ' With rptcoa '.DataControl1.ConnectionString = adocon.connectionstring '.DataControl1.Source = "select * from vcoa where aktif='ya' order by tipe_code,header,sub_code,code" '.Show ' End With End Select Private Sub Form_Load() IsiList cbocari.clear For i = 2 To lv.columnheaders.count cbocari.additem lv.columnheaders(i) Next If cbocari.listcount > 0 Then cbocari.listindex = 0 Private Sub IsiList(Optional strfilter As String = "") Dim rs As New ADODB.Recordset Dim l As ListItem Dim sql As String Dim npersen As Integer lv.listitems.clear sql = "select * from pengeluaran_material " & strfilter & " order by kdpengeluaran" If setrs(rs, sql) = True Then For i = 1 To rs.recordcount Set l = lv.listitems.add(,, i) For j = 1 To lv.columnheaders.count - 1 If j = 2 Then l.subitems(j) = Format(rs.Fields(Trim(lv.ColumnHeaders(j + 1).Tag)), "dd mmm yyyy") If j = 3 Then l.subitems(j) = nformat(rs.fields(trim(lv.columnheaders(j + 1).Tag))) l.subitems(j) = CekNul(rs.Fields(Trim(lv.ColumnHeaders(j + 1).Tag))) Next npersen = (i / rs.recordcount) * 100 ProgressBar1.Value = npersen ProgressBar1.Text = "Isi Data : " & npersen & "%" rs.movenext Next ProgressBar1.Value = 0 ProgressBar1.Text = "Selesai..."

9 Private Sub Form_Resize() On Error Resume Next lv.width = Me.Width lv.height = Me.Height ProgressBar1.Width = Me.Width ProgressBar1.Top = Me.Height With frmbackground.autoredraw = True.PaintPicture.Image1, 0, 0, ScaleWidth, ScaleHeight Me.Picture =.Image End With Private Sub lv_columnclick(byval ColumnHeader As MSComctlLib.ColumnHeader) SortListView lv, ColumnHeader Private Sub lv_dblclick() cmd_click 1 Private Sub txtcari_gotfocus() txtfokus txtcari Private Sub txtcari_keydown(keycode As Integer, Shift As Integer) If KeyCode = 13 Then If Trim(txtCari) = "" Then IsiList " " IsiList " where " & lv.columnheaders(cbocari.listindex + 2).Tag & " Like '%" & Trim(txtCari.Text) & "%' " Private Sub txtcari_lostfocus() txtlostfokus txtcari Lampiran 6 Kode program moddatabase (moddatabase.bas) Public Function setrs(rs As ADODB.Recordset, sql As String) As Boolean On Error GoTo err setrs = False If adocon.state = 0 Then MsgBox "Connection not found!", vbcritical Exit Function With rs If.State = 1 Then.Close

10 .CursorLocation = aduseclient.open sql, adocon, adopendinamic, adlockoptimistic If Not.EOF Then setrs = True End With Exit Function err: MsgBox err.description, vbcritical, "Error" Public Function setrs2(rs As ADODB.Recordset, sql As String) As Boolean On Error GoTo err setrs2 = False If adocon.state = 0 Then MsgBox "Connection not found!", vbcritical Exit Function With rs If.State = 1 Then.Close.CursorLocation = aduseclient.open sql, con, adopendinamic, adlockoptimistic If Not.EOF Then setrs2 = True End With Exit Function err: MsgBox err.description, vbcritical, "Error" Public Function cekrs(sql As String) As Boolean On Error GoTo err Dim rs As New ADODB.Recordset cekrs = False If adocon.state = 0 Then MsgBox "Connection not found!", vbcritical Exit Function With rs If.State = 1 Then.Close.CursorLocation = aduseclient.open sql, adocon, adopendinamic, adlockoptimistic If Not.EOF Then cekrs = True End With Set rs = Nothing Exit Function err: MsgBox err.description, vbcritical, "Error" Public Function getvalueat(byval srcsql As String, ByVal whichfield As String) As String Dim rs As New Recordset

11 rs.cursorlocation = aduseclient rs.open srcsql, adocon, adopenstatic, adlockreadonly If rs.recordcount > 0 Then getvalueat = CekNul(rs.Fields(whichField)) Set rs = Nothing Lampiran 7 Kode program modfungsi (modfungsi.bas) Public Enum tglformat dlong = 0 dmedium = 1 dshort = 2 End Enum Function FlexDel(tabel As Object) If tabel.rows > 2 Then tabel.removeitem tabel.row tabel.rows = 1 tabel.rows = 2 tabel.row = tabel.rows - 1 Function HitungUmur(ultah As Date, Optional Skrg As Date = 0) As Integer On Error Resume Next Dim intage As Integer If Skrg = 0 Then Skrg = Date intage = DateDiff("yyyy", ultah, Skrg) If Skrg < DateSerial(Year(sekarang), Month(ultah), Day(ultah)) Then intage = intage - 1 HitungUmur = intage Function ceksql(ssql As String) As Boolean Dim r As New ADODB.Recordset If r.state = 1 Then r.close r.cursorlocation = aduseclient r.open ssql, adocon, adopendynamic, adlockoptimistic If Not r.eof Then ceksql = True ceksql = False Function TakeDesc(sSQL As String) As String

12 Dim r As New ADODB.Recordset If r.state = 1 Then r.close r.cursorlocation = aduseclient r.open ssql, adocon, adopendynamic, adlockoptimistic If Not r.eof Then TakeDesc = r(0) TakeDesc = "" Public Sub SetNumeric(ByVal txt As TextBox) Dim X As Long X = InStr(1, Trim(txt), ",") If mcols < 0 Then GoTo 1 ' If adocon.state = 1 Then adocon.close ' adocon.open Dim vrs As New ADODB.Recordset Dim mrs As New ADODB.Recordset If mrs.state = 1 Then mrs.close Set mrs = adocon.execute(msql) Dim vsql$, i%, j%, mcaption$ i = 1 With mflexgrid.clear.cols = mcols 'vsql = "select count(*) as browcount from " & mtable 'Set vrs = adocon.execute(vsql) Set vrs = adocon.execute(mrowtodetect) If vrs.eof <> True Then '.Rows = vrs!browcount + 1 ' ' MsgBox mrowtodetect MsgBox mfieldtodetect.rows = vrs.fields(mfieldtodetect) + 1 If mcols = 0 Then mcaption = mcolcaption0 If mcols = 1 Then mcaption = mcolcaption0 & " " & mcolcaption1 If mcols = 2 Then & mcolcaption2 If mcols = 3 Then & mcolcaption2 & " " & mcolcaption3 If mcols = 4 Then & mcolcaption2 & " " & mcolcaption3 & " " _ & mcolcaption4 If mcols = 5 Then & mcolcaption2 & " " & mcolcaption3 & " " _ & mcolcaption4 & " " & mcolcaption5 If mcols = 6 Then & mcolcaption2 & " " & mcolcaption3 & " " _

13 & mcolcaption4 & " " & mcolcaption5 & " " _ & mcolcaption6 If mcols = 7 Then & mcolcaption2 & " " & mcolcaption3 & " " _ & mcolcaption4 & " " & mcolcaption5 & " " _ & mcolcaption6 & " " & mcolcaption7 If mcols = 8 Then & mcolcaption2 & " " & mcolcaption3 & " " _ & mcolcaption4 & " " & mcolcaption5 & " " _ & mcolcaption6 & " " & mcolcaption7 & " " _ & mcolcaption8 If mcols = 9 Then & mcolcaption2 & " " & mcolcaption3 & " " _ & mcolcaption4 & " " & mcolcaption5 & " " _ & mcolcaption6 & " " & mcolcaption7 & " " _ & mcolcaption8 & " " & mcolcaption9 If mcols = 10 Then & mcolcaption2 & " " & mcolcaption3 & " " _ & mcolcaption4 & " " & mcolcaption5 & " " _ & mcolcaption6 & " " & mcolcaption7 & " " _ & mcolcaption8 & " " & mcolcaption9 & " " _ & mcolcaption10 If mcols = 11 Then & mcolcaption2 & " " & mcolcaption3 & " " _ & mcolcaption4 & " " & mcolcaption5 & " " _ & mcolcaption6 & " " & mcolcaption7 & " " _ & mcolcaption8 & " " & mcolcaption9 & " " _ & mcolcaption10 & " " & mcolcaption11 If mcols = 12 Then & mcolcaption2 & " " & mcolcaption3 & " " _ & mcolcaption4 & " " & mcolcaption5 & " " _ & mcolcaption6 & " " & mcolcaption7 & " " _ & mcolcaption8 & " " & mcolcaption9 & " " _ & mcolcaption10 & " " & mcolcaption11 & " " _ & mcolcaption12 If mcols = 13 Then & mcolcaption2 & " " & mcolcaption3 & " " _ & mcolcaption4 & " " & mcolcaption5 & " " _ & mcolcaption6 & " " & mcolcaption7 & " " _ & mcolcaption8 & " " & mcolcaption9 & " " _ & mcolcaption10 & " " & mcolcaption11 & " " _ & mcolcaption12 & " " & mcolcaption13 If mcols = 14 Then & mcolcaption2 & " " & mcolcaption3 & " " _ & mcolcaption4 & " " & mcolcaption5 & " " _ & mcolcaption6 & " " & mcolcaption7 & " " _ & mcolcaption8 & " " & mcolcaption9 & " " _ & mcolcaption10 & " " & mcolcaption11 & " " _ & mcolcaption12 & " " & mcolcaption13 & " " _

14 b = Len(X) Do C = Mid(X, A, 1) If C = "'" Then C = C & "'" cekkutif = cekkutif & C A = A + 1 Loop Until A = b + 1 Function HitungUsia(tglLahir As Date) As Integer Dim iusia As Integer On Error Resume Next iusia = Year(getServerDate) - Year(tglLahir) HitungUsia = iusia Function HitungUsiaWithMonth(tglLahir As Date) As String Dim iusiayear As Integer Dim iusiamonth As Integer Dim idate As Date Dim xdate As Date On Error Resume Next idate = getserverdate xdate = DateSerial(Year(tglLahir), Month(tglLahir), Day(tglLahir)) If xdate = idate Then iusiayear = Year(iDate) - Year(tglLahir) iusiamonth = 0 If xdate > idate Then iusiayear = Year(iDate) - Year(tglLahir) - 1 iusiamonth = Month(tglLahir) - Month(iDate) iusiayear = Year(iDate) - Year(tglLahir) iusiamonth = Month(iDate) - Month(xDate) HitungUsiaWithMonth = iusiayear & " Tahun " & iusiamonth & " Bulan" Function HitungUsiaWithDay(tglLahir As Date) As String Dim iusiayear As Integer Dim iusiamonth As Integer Dim iusiaday As Double Dim idate As Date Dim xdate As Date On Error Resume Next idate = getserverdate xdate = DateSerial(Year(tglLahir), Month(tglLahir), Day(tglLahir))

15 If Year(xDate) = Year(iDate) Then iusiayear = Year(iDate) - Year(xDate) If Month(iDate) = Month(xDate) Then iusiamonth = 0 iusiaday = idate - xdate iusiaday = idate - xdate If iusiaday < 30 Then iusiamonth = 0 iusiaday = iusiaday ' iusiaday = idate - xdate ' If iusiaday > 30 Then ' iusiamonth = Month(iDate) - Month(xDate) ' iusiaday = iusiaday / (iusiamonth * 30) ' ' iusiamonth = 0 ' ' If Year(iDate) > Year(xDate) Then ' iusiayear = Year(iDate) - Year(tglLahir) ' iusiamonth = Month(tglLahir) - Month(iDate) ' ' iusiayear = Year(iDate) - Year(tglLahir) ' iusiamonth = Month(iDate) - Month(xDate) HitungUsiaWithDay = iusiayear & " Tahun " & iusiamonth & " Bulan " & CInt(iUsiaDay) & " Hari" Function HitungUsiaBulan(tglLahir As Date) As Integer Dim iusiayear As Integer Dim iusiamonth As Integer Dim idate As Date Dim xdate As Date On Error Resume Next idate = getserverdate xdate = DateSerial(Year(tglLahir), Month(tglLahir), Day(tglLahir)) If xdate = idate Then iusiayear = Year(iDate) - Year(tglLahir) iusiamonth = 0 If xdate > idate Then iusiayear = Year(iDate) - Year(tglLahir) - 1 iusiamonth = Month(tglLahir) - Month(iDate) iusiayear = Year(iDate) - Year(tglLahir) iusiamonth = Month(iDate) - Month(xDate)

16 HitungUsiaBulan = iusiayear * 12 + iusiamonth Function RestoreObj(ByRef setrec, ByRef Obj, bstatus As Boolean) ''On Error GoTo e_e 'Select Case CBool(bStatus) 'Case True ' For b = 0 To Obj.UBound ' setrec(obj(b).tag) = Trim(Obj(b)) ' 'Debug.Print setrec(obj(b).tag) ' Next 'Case ' For b = 0 To Obj.UBound ' Obj(b) = IIf(IsNull(setRec(Obj(b).Tag)), "", setrec(obj(b).tag)) ' Next 'End Select 'Exit Function 'e_e: 'ErrDesc 'If err.number = 438 Then ' Select Case CBool(bStatus) ' Case True ' setrec(obj.tag) = Trim(Obj) ' Case ' Obj = IIf(IsNull(setRec(Obj.Tag)), "", setrec(obj.tag)) ' End Select ' Public Sub setcombo(dtcombo As DataCombo, stable As String, sfield As String, skey As String) Dim rs As New ADODB.Recordset 'Private Function SponsorUp(str As String) As String 'sponsor = Left(Trim(txt(3).Tag), 5) 'notmp = CEmty(Right(sponsor, 2)) + 1 'tmp = Left(sponsor, 3) & Format(notmp, "0#") & "-" ' ' 'Public Function SponsorDown(str As stri) As String 'sponsor = Left(Trim(txt(3).Tag), 5) 'notmp = CEmty(Right(sponsor, 2)) + 1 'tmp = Left(sponsor, 3) & Format(notmp, "0#") & "-" ' Public Function GetAlphabet(Alphabet As String) As String Dim tmpalphabet As Integer Dim arralphabet() As Integer Dim tmpstring As String Dim nalphabet As Integer nalphabet = Len(Trim(Alphabet))

17 ReDim arralphabet(nalphabet) If nalphabet = 1 Then tmpalphabet = AlphabetToAngka(Trim(Alphabet)) tmpalphabet = tmpalphabet + 1 If tmpalphabet > 26 Then GetAlphabet = "AA" GetAlphabet = AngkaToAlphabet(tmpAlphabet) For i = 1 To nalphabet tmpalphabet = AlphabetToAngka(Mid(Trim(Alphabet), i, 1)) If i = nalphabet Then tmpalphabet = AlphabetToAngka(Mid(Trim(Alphabet), i, 1)) + 1 If tmpalphabet > 26 Then arralphabet(i - 1) = arralphabet(i - 1) + 1 If arralphabet(i - 1) > 26 Then arralphabet(i) = tmpalphabet arralphabet(i) = AlphabetToAngka(Mid(Trim(Alphabet), i, 1)) Next ' tmpalphabet = AlphabetToAngka(Left(Trim(Alphabet), 1)) Exit Function Select Case Alphabet Case "A": AlphabetToAngka = 1 Case "B": AlphabetToAngka = 2 Case "C": AlphabetToAngka = 3 Case "D": AlphabetToAngka = 4 Case "E": AlphabetToAngka = 5 Case "F": AlphabetToAngka = 6 Case "G": AlphabetToAngka = 7 Case "H": AlphabetToAngka = 8 Case "I": AlphabetToAngka = 9 Case "J": AlphabetToAngka = 10 Case "K": AlphabetToAngka = 11 Case "L": AlphabetToAngka = 12 Case "M": AlphabetToAngka = 13 Case "N": AlphabetToAngka = 14 Case "O": AlphabetToAngka = 15 Case "P": AlphabetToAngka = 16 Case "Q": AlphabetToAngka = 17 Case "R": AlphabetToAngka = 18 Case "S": AlphabetToAngka = 19 Case "T": AlphabetToAngka = 20 Case "U": AlphabetToAngka = 21 Case "V": AlphabetToAngka = 22 Case "W": AlphabetToAngka = 23 Case "X": AlphabetToAngka = 24 Case "Y": AlphabetToAngka = 25 Case "Z": AlphabetToAngka = 26

18 End Select Function Number2Letter(Num As Long) As String Dim letme As Long Dim N As Long N = CInt((Num / 26) ) Number = CInt(Num - (N * 26)) If Number = 0 Then Number = 26 If N > 0 Then addition = Number2Letter(N) If Number = 1 Then Number2Letter = addition & "A" If Number = 2 Then Number2Letter = addition & "B" If Number = 3 Then Number2Letter = addition & "C" If Number = 4 Then Number2Letter = addition & "D" If Number = 5 Then Number2Letter = addition & "E" If Number = 6 Then Number2Letter = addition & "F" If Number = 7 Then Number2Letter = addition & "G" If Number = 8 Then Number2Letter = addition & "H" If Number = 9 Then Number2Letter = addition & "I" If Number = 10 Then Number2Letter = addition & "J" If Number = 11 Then Number2Letter = addition & "K" If Number = 12 Then Number2Letter = addition & "L" If Number = 13 Then Number2Letter = addition & "M" If Number = 14 Then Number2Letter = addition & "N" If Number = 15 Then Number2Letter = addition & "O" If Number = 16 Then Number2Letter = addition & "P" If Number = 17 Then Number2Letter = addition & "Q" If Number = 18 Then Number2Letter = addition & "R" If Number = 19 Then Number2Letter = addition & "S" If Number = 20 Then Number2Letter = addition & "T" If Number = 21 Then Number2Letter = addition & "U" If Number = 22 Then Number2Letter = addition & "V" If Number = 23 Then Number2Letter = addition & "W" If Number = 24 Then Number2Letter = addition & "X" If Number = 25 Then Number2Letter = addition & "Y" If Number = 26 Then Number2Letter = addition & "Z" Public Function CalculateSequence(ByVal strstartsequence As String) As String Dim strcasestring As String Dim intcurrentasc As Integer Dim intleadasc As Integer Dim strnewstring As String strcasestring = UCase(strStartSequence) intcurrentasc = Asc(Right(strCaseString, 1)) intleadasc = Asc(Left(strCaseString, 1)) If intcurrentasc <> 90 Then strnewstring = Left(strCaseString, Len(strCaseString) - 1) & Chr(intCurrentAsc + 1) If intleadasc = 90 Then

19 strnewstring = Chr(intLeadAsc + 1) & Chr(65) 'Debug.Print strnewstring CalculateSequence = strnewstring Public Sub IsiCombo(dtCombo As DataCombo, stable As String, sfield As String, skey As String, Optional sorder As String = " ") Dim rs As New ADODB.Recordset If setrs(rs, "select * from " & Trim(sTable) & " " & sorder) = True Then Set dtcombo.rowsource = rs dtcombo.listfield = sfield dtcombo.boundcolumn = skey Set rs = Nothing Function CalcAge(Birthday As String) As Integer Dim YearDay As Date If Val(Format(Birthday, "y")) > Val(Format(Date, "y")) Then YearDay = DateAdd("yyyy", 1, (Birthday)) YearDay = Birthday CalcAge = DateDiff("yyyy", YearDay, Date) Public Function ExactAge(BirthDate As Variant) As String Dim yer As Integer, mon As Integer, d As Integer Dim dt As Date Dim sans As String If Not IsDate(BirthDate) Then Exit Function dt = CDate(BirthDate) If dt > Now Then Exit Function yer = Year(dt) mon = Month(dt) d = Day(dt) yer = Year(Date) - yer mon = Month(Date) - mon d = Day(Date) - d If Sgn(d) = -1 Then d = 30 - Abs(d) mon = mon - 1

20 If Sgn(mon) = -1 Then mon = 12 - Abs(mon) yer = yer - 1 'sans = yer & " year(s) " & mon & " month(s) " & d _ ' & " day(s) old." sans = yer & " Tahun " & mon & " Bulan" ExactAge = sans Sub faddrow(f As Object) f.rows = f.rows + 1 f.row = f.rows - 1 Function fdelrow(f As Object)

21

22 SURAT KETERANGAN Hasil Uji Program Tugas Akhir Yang bertanda tangan dibawah ini, menerangkan bahwa Tugas Akhir Mahasiswa Program D-3 Teknik Informatika : Nama : ABI MANYU SINULINGGA Nomor Induk Mahasiswa : Program Studi : D-3 TEKNIK INFORMATIKA Judul Tugas Akhir : APLIKASI PEMBUKUAN KEBUN KELAPA SAWIT PRIBADI MENGGUNAKAN MICROSOFT VISUAL BASIC 6.0 Telah melaksanakan tes program Tugas Akhir dari mahasiswa tersebut yang dilaksanakan pada tanggal Dengan Hasil : Sukses / Gagal Demikian diterangkan untuk digunakan melengkapi syarat pendaftaran Ujian Meja Hijau Tugas Akhir Mahasiswa yang bersangkutan di Departemen Matematika FMIPA USU Medan. Medan, Juni 2014 Dosen Pembimbing Sajadin Sembiring,S.Si, M.Sc

23 KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jl. Bioteknologi No. 1 Kampus USU Telp. (061) , , Fax. (061) Medan Kartu Bimbingan Tugas Akhir Mahasiswa Nama : ABI MANYU SINULINGGA Nomor Induk Mahasiswa : Judul Tugas Akhir : APLIKASI PEMBUKUAN KEBUN KELAPA SAWIT PRIBADI MENGGUNAKAN MICROSOFT VISUAL BASIC 6.0 Dosen Pembimbing : Sajadin Sembiring,S.Si, M.Comp.Sc Tanggal Mulai Bimbingan : Tanggal Selesai Bimbingan : No Tanggal Asistensi Bimbingan Pembahasan Pada Asistensi Mengenai, Pada Bab : Paraf Dosen Pembimbing Keterangan *Kartu ini harap dikembalikan ke Departemen Matematika bila bimbingan mahasiswa telah selesai Diketahui, Ketua Program Studi D-3 Teknik Informatika FMIPA USU Ketua Disetujui, Pembimbing Utama/ Penanggung Jawab Dr. Elly rosmaini, M.si NIP Sajadin Sembiring,S.Si, M.Comp.Sc

24

LISTING PROGRAM. 1. Tampilan Awal. 2. Menu Login. Public Class Awal

LISTING PROGRAM. 1. Tampilan Awal. 2. Menu Login. Public Class Awal LISTING PROGRAM 1. Tampilan Awal Public Class Awal Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick ProgressBar1.Increment(10) If ProgressBar1.Value

More information

KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB

KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB 62 KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jl. Bioteknologi No.1 Kampus USU Padang Bulan Medan 20155 Telp. (061) 8211050, 8214290, Fax (061)

More information

L A M P I R A N. Universitas Sumatera Utara

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N LISTING PROGRAM 1. Listing Pembuka Dim strado$ Dim n As Integer Private Sub Close_Click() End Private Sub Command1_Click() If Option1.Value = True Then Search.Show If Option2.Value = True

More information

LISTING PROGRAM. 1. Form Login. Private Sub BATAL_Click() End End Sub

LISTING PROGRAM. 1. Form Login. Private Sub BATAL_Click() End End Sub LISTING PROGRAM 1. Form Login Private Sub BATAL_Click() End Sub Bersih() USERNAME.Text = "" PASSWORD.Text = "" Private Sub Form_Load() Bersih Private Sub OK_Click() Sql = "select*from tbl_login where username='"

More information

Kartu Bimbingan Tugas Akhir Mahasiswa

Kartu Bimbingan Tugas Akhir Mahasiswa KEMENTRIAN PENDIDIKAN DAN KEBUDAYAAN UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jln. Bioteknologi No. 1 Kampus USU Padang Bulan Medan-20155 Telp. (061) 8214290, 8211212, 8211414

More information

/******************** Tunable parameters: ********************/

/******************** Tunable parameters: ********************/ 1. Smartass2.c / drivers/cpufreq/cpufreq_smartass2.c Copyright (C) 2010 Google, Inc. This software is licensed under the terms of the GNU General Public License version 2, as published by the Free Software

More information

End Sub. Sub Kunci() Dim i As Integer For i = 0 To 4 Txtfield(i).Locked = True Next i grddatagrid.enabled = False End Sub

End Sub. Sub Kunci() Dim i As Integer For i = 0 To 4 Txtfield(i).Locked = True Next i grddatagrid.enabled = False End Sub Source Aplikasi Sistem Informasi Akademik GENERAL Dim db As Connection Dim WithEvents adoprimaryrs1 As Recordset Dim WithEvents adoprimaryrs2 As Recordset Dim WithEvents rscaridata As Recordset Dim cekid

More information

LAMPIRAN LIST PROGRAM

LAMPIRAN LIST PROGRAM LAMPIRAN LIST PROGRAM 1. Modules Public conn As New ADODB.Connection Public rstb_pendekatan As ADODB.Recordset Public rstb_solusi As ADODB.Recordset Public rstb_alasan As ADODB.Recordset Public rstb_pilihan

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. frmmenu.frm Dim CN As Connection Dim rshapus As Recordset Private Sub DfaHasil_Click() Call frmlap.cetak Private Sub Form_Load() Set CN = New ADODB.Connection CN.ConnectionString

More information

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara 61 LAMPIRAN 61 Listing Program Form 1 ( Barang ) Dim CnSuzuya As ADODB.Connection Dim CommBar As ADODB.Command Dim rsbar As ADODB.Recordset Dim StrSql As String Dim psn As Byte Private Sub Form_Load()

More information

Tutorial, Source code, Request Program Visual Basic

Tutorial, Source code, Request Program Visual Basic Tutorial, Source code, Request Program Visual Basic Oleh : Moh. A Azis Membuat Form Data Barang Program Persediaan Barang Form Data Barang digunakan untuk menyimpan data barang dan memberikan info mengenai

More information

LAMPIRAN A LISTING PROGRAM. Universitas Sumatera Utara

LAMPIRAN A LISTING PROGRAM. Universitas Sumatera Utara LAMPIRAN A LISTING PROGRAM LISTING PROGRAM MENU UTAMA Dim T As String Dim i Private Sub Dafsis_Click() Form5.Show Private Sub Dafwai_Click() Form5.Show Private Sub Dasis_Click() Form2.Show Private Sub

More information

LISTING PROGRAM. Form Splash

LISTING PROGRAM. Form Splash LISTING PROGRAM Form Splash Private Sub Form_Load() lblversion.caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision lblproductname.caption = App.Title lblcopyright.caption = App.LegalCopyright

More information

LAMPIRAN FORM 1 Universitas Sumatera Universitas Utara

LAMPIRAN FORM 1 Universitas Sumatera Universitas Utara LAMPIRAN FORM 1 Private Sub Text2_KeyPress(KeyAscii As Integer) If KeyAscii = vbkeyreturn Then Set tbladministrator = New ADODB.Recordset With tbladministrator.open "SELECT * FROM Administrator WHERE userid

More information

REGISTRATION GUIDE MCIS CUSTOMER PORTAL. Page 1

REGISTRATION GUIDE MCIS CUSTOMER PORTAL. Page 1 REGISTRATION GUIDE MCIS CUSTOMER PORTAL Page 1 Customer Portal Registration Guide Go to www.mcis.my and click the Customer Portal tab Page 2 Customer Portal Registration Guide 1. The page shown below will

More information

LISTING PROGRAM. 1. Form Menu Utama. Universitas Sumatera Utara

LISTING PROGRAM. 1. Form Menu Utama. Universitas Sumatera Utara LISTING PROGRAM 1. Form Menu Utama Dim LenTemp As Integer Dim SrtTemp As String Dim n As Integer Private Sub Form_Load() Call Tengah(Me) lhsysmenu = GetSystemMenu(Me.hwnd, False) lretval = RemoveMenu(lhSysMenu,

More information

LISTING PROGRAM. 1. Menu Utama

LISTING PROGRAM. 1. Menu Utama LISTING PROGRAM 1. Menu Utama Dim rsupdate As Recordset Dim rscari As Recordset Dim strusername As String * 10 Dim Status As String * 1 Dim JumUser As Integer Public system_mon As String Public service_mon

More information

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara 67 LAMPIRAN Lampiran A-1 Listing Program Visual Basic Private Sub mn_isidata_click() frm_isi_data.show Me.Hide Private Sub mn_koneksiport_click() frm_koneksi_port.show Me.Hide Private Sub mn_tentang_click()

More information

SURAT KETERANGAN Hasil Uji Program Tugas Akhir

SURAT KETERANGAN Hasil Uji Program Tugas Akhir SURAT KETERANGAN Hasil Uji Program Tugas Akhir Yang bertanda tangan dibawah ini, menerangkan bahwa Tugas Akhir Mahasiswa Program Diploma 3 Teknik Informatika : Nama : FADILLA MAHARANI NIM : 112406159 Program

More information

LAMPIRAN : LISTING PROGRAM

LAMPIRAN : LISTING PROGRAM LAMPIRAN : LISTING PROGRAM Kode Program Form Login Private Sub cbolevel_click() If cbolevel.text = "Pengguna" Then txtlogin.enabled = False txtpass.enabled = False txtlogin.visible = False txtpass.visible

More information

Universitas Sumatera Utara

Universitas Sumatera Utara 43 L A M P I R A N 44 Penulisan Kode Program Aplikasi Game Tetris A. Kode program aplikasi game tetris untuk form1 ( MainF.frm ) adalah sebagai berikut. Dim BANK As Database Dim RS As DAO.Recordset Private

More information

DOKUMEN TIDAK TERKAWAL

DOKUMEN TIDAK TERKAWAL Halaman: 1/12 Tujuan : Arahan kerja ini adalah untuk menerangkan tatacara pendaftaran ID Pengguna di dalam Sistem Kewangan SAGA (Standard Accounting for Government Agencies) Universiti Putra Malaysia bagi

More information

LISTING PROGRAM. 1. Menu Utama

LISTING PROGRAM. 1. Menu Utama LISTING PROGRAM 1. Menu Utama Option Explicit Dim rssms As Recordset Dim stopen As String * 1 Dim IDSms As Integer Dim rspesan As Recordset Dim Kode As String * 1 Dim rspaket As Recordset Dim NmPaket As

More information

Advanced Topics in Automated Test Scripting

Advanced Topics in Automated Test Scripting *534_CH08_CMP4.qxd 7/3/01 1:10 PM Page 253 Part Four Advanced Topics in Automated Test Scripting *534_CH08_CMP4.qxd 7/3/01 1:10 PM Page 254 *534_CH08_CMP4.qxd 7/3/01 1:10 PM Page 255 CHAPTER 8 Introduction

More information

PENGELUARAN PERAKUAN KEKOMPETENAN DAN PERAKUAN KECEKAPAN BARU MENGIKUT STCW 1978, SEPERTI PINDAAN

PENGELUARAN PERAKUAN KEKOMPETENAN DAN PERAKUAN KECEKAPAN BARU MENGIKUT STCW 1978, SEPERTI PINDAAN NOTIS PERKAPALAN MALAYSIA MALAYSIA SHIPPING NOTICE JABATAN LAUT MALAYSIA Marine Department of Malaysia Ibu Pejabat Laut, Peti Surat 12, 42007 Pelabuhan Klang. Tel: 03-33467777 Fax: 03-3168 5289, 3165 2882

More information

LAMPIRAN 1. Kode Program Splash Screen

LAMPIRAN 1. Kode Program Splash Screen LAMPIRAN 1 Kode Program Splash Screen Private Sub Form_Load() lblversion.caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision lblproductname.caption = App.Title lblcopyright.caption

More information

Visitor Management System

Visitor Management System WWW.VALLINME.COM Visitor Management System Ver 1.0 Mohd Noor Azam 18-03-2015 [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the

More information

Panduan Menggunakan Autoresponder FreeAutobot.com

Panduan Menggunakan Autoresponder FreeAutobot.com Panduan Menggunakan Autoresponder FreeAutobot.com Dengan memperolehi e-book ini, anda mempunyai kebenaran untuk memberi secara percuma kepada pelanggan anda atau tawarkan sebagai bonus kepada pembelian

More information

ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11

ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11 ssk 2023 asas komunikasi dan rangkaian TOPIK 4.0 PENGALAMATAN RANGKAIAN Minggu 11 PENILAIAN & KULIAH Kuliah Tugasan Ujian Teori Ujian Amali Isi kandungan 4.8 Menunjukkan asas pengiraan o Subnet Mask o

More information

LISTING PROGRAM. mainform.vb A-1. Universitas Sumatera Utara

LISTING PROGRAM. mainform.vb A-1. Universitas Sumatera Utara A-1 LISTING PROGRAM mainform.vb Imports System.IO Public Class mainform Private Sub mainform_load(byval sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load enkripsirb.checked = True

More information

Rooftop Industries Pvt. Ltd.

Rooftop Industries Pvt. Ltd. Rooftop Industries Pvt. Ltd. Production and inventory management system A level Computing Project Shritesh Bhattarai Little Angels' College 1 Table of Contents Definition, investigation and analysis...

More information

LAMPIRAN : LISTING PROGRAM

LAMPIRAN : LISTING PROGRAM 1 LAMPIRAN : LISTING PROGRAM 1. Modules a. Modul Vocab Modul ini mefinisikan persyaratan dan pesan dari beberapa data sebagai konstan Variabel. Shop Screen ShopBuy ShopSell ShopCancel Possession = "Beli"

More information

ADVANCED ALGORITHMS TABLE OF CONTENTS

ADVANCED ALGORITHMS TABLE OF CONTENTS ADVANCED ALGORITHMS TABLE OF CONTENTS ADVANCED ALGORITHMS TABLE OF CONTENTS...1 SOLVING A LARGE PROBLEM BY SPLITTING IT INTO SEVERAL SMALLER SUB-PROBLEMS CASE STUDY: THE DOOMSDAY ALGORITHM... INTRODUCTION

More information

Definition, Investigation and Analysis

Definition, Investigation and Analysis Definition, Investigation and Analysis Introduction and Nature of the Problem Introduction Pradhan Store is a wholesale store located in Nakhipot, Lalitpur. It has been providing its service since the

More information

A Back-End Link Checker for Your Access Database

A Back-End Link Checker for Your Access Database A Back-End for Your Access Database Published: 30 September 2018 Author: Martin Green Screenshots: Access 2016, Windows 10 For Access Versions: 2007, 2010, 2013, 2016 Working with Split Databases When

More information

Manual Pengguna. PCN Online Service Fulfillment System

Manual Pengguna. PCN Online Service Fulfillment System System 1 Subjek Muka Surat 1) CARTA ALIR SISTEM 2 2) PERMOHONAN OLEH AGENSI 3 3) PENGESAHAN PERMOHONAN OLEH MAMPU 8 4) LAMPIRAN 13 2 Carta alir sistem 3 PERMOHONAN OLEH AGENSI 4 Membuat permohonan baru

More information

ISU DAN CABARAN PELAKSANAAN SISTEM PENGURUSAN KESELAMATAN MAKLUMAT (ISMS) 15 Jun 2016 Dewan Taklimat Serdang

ISU DAN CABARAN PELAKSANAAN SISTEM PENGURUSAN KESELAMATAN MAKLUMAT (ISMS) 15 Jun 2016 Dewan Taklimat Serdang ISU DAN CABARAN PELAKSANAAN SISTEM PENGURUSAN KESELAMATAN MAKLUMAT (ISMS) 15 Jun 2016 Dewan Taklimat Serdang 1 TARIKH AUDIT Audit Dalaman Sistem Pengurusan Keselamatan Maklumat (ISMS) Universiti Putra

More information

Password Protect an Access Database

Password Protect an Access Database Access a Password Protected Microsoft Access Database from within Visual Basic 6 Have you ever wanted to password protect an Access Database that is a Data Store (a repository of Data) used in one of your

More information

ต วอย างการสร างฟอร ม เมน การใช งาน

ต วอย างการสร างฟอร ม เมน การใช งาน ต วอย างการสร างฟอร ม เมน การใช งาน Option Explicit Dim conn As New ADODB.Connection Dim rs As New ADODB.Recordset Dim Sql As String Private Sub Command6_Click() Form2.Hide Form3.Show Private Sub Command7_Click()

More information

Please answer questions in the space provided. Question point values are shown in parentheses.

Please answer questions in the space provided. Question point values are shown in parentheses. IS 320 Spring 99 Page 1 Please answer questions in the space provided. Question point values are shown in parentheses. 1. (15) Assume you have the following variable declarations and assignments: Dim A

More information

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is InputBox( ) Function An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is A = InputBox ( Question or Phrase, Window Title, ) Example1: Integer:

More information

LAMPIRAN A-2 : LAPORAN PENJUALAN DOKUMEN KELUARAN

LAMPIRAN A-2 : LAPORAN PENJUALAN DOKUMEN KELUARAN LAMPIRAN A-2 : LAPORAN PENJUALAN DOKUMEN KELUARAN LAMPIRAN A-1 : NOTA DOKUMEN KELUARAN LAMPIRAN B MASUKAN SISTEM BERJALAN LAMPIRAN B-1 : DATA BARANG DOKUMEN MASUKAN LAMPIRAN B-2 : DATA PELANGGAN DOKUMEN

More information

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS)

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: SUPPLY CHAIN MANAGEMENT (SCM) BAHAGIAN ICT PROCESS

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. Form Login Private Sub Siap() txtnama.enabled = True txtpswd.enabled = True Private Sub BlmSiap() txtnama.enabled = False txtpswd.enabled = False Private Sub Kosong() txtnama

More information

22. VB Programming Fundamentals Data Access with Data Objects

22. VB Programming Fundamentals Data Access with Data Objects 22. VB Programming Fundamentals Data Access with Data Objects 22.1 Data Access Object MS Data Access Object (DAO) enables you to use a programming language to access and manipulate data in local or remote

More information

L A M P I R A N. Universitas Sumatera Utara

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N A TAMPILAN PROGRAM 1. Form Login 2. Form Menu Utama 3. Form Entry Data Mahasiswa Baru 4. Form Kasir 5. Form Transaksi 6. Laporan cetak mahasiswa 6. Laporan cetak mahasiswa 7. Laporan cetak

More information

OUR company has recognized that forms design is

OUR company has recognized that forms design is User Interface Standards for Forms Smart Access 2000 2002 Dennis Schumaker User interface standards are critical for both programmer and end-user productivity. An important part of any application is Application

More information

Pengenalan Sistem Maklumat Dalam Pendidikan

Pengenalan Sistem Maklumat Dalam Pendidikan Pengenalan Sistem Maklumat Dalam Pendidikan 1 RELATIONSHIP & QUERY DALAM MICROSOFT ACCESS Kandungan Definisi Relationship (Hubungan) Jenis Relationship Membina Relationship Definisi Query dan Fungsi Query

More information

Lampiran 1 Kode Program

Lampiran 1 Kode Program 53 Lampiran 1 Kode Program Kode Program 1 Kode Menu Peminjaman Private Sub BT_Cari_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BT_Cari.Click Call CariKaset() Private Sub RB_CheckedChanged(ByVal

More information

UNIVERSITI SAINS MALAYSIA. CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web]

UNIVERSITI SAINS MALAYSIA. CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web] UNIVERSITI SAINS MALAYSIA First Semester Examination 2014/2015 Academic Session December 2014/January 2015 CMT322/CMM323 Web Engineering & Technologies [Kejuruteraan & Teknologi Web] Duration : 2 hours

More information

Private Sub Command2_Click() End End Sub. Private Sub Command3_Click() frmchangepassword.show End Sub. Private Sub Form_Activate() check_db End Sub

Private Sub Command2_Click() End End Sub. Private Sub Command3_Click() frmchangepassword.show End Sub. Private Sub Form_Activate() check_db End Sub Private Sub Command1_Click() On Error Resume If rs.state = adstateopen Then rs.close rs.open "select * from login where UserName='" & txtusername & "' And Log_Password='" & txtpassword & "'", conn, 1,

More information

PANDUAN PENGGUNA (PENTADBIR SYSTEM/SYSTEM ADMINISTRATOR) (INFOTECH, BPPF DAN POLIS

PANDUAN PENGGUNA (PENTADBIR SYSTEM/SYSTEM ADMINISTRATOR) (INFOTECH, BPPF DAN POLIS Classroom Reservation User Manual (HEA) PANDUAN PENGGUNA (PENTADBIR SYSTEM/SYSTEM ADMINISTRATOR) (INFOTECH, BPPF DAN POLIS Table of Contents CLASSROOM RESERVATION MANAGEMENT SYSTEM - APLIKASI... 2 Apa

More information

Panduan Pengguna Autodesk Education Community

Panduan Pengguna Autodesk Education Community Panduan Pengguna Autodesk Education Community ISI KANDUNGAN 1. Mendaftar Akaun Autodesk Education bagi Pelajar, Kakitangan dan Institusi Akademik...1 2. Muat Turun Perisian dan Lesen Autodesk Education

More information

PANDUAN PENGGUNA (PENSYARAH)

PANDUAN PENGGUNA (PENSYARAH) Classroom Reservation User Manual (HEA) PANDUAN PENGGUNA (PENSYARAH) Table of Contents CLASSROOM RESERVATION MANAGEMENT SYSTEM - APLIKASI... 2 Apa itu CRMS?... 2 CRMS Feature Summary... 3 CRMS LOGIN...

More information

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS)

PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) PANDUAN PENGGUNA (SUPPLIER) MAINTAIN CERTIFICATES/SUPPLIER DETAILS SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: SUPPLY CHAIN MANAGEMENT (SCM) BAHAGIAN ICT PROCESS

More information

LAMPIRAN A PROGRAM FLOWSTONE

LAMPIRAN A PROGRAM FLOWSTONE LAMPIRAN A PROGRAM FLOWSTONE A-1 Tampilan GUI pada FlowStone A-2 Program Tambahan yang Dibuat Untuk Membaca Frekuensi A-3 Program Tambahan yang Dibuat Untuk Menyimpan Data A-4 LAMPIRAN B PROGRAM VISUAL

More information

Nilai Input (Peringkat Alternatif Fuzzy dan Crisp Terhadap Kriteria)

Nilai Input (Peringkat Alternatif Fuzzy dan Crisp Terhadap Kriteria) LAMPIRAN-A PENYELESAIAN DENGAN METODE FUZZY TOPSIS Secara umum, prosedur Fuzzy TOPSIS mengikuti langkah-langkah sebagai berikut: 1. Membuat matriks keputusan yang ternormalisasi, 2. Menentukan matriks

More information

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. SECTION B : 50 MARKS BAHAGIAN B : 50 MARKAH INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan berstruktur. Jawab

More information

LAMPIRAN A LISTING PROGRAM

LAMPIRAN A LISTING PROGRAM A-1 LAMPIRAN A LISTING PROGRAM FUNGSI public void StopWatchStart() stopwatch.reset(); stopwatch.start(); Cursor.Current = Cursors.WaitCursor; txtlog.text = ""; public void StopWatchStop(string Title) stopwatch.stop();

More information

Lookup Project. frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function:

Lookup Project. frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function: Lookup Project frmlookup (Name: object is a combo box, style 2); use 4 labels: 2 for phone, 2 for mail. MsgBox Function: Help About, in a Message Box lookup.vbp programmed by C.Gribble Page 2 Code for

More information

INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan.

INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan. SECTION B: 55 MARKS BAHAGIAN B: 55 MARKAH INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan. QUESTION 1

More information

'... '... '... Module created: unknown '... Proj finished: March 21, 2012 '... '...

'... '... '... Module created: unknown '... Proj finished: March 21, 2012 '... '... ThisWorkbook - 1 If g_bdebugmode Then '... Module created: unknown '... Proj finished: March 21, 2012 '************************* CLASS-LEVEL DECLARATIONS ************************** Option Explicit Option

More information

LAMPIRAN 1 PENGARUH KETERSEDIAAN KOLEKSI PERPUSTAKAAN TERHADAP MINAT BACA SISWA SMP NEGERI 30 MEDAN

LAMPIRAN 1 PENGARUH KETERSEDIAAN KOLEKSI PERPUSTAKAAN TERHADAP MINAT BACA SISWA SMP NEGERI 30 MEDAN LAMPIRAN 1 ANGKET PENELITIAN PENGARUH KETERSEDIAAN KOLEKSI PERPUSTAKAAN TERHADAP MINAT BACA SISWA SMP NEGERI 30 MEDAN Saya mengharapkan kesediaan Saudara untuk mengisi angket dalam rangka penelitian tetang

More information

COMBINING TABLES. Akademi Audit Negara. CAATs ASAS ACL / 1

COMBINING TABLES. Akademi Audit Negara. CAATs ASAS ACL / 1 COMBINING TABLES CAATs ASAS ACL / 1 OBJEKTIF MODUL Mempelajari kaedah menggabung dan menghubungkan dua atau lebih table bagi mencapai objektif Audit. Mempelajari kaedah menggunakan maklumat yang sedia

More information

PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES

PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES PANDUAN PENGGUNA (SUPPLIER) e-purchase ORDER FOR SERVICES SUPPLIER RELATIONSHIP MANAGEMENT SUPPLY CHAIN MANAGEMENT SYSTEM (SCMS) DISEDIAKAN OLEH: UNIT SUPPLY CHAIN MANAGEMENT (SCM) JABATAN SOURCING CONTROLLER

More information

Universitas Sumatera Utara

Universitas Sumatera Utara Option Explicit DefLng A-Z '--------------------------------------------------------------------------------------------- #Const Test = False '---------------------------------------------------------------------------------------------

More information

HARDWARE AND SOFTWARE CO-SIMULATION PLATFORM FOR CONVOLUTION OR CORRELATION BASED IMAGE PROCESSING ALGORITHMS SAYED OMID AYAT

HARDWARE AND SOFTWARE CO-SIMULATION PLATFORM FOR CONVOLUTION OR CORRELATION BASED IMAGE PROCESSING ALGORITHMS SAYED OMID AYAT HARDWARE AND SOFTWARE CO-SIMULATION PLATFORM FOR CONVOLUTION OR CORRELATION BASED IMAGE PROCESSING ALGORITHMS SAYED OMID AYAT UNIVERSITI TEKNOLOGI MALAYSIA HARDWARE AND SOFTWARE CO-SIMULATION PLATFORM

More information

WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY

WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY International Conference on Information Systems for Business Competitiveness (ICISBC 203) 372 WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY Siti Sa uda ) Qoriani Widayati

More information

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

More information

1. Name: 3. BEM Registration No.: Tel. No. :... Mobile Phone No. : :... Fax No. :...

1. Name: 3. BEM Registration No.: Tel. No. :... Mobile Phone No. : :... Fax No. :... FORM H REGISTRATION OF ENGINEERS ACT 1967 (REVISED 2015) APPLICATION FOR RENEWAL OF REGISTRATION FOR YEAR Regulation 20 of the Registration of Engineers Regulations 1990 (Revised 2015) A. APPLICATION FOR

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. Form Utama (Cover) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text;

More information

PERKHIDMATAN KREDIT DAN PERBANKAN PROSEDUR UNIT KOMPUTER. Proses Backup ( Windows) BPKP/KlOK-118 Bilangan Semakan : Q Tarikh :

PERKHIDMATAN KREDIT DAN PERBANKAN PROSEDUR UNIT KOMPUTER. Proses Backup ( Windows) BPKP/KlOK-118 Bilangan Semakan : Q Tarikh : PERKHDMATAN KREDT DAN PERBANKAN PROSEDUR UNT KOMPUTER Proses Backup ( Windows) BPKP/KlOK-118 Bilangan Semakan : Q Tarikh : 30.09.13 Disediakan oleh :- Disahkan oleh :- Pengurus P PERU BAHAN Ubahan Muka

More information

Creating a Dynamo with VBA Scripts

Creating a Dynamo with VBA Scripts Creating a Dynamo with VBA Scripts Creating a Dynamo with VBA 1 Table of Contents 1. CREATING A DYNAMO WITH VBA... 3 1.1 NAMING CONVENTIONS FOR DYNAMO OBJECTS...3 1.2 CREATING A DYNAMO...4 1.3 DESIGNING

More information

DAFTAR PUSTAKA. Bojic, Paul, 2008, Business Information System. Pearson Education Ltd., England

DAFTAR PUSTAKA. Bojic, Paul, 2008, Business Information System. Pearson Education Ltd., England DAFTAR PUSTAKA Bojic, Paul, 2008, Business Information System. Pearson Education Ltd., England Elib.unikom.ac.id, SQL Server, 27 April 2014. Jogiyanto. 2005. Analisis & Desain Sistem Informasi : Pendekatan

More information

PROGRAM BASCOM AVR. ' inisialisasi '

PROGRAM BASCOM AVR. ' inisialisasi ' PROGRAM BASCOM AVR '--------------------------------------- inisialisasi '----------------------- $prog &HFF, &HC4, &HD9, &H00 ' generated. Take care that the chip supports all fuse bytes. $regfile = "m8def.dat"

More information

B,8 PERKHIDMATAN KREDIT DAN PERBANKAN. Pemindahan Data PROSEDUR UNIT KOMPUTER. BPKP/KlOK-117 Bilangan Semakan : 0 Tarikh : PERUBAHAN.

B,8 PERKHIDMATAN KREDIT DAN PERBANKAN. Pemindahan Data PROSEDUR UNIT KOMPUTER. BPKP/KlOK-117 Bilangan Semakan : 0 Tarikh : PERUBAHAN. PROSEDUR UNIT KOMPUTER Pemindahan Data BPKP/KlOK-117 Bilangan Semakan : 0 Tarikh : 30.09.13 Disediakan oleh :- Disahkan oleh :- Ketua Unit PERUBAHAN Ubahan Muka surat Tarikh Keterangan Diluluskan B,8 8

More information

FIRST TIME LOGIN & SELF REGISTRATION USER GUIDE LOG MASUK KALI PERTAMA & PENDAFTARAN SENDIRI PANDUAN PENGGUNA

FIRST TIME LOGIN & SELF REGISTRATION USER GUIDE LOG MASUK KALI PERTAMA & PENDAFTARAN SENDIRI PANDUAN PENGGUNA FIRST TIME LOGIN & SELF REGISTRATION USER GUIDE LOG MASUK KALI PERTAMA & PENDAFTARAN SENDIRI PANDUAN PENGGUNA Getting Started Step by Step Guide to Supplier First Time Login and Self Registration Persediaan

More information

Contents Introduction Getting Started Visual Basic Form Configuration Entering the VB Code

Contents Introduction Getting Started Visual Basic Form Configuration Entering the VB Code Your comments and suggestions on the operation of this software are welcome. Please address them to: ICONICS 100 Foxborough Blvd. Foxborough, MA 02035 Tel: 508-543-8600 Fax: 508-543-1503 E-mail: support@iconics.com

More information

How to modify convert task to use variable value from source file in output file name

How to modify convert task to use variable value from source file in output file name Page 1 of 6 How to modify convert task to use variable value from source file in output file name The default SolidWorks convert task add-in does not have support for extracting variable values from the

More information

The Implementation of Alert System for LAN Network Monitoring Using the Dude Based

The Implementation of Alert System for LAN Network Monitoring Using the Dude Based IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS The Implementation of Alert System for LAN Network Monitoring Using the Dude Based Email To cite this article: E A Z Hamidi et

More information

Programming Concepts and Skills. Arrays continued and Functions

Programming Concepts and Skills. Arrays continued and Functions Programming Concepts and Skills Arrays continued and Functions Fixed-Size vs. Dynamic Arrays A fixed-size array has a limited number of spots you can place information in. Dim strcdrack(0 to 2) As String

More information

KAEDAH PENYUSUNAN PORTFOLIO

KAEDAH PENYUSUNAN PORTFOLIO KAEDAH PENYUSUNAN PORTFOLIO Borang Permohonan Pensijilan [(JPK/PPT/6/6-2014)] 2 Salinan Salinan Kad Pengenalan Notis Pendaftaran Calon dan Penugasan PP-PPT Surat Akuan Pengesahan Calon (Calon & PP-PPT)

More information

JABATAN PERKHIDMATAN AWAM MALAYSIA

JABATAN PERKHIDMATAN AWAM MALAYSIA LAMPIRAN B SUKATAN UJIAN KEMAHIRAN TAHAP PERTENGAHAN PEMPROSESAN PERKATAAN, LEMBARAN KERJA DAN PERSEMBAHAN BAGI KENAIKAN PANGKAT PEMBANTU SETIAUSAHA PEJABAT GRED N17 DAN GRED N22 KE SETIAUSAHA PEJABAT

More information

Nearby Search Indekos Based Android Using A Star (A*) Algorithm

Nearby Search Indekos Based Android Using A Star (A*) Algorithm Journal of Physics: Conference Series PAPER OPEN ACCESS Nearby Search Indekos Based Android Using A Star (A*) Algorithm To cite this article: B Siregar et al 2018 J. Phys.: Conf. Ser. 978 012084 View the

More information

variables programming statements

variables programming statements 1 VB PROGRAMMERS GUIDE LESSON 1 File: VbGuideL1.doc Date Started: May 24, 2002 Last Update: Dec 27, 2002 ISBN: 0-9730824-9-6 Version: 0.0 INTRODUCTION TO VB PROGRAMMING VB stands for Visual Basic. Visual

More information

INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan.

INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan. SECTION B: 55 MARKS BAHAGIAN B: 55 MARKAH INSTRUCTION: This section consists of TWO (2) questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan. Jawab SEMUA soalan. QUESTION 1

More information

M2U MANUAL PENGGUNA USER MANUAL M2UNHJ. 0 P a g e BAHAGIAN SIMPANAN DAN PENGELUARAN JABATAN KHIDMAT PENDEPOSIT DAN OPERASI LEMBAGA TABUNG HAJI

M2U MANUAL PENGGUNA USER MANUAL M2UNHJ. 0 P a g e BAHAGIAN SIMPANAN DAN PENGELUARAN JABATAN KHIDMAT PENDEPOSIT DAN OPERASI LEMBAGA TABUNG HAJI M2U MANUAL PENGGUNA USER MANUAL M2UNHJ 0 P a g e BAHAGIAN SIMPANAN DAN PENGELUARAN JABATAN KHIDMAT PENDEPOSIT DAN OPERASI LEMBAGA TABUNG HAJI KANDUNGAN (TABLE OF CONTENTS) BIL PERKARA HALAMAN 1 TERMA DAN

More information

PERU BAHAN PERKHIDMATAN KREDIT DAN PERBANKAN ARAHAN KERJA UNIT KOMPUTER. Tatacara Proses AGM03. BPKP/KJAK-104 Bilangan Semakan : 0 Tarikh :

PERU BAHAN PERKHIDMATAN KREDIT DAN PERBANKAN ARAHAN KERJA UNIT KOMPUTER. Tatacara Proses AGM03. BPKP/KJAK-104 Bilangan Semakan : 0 Tarikh : ARAHAN KERJA UNIT KOMPUTER Tatacara Proses AGM03 BPKP/KJAK-104 Bilangan Semakan : 0 Tarikh : 30.09.13 Disediakan oleh :- Disahkan oleh ;- Pengurus PERU BAHAN Ubahan Muka surat Tarikh Keterangan Diluluskan

More information

NHS e-referral Service

NHS e-referral Service Extracting Advice and Guidance data Published July 2017 Copyright 2016 Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body created by statute,

More information

Lampiran 2 MASTER TABEL

Lampiran 2 MASTER TABEL 64 Lampiran 2 MASTER TABEL No. No. Responden Umur Pendidikan Pekerjaan Paritas Kanker 1 427363 35 S1 PNS 4 Tidak 2 504024 36 SMA IRT 4 Tidak 3 500316 35 SMA IRT 5 Tidak 4 504014 35 SMA PNS 1 Tidak 5 447158

More information

YAYASAN KUOK BERHAD Arahan Permohonan

YAYASAN KUOK BERHAD Arahan Permohonan YAYASAN KUOK BERHAD Arahan Permohonan (Klik sini untuk Application Instructions dalam Bahasa Inggeris) 1. Pendaftaran Akaun (Pemohon Baru) 2. Log Masuk 3. Permohonan Atas Talian & Penghantaran 4. Penghantaran

More information

Introduction to Microsoft Message Queuing Services (MSMQ)

Introduction to Microsoft Message Queuing Services (MSMQ) 3 Introduction to Microsoft Message Queuing Services (MSMQ) Distributed applications run on two or more computers. They communicate with one another by passing data over machine boundaries through appropriate

More information

INFORMATION SYSTEM OF SCHEDULE AND CHAMPION S DATA OF BIRD CONTEST IN BOYOLALI WEBSITE BASED

INFORMATION SYSTEM OF SCHEDULE AND CHAMPION S DATA OF BIRD CONTEST IN BOYOLALI WEBSITE BASED INFORMATION SYSTEM OF SCHEDULE AND CHAMPION S DATA OF BIRD CONTEST IN BOYOLALI WEBSITE BASED Arranged as requisite to complete scholar program in Informatics Enginering of Communication and Informatics

More information

belajar html5 158E7F2D743EA866244C3EE391F064DC Belajar Html5 1 / 6

belajar html5 158E7F2D743EA866244C3EE391F064DC Belajar Html5 1 / 6 Belajar Html5 1 / 6 2 / 6 3 / 6 Belajar Html5 HTML specifications HTML5.2 https://www.w3.org/tr/html52/ HTML5.1 2nd Edition https://www.w3.org/tr/html51/ HTML AAM https://www.w3.org/tr/html-aam-1.0/ W3C

More information

Revisions: jee Initial jee SW Version 1.1 now includes the leave type Other

Revisions: jee Initial jee SW Version 1.1 now includes the leave type Other Memorandum To: From: File John Effland Date: 2005-03-10 Revisions: 2005-03-10 jee Initial 2006-02-24 jee SW Version 1.1 now includes the leave type Other Subject: Leave Calendar Program Architecture and

More information

Remainder Cordial Labeling of Graphs

Remainder Cordial Labeling of Graphs Journal of Algorithms and Computation journal homepage: http://jac.ut.ac.ir Remainder Cordial Labeling of Graphs R. Ponraj 1, K. Annathurai and R. Kala 3 1 Department of Mathematics, Sri Paramakalyani

More information

CARA-CARA UNTUK MEMBUAT POSTER MELALUI PERISIAN PHOTOSHOP. Untuk membuat poster sediakan beberapa bahan seperti berikut:

CARA-CARA UNTUK MEMBUAT POSTER MELALUI PERISIAN PHOTOSHOP. Untuk membuat poster sediakan beberapa bahan seperti berikut: CARA-CARA UNTUK MEMBUAT POSTER MELALUI PERISIAN PHOTOSHOP Untuk membuat poster sediakan beberapa bahan seperti berikut: Pastikan anda telah memindahkan gambar-gambar yang di ambil ke dalam komputer Pastikan

More information

ICT SPM 2011 SUGGESTION ANSWER. Section A

ICT SPM 2011 SUGGESTION ANSWER. Section A ICT SPM 2011 SUGGESTION ANSWER Section A NO SOALAN 1 i Computer ethic / ethic ii Computer law / law 2 ii 4 iv 2 3 Output 4 True 5 Gigabyte / GB 6 i Operating ii Application 7 B / D D / B 8 B 9 A 10 i Radio

More information

1. Menu Utama. Private Sub abt_click() frmabout.show End Sub. Private Sub dafabsenhar_click() frmdafabsensihar.show End Sub

1. Menu Utama. Private Sub abt_click() frmabout.show End Sub. Private Sub dafabsenhar_click() frmdafabsensihar.show End Sub 1. Menu Utama Private Sub abt_click() frmabout.show Private Sub dafabsenhar_click() frmdafabsensihar.show Private Sub dafpeg_click() frmdafpegawai.show Private Sub dafuser_click() frmdaftaruser.show Private

More information