Search results

  1. C

    Create QR code in access report

    If I change the above code to the below one, no error is detected under this function. Assume "1" means bitmap file However, error appear when returning to this
  2. C

    Create QR code in access report

    Error "variable not defined" at CreateBitmapPicture function With Pic .Size = Len(Pic) ' Length of structure .Type = vbPicTypeBitmap ' Type of Picture (bitmap) .hBmp = hBmp ' Handle to bitmap .hPal = hPal ' Handle to palette (may be null) End With
  3. C

    How to write shortcut menu ? (See attachement)

    Presently, I have a sub function to create shortcut menu for a table as shown below Can anyone suggest how to add on further extra shortcut menus as shown in the attachment below ?
  4. C

    Remove MS Access startup screen

    I have few forms and one form has been chosen to set as startup. During the execution of the accde file, the MS Access has prompted the startup screen. Can anyone give some thoughts how to remove it . I have shown it in attachment for better understanding. TQ
  5. C

    Remove MS Access startup screen

    Remove MS Access startup I have few forms and one form has been chosen to set as startup. During the execution of the accde file, the MS Access has prompted the startup screen. Can anyone give some thoughts how to remove it . I have shown it in attachment for better understanding. TQ
  6. C

    Date Type Default Value : =Date() Error

    I have export the whole objects into the a ACCDB file and it works now as Date(). Thanks for everyone help.
  7. C

    Date Type Default Value : =Date() Error

    Error in loading the DAO dll file under the MS Access 2016
  8. C

    Date Type Default Value : =Date() Error

    Tested that Date() works fine under the MS Access 2000 and 2003, however, error displayed u8nder the MS Access 2016, 64 bits
  9. C

    Date Type Default Value : =Date() Error

    Can anyone suggest how to fix the error inside the attachment ?
  10. C

    Code works when stepping but not when running

    I have imported all forms into accdb environment. Only 10% of forms can't work. However, those forms work perfectly if through debugging. I don't understand why it behave like this?
  11. C

    Code works when stepping but not when running

    It work perfectly when in MDB when execute from main screen till the screen you are looking for. However, after migrating to Access 2017 (64 bits) and Windows 2012 Server (64 bits), a lot of problem errors seem like appear. Anyone know why it behave abnormally at the highlighted code in red...
  12. C

    What is the msoControlButton ID to create "Filter For" or "Text Filter -> Equal"

    Re: What is the msoControlButton ID to create "Filter For" or "Text Filter -> Equal" Don't get u. Can you please explain with examples?
  13. C

    What is the msoControlButton ID to create "Filter For" or "Text Filter -> Equal"

    What is the msoControlButton ID to create "Filter For" or "Text Filter -> Equal" As subject, is anyone know what is the msoControlButton ?
  14. C

    CopyMemory API Crash At Windows 2012 Server

    I manage to fix some crash, however, the result is not something I am looking for. You can click the attachment below to understand further. Can anyone share with me how to fix the problems ?
  15. C

    CopyMemory API Crash At Windows 2012 Server

    I have amended my codes as written on the above, however, the program still crash. Do I need to do anything on WTSQuerySessionInformation ?
  16. C

    CopyMemory API Crash At Windows 2012 Server

    In Windows 2003 Server, I am using the Ms Access 2000 - 32 bits In Windows 2012 Server, I am using the Ms Access 2016 - 64 bits
  17. C

    CopyMemory API Crash At Windows 2012 Server

    Program show crash after migrated from Windows 2003 Server to Windows 2012 Server and crash happen at CopyMemory Can anyone help to modify the code ?
  18. C

    How to declare an argument to receive a SubForm object

    Is the below RED color highlighted variable TYPE is correctly declared ? Public Sub Form_Load FunctionA subFormName End Public Sub FunctionA(ByVal frm as Accesss.Form) msgbox frm.caption End
  19. C

    How To Remove SubForm Title Bar ?

    How to remove subform title bar as shown in attachment below ?
  20. C

    Me.Requery should "blinking" on the form

    I have set Timer.Interval=1000 on a form and for every 1 second , the form need to refresh the a column called TimerSecond for user to see the count down data. To achieve the goal, I have a method "Me.Refresh" under the Form_Timer event. However, the screen has shown great "blinking" and it is...
Back
Top Bottom