Recent content by Akai90

  1. A

    Listbox selected double click update value

    when i double click the listbox nothing happen... i want.. when i double click selected data in list box.. some value will change to this.. .Edit !KodInstitusi = " " !JenisInstitusi = " " !Alamat = " " !Institusi = " " !status = "BERHENTI" .Update
  2. A

    Listbox selected double click update value

    hai, i got some issue with listbox double click my code here Private Sub listgurufilterips_DblClick(Cancel As Integer) Dim MyDB As Database, MyTable As Recordset Dim JWBCONFIRM As String Set MyDB = DBEngine.Workspaces(0).Databases(0) Set MyTable = MyDB.OpenRecordset("TGuruIPS"...
  3. A

    Solved input mask report and print

    its wroking tq...
  4. A

    Solved input mask report and print

    it show like this
  5. A

    Solved input mask report and print

    i have 2 value to show on single textbox if null 1. PsPortGuru 2. NoKP i using query to combine 2 value if one of that null my query is compass: Nz([PsPortGuru];[NoKP]) on report i use "compass" now my problem is for NoKP i want to show input mask 999999\-99\-9999;;_ by using this...
  6. A

    Solved auto number id format on vba

    hi again Private Sub NoPermit_GotFocus() NoPermit = "XXXX/xxx/xxx/xxx." & tahundaftar & "/" & noidtext & "" End Sub above my code noidtext = this item i use format "0000" on noidtext on left i want using 0003 how can i get 0003 thaks
  7. A

    Print page footer only on the first page

    Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer) Me.PageFooterSection.Visible = (Me.[Page] = 1) End Sub problem solved remove above code use only Private Sub PageFooterSection_Print(Cancel As Integer, PrintCount As Integer) Me.PageFooterSection.Visible =...
  8. A

    Print page footer only on the first page

    for print preview it work... when i hit print button no value on "PageFooterSection" print
  9. A

    Print page footer only on the first page

    hi, i have some text in footer section but i want to show only page 1 and hide on page 2 on print preview it got like what i want but when print the report on footer text not show anything.. the code i use Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)...
  10. A

    hide table design when no value

    hi in report, how to hide table gridlines if no value check the picture thanks
  11. A

    hide text if field is null

    hai this is my current code for report access ="RM " & Format([YURANPROG1];"Standard") & " " & [yrnsujek1] &"" output : RM 50.00 / subjek yuranprog1 = 50.00 subjek = / subjek how can i hide "RM" if yuranprog1 and yrnsujek1 is empty or null on report thanks
  12. A

    Solved replace null field to another textbox value

    PROBLEM SOLVED BY USING SQL comkp: Nz([NOKP];[PSPORT])
  13. A

    Solved replace null field to another textbox value

    ="Ini adalah memperakui bahawa <b>" & [namapp] & " ( " & Nz([NOKP], [PSPORT]) & " )</b> telah disertakan." GOT SYNTAX ERROR
  14. A

    Solved replace null field to another textbox value

    ="Ini adalah memperakui bahawa <b>" & [namapp] & " ( " & [NOKP] & " )</b> telah " above is my current code. is there another where if i want replace "NOKP" with another fields "PSPORT" if "NOKP" is null hope you understand
  15. A

    Solved MS Access print form instead of report

    already try this code but.. it will direct print the report. i want open the print preview first to check all data is correct.
Back
Top Bottom