Search results

  1. K

    Solved DoCmd.OpenForm Does Nothing

    To avoid that issue please refer to attachment.
  2. K

    NUMBER TO WORD IN PESO - EXCEL

    Maraming salamat sir.
  3. K

    NUMBER TO WORD IN PESO - EXCEL

    Attached is my sample excel file. Currently as per file i've attached: showing " Twenty Four Pesos Only And Ten /100" I need to show like this " Twenty-four and 10/100 pesos" Thank you so much for your support.
  4. K

    update allocation alltogether

    check the file which i just attached lately.
  5. K

    update allocation alltogether

    hope you can open this. Yet, i recommend Mr. Arnelgp file.
  6. K

    update allocation alltogether

    check this form i did some : frmPCONotPurchased https://drive.google.com/file/d/16j5LtJoGW6O2xzX4OIMQNOi10_gfiCL3/view?usp=share_link
  7. K

    update allocation alltogether

    Try this: Private Sub cmdUpdate_Click() Dim db As DAO.Database Dim rst As DAO.Recordset Set db = CurrentDb Set rst = db.OpenRecordset("Select Allocation from StockList where StockNumber =" & Me.StockNumber ) With rst .Edit !Allocation = !Allocation+ Nz(Me.ReqQty, 0) .Update End...
  8. K

    Populate table data include year months start and end

    You're Dashboard looks elegant sir.
  9. K

    How i can i save the captured image with specific location folder?

    Yung sample mo sir na try ko pero pag next process hindi na mag appear ang webcam
  10. K

    How i can i save the captured image with specific location folder?

    salamat sir. Pinahirapan ko pa sarili ko ito nalang gamitin ko na process.. maraming salamat sir
  11. K

    How i can i save the captured image with specific location folder?

    This is how the process goes. 1. First i put that webcam utility in program files 2. Next i have button to execute that utility files using below code: Private Sub cmdCapture_Click() Dim stAppName As String stAppName = "C:\Program Files\WebCam Utility\WebCam.exe" Call Shell(stAppName, 1) End...
  12. K

    How i can i save the captured image with specific location folder?

    I put that utility folder in C:\Program Files\ and using the attached form webcam button to call the utility
  13. K

    How i can i save the captured image with specific location folder?

    The webcam button of this form will call that webcam utility. https://www.access-programmers.co.uk/forums/threads/how-i-can-i-save-the-captured-image-with-specific-location-folder.326321/post-1861814
  14. K

    How i can i save the captured image with specific location folder?

    Attached is the web utility which i put in C drive. and i use button to call this utility. https://drive.google.com/file/d/1f_f5l6Visl4dMka0h9I-fHN2wyLV-c1z/view?usp=share_link
  15. K

    How i can i save the captured image with specific location folder?

    And this is my form to manage those concern and only the issue is the webcam after capture the image i need to save to particular folder location
  16. K

    How i can i save the captured image with specific location folder?

    Have a good day to all Master. 1. I have textbox which autofill after selecting the image from E:\Residents Images\My Pic.jpg = No Issue with this process and i used below code to browse the images: Private Sub Browse_Click() Dim F As Object Dim strfile As String Dim strFolder As String...
  17. K

    Solved BLANK SUBFORM

    Ang layo nang pagkaunawa ko sa issue... Yung ginawa mo pala ng module sir, hindi ko alam kung paano gamitin. try ko duon sa ginawa mo na deped caraga nalito ako. pasensya na sir for being spoon feed.
Back
Top Bottom