Search results

  1. Babycat

    Solved Need helps with image control

    I have tested, it works great.... Thank you very much!
  2. Babycat

    Solved Need helps with image control

    Yes, That is good approach work. I will try it. However, I am really afraid of overlap controls, it might causes flickering, form crash ( i have read it somewhere...), In fact, my form is currrently crashing unpredictably...
  3. Babycat

    Solved Need helps with image control

    Hi everyone I have product table and form to display product detail together with product's images. I intend to copy all product images to a folder path: CurrentProject.Path & "\DAT\Photos\" and names them same at productID, for example: The ProductID=1 will have Image names "1.jpg" It not set...
  4. Babycat

    Access Office 365 64 Bit Random Crashes whilst 32 Bit All OK

    Actually my VBA code is pretty simple, no special Reference lib. There is only one compiler switch #If VBA7 Then Public Declare PtrSafe Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) #Else Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long) #End If Until now, I...
  5. Babycat

    Access Office 365 64 Bit Random Crashes whilst 32 Bit All OK

    Thank you, Sir. For me, i dont know which version (32 or 64bits) customer using, since I distribute accde file so it is likely I have to have both 32 and 64 bit available...
  6. Babycat

    Access Office 365 64 Bit Random Crashes whilst 32 Bit All OK

    For those projects have been mixed design using both O365 32bits and 64bits. Can I create a blank project in 64bit then copy whole things from the mixed one? Does that help to eliminate the potential issues?
  7. Babycat

    Access Office 365 64 Bit Random Crashes whilst 32 Bit All OK

    Oh God, I did not know that. In fact, I have developed most form, report, queries and VBA code on O365 64 bit. After crashing occurs oftenly, i try to search and ppl saying that 32 bits version is better. Therefore, I install 32 bits version which is currently using. However, there were 2-3...
  8. Babycat

    Access Office 365 64 Bit Random Crashes whilst 32 Bit All OK

    I have a project on Access 365 (32 bit) which there is one form crashing most of time when I go to form design or typing code in VBA editor, confirmed it also happens on O365 64 bits... Will try to narrow down. It is really anoying. My currrent solution is go to virtual machine and work with...
  9. Babycat

    Newbie - Help to review and comment my Access project

    Cbx_F_MaVT = Nz(Forms!MainFrm.SubFrmTable.Form!Txt_Qinfo_ProductID, 0) ' MAVT_Criteria_Str = "P.ProductID = " & Cbx_F_MaVT My concern is: whenever Txt_Qinfo_ProductID is null, it reassigns to productID 0, what if my db has productID 0? Then I talk to myself: productID is autonumber...
  10. Babycat

    Newbie - Help to review and comment my Access project

    Dear CJ_London Thank you for spending your valuable time reviewing my code. The working principle is: There are 3 parts in main form: + Filter (on middle top) to allocate exact product that user want to find (I think about list of 1000 products, it hard to manually allocate..) +...
  11. Babycat

    Newbie - Help to review and comment my Access project

    Dear CJ_London, Sorry for inconvenience. I have fixed compiling error by removing undeclared function/variable, I also replaced the attachment in 1st post As mentioned, I am newbie so it is poor design....sorry about that In fact, I dont really know what the role of database relationship is...
  12. Babycat

    Newbie - Help to review and comment my Access project

    Dear CJ_London I have filter elements so that en-users can seek exactly what they want, however they can also reset the filter, in that case, all record should be shown, likely you remove all filter excel sheet.
  13. Babycat

    Newbie - Help to review and comment my Access project

    Hi, The first file was exceeded file size limit, I have compress and attached it again
  14. Babycat

    Newbie - Help to review and comment my Access project

    Hi Everyone @Edit: Attached the db file I am actually an electronic hardware engineer. I dont have much experience in IT field. I have been learning Access since 2020, Anyway, my fisrt access program was sent to my friend last year (at that time, I did not even know to compile and split db)...
  15. Babycat

    All records in table disappeared

    I silently checked my login-form. Somehow, it bounds to tbl_User accidentally, it could be my intention in the past. But textboxes dont bound to any field. Therefore, I dont have "delete all" record issue. But for safety, I have removed bounded table from the form. :)
  16. Babycat

    How to make popup message or notification on shared database

    I have found this thread after mine posted... https://www.access-programmers.co.uk/forums/threads/send-message-to-specific-user-in-access-multi-user-based-system.314141/ Downloaded arnelgp example code, if i am not wrong, it only can check the new msg at the momment of form opening. So, what if...
  17. Babycat

    How to make popup message or notification on shared database

    Hi everyone, I am designing an access program that shares BE for multi-users on LAN... I currently dont know how to push a message to specific user. For example, an inventory user has just made a goods delivery request via his FE into system. At this time, the FE of accountant-user should...
  18. Babycat

    SQL server to new user

    Thank you, It is clear to me. so SQL server with Access is helpful to by pass Access limitation of of 2G BE size, SQL server might handles conlision better than Access... But at the end, Access BE and SQL server is not a good choice to go "online app". Thanks again for your clarification
  19. Babycat

    SQL server to new user

    Hi everybody I am not a database guy, my first Access program was built and delivered a year ago, I had learnt everything myself from our forum and internet. Until now, I can completely build an small access program for single user/PC. I am learning to share the BE on network drive and mutiple...
  20. Babycat

    Solved Need to check if there is data before requery form?

    Yeah, I saw your update, as statistical theory: The larger sample size is always give the better result. Thank very much for your efforts. Unfortunately, yes, update every second. Let me remove the "second"
Back
Top Bottom