Search results

  1. vhung

    Protection of application codes

    Correct, compile error is necessary, it is better to use Accde file, safer for any codes modification by anyone.
  2. vhung

    Protection of application codes

    Good day... Accde could be fine, seems pro-mode, only you need to debug-compile codes error.
  3. vhung

    Protection of application codes

    Good day... Locked your MVBA codes (tools: Project properties) with password is the quick way to protect the MSAccess program codes.
  4. vhung

    WebBrowser Field update

    Good day Try to open your folder on specific location (Example, folder on d:drive then click D: then on Drive Tools select details view)
  5. vhung

    "invisible" box on form in layout view

    This is a very rare problem; but when I open the accdb attached file on msaccess2013, there is no dotted red line square on form, seems normal/ plain view... why?
  6. vhung

    WebBrowser Field update

    Your folder view is on large icon; maybe try it also on details view, for easy folder control (on click and code path use)
  7. vhung

    "invisible" box on form in layout view

    That maybe, share your actual form as attach file to have a full view of your form. Let others see it... share accdb file with that form
  8. vhung

    Solved User Permission Control

    Quite difficult; If some ways do… 1. Create a Form for user registration where you can edit user details 2. Log-In Form On “Form” a combo select for username is been created, The User ID number is undetermined to call for user name, Rather type a name or select on combo the registered user...
  9. vhung

    Copy data from one table to another table (automatically using)

    It is okay, On process using AcForm for commands, The data is stored on table request and recruitment.
  10. vhung

    Copy data from one table to another table (automatically using)

    Good Day... This could be: by Arnel "you add Autonumber (Req_ID) field in Request table." "Codes etheir way" Could be on Form: REQUEST Forms![Form: RECRUITMENT]![Req_Number] = [Req_Number] Could be on Form: RECRUITMENT a subform [Req_Number] = Forms![Form: REQUEST TABLE]![Req_Number]
  11. vhung

    how to convert 0.475 to minutes as 28 mnts.

    Probably; 0.475*60 = 28.5
  12. vhung

    execution of this application has stopped due to a run-time error

    This sample is using loop... If Me.listObjects.Column(0) = "table" Then DoCmd.NavigateTo "acnavigationcategoryobjecttype", "acnavigationgrouptables" End If Also, could be OnCurrent DoCmd.NavigateTo "acnavigationcategoryobjecttype", "acnavigationgrouptables"
  13. vhung

    Which Sports do you like the most?

    Basketball is the game; Last 2018 Christmas Basketball League Civic Division Our Team got the Finals Championship;
  14. vhung

    Solved Display text field on Main Form after text entered on SubForm

    Right Arnel, the Else: should be = True otherwise the Else: has no function at all.
  15. vhung

    call subform validation from main form

    Nice "Parameter TagCharacter (String):" to "Validate Form controls are not null or missing"
  16. vhung

    Control a external program

    Good day... Nice attempt, SendKeys "{PGDN}{PGDN}" is enough for scroll down speed. Button: SendKeys "{PGUP}" is for 1 step, could be up and down fast scroll. However, if you have to open a PDF and scroll to the last page, Rather use the pdf header, number page box. See...
  17. vhung

    Insert 2 navigation control on top at same form

    Good day... There are several design for navigation form, and each choice would matter. See attached picz... This is cute and simple design in which you could add your favorite forms. On select, it would open a form and on click, "Close" button exit an open form.
  18. vhung

    Insert 2 navigation control on top at same form

    Nice, Horizontal Tabs, 2 Levels
  19. vhung

    Form - Select a certain entry

    racdata: "Is there a way to only display the Welding Tools to select the correct one.," On your Table, there should be a field, which has common name "Welding Tools" by this on select, the possible result is list of "Welding Tools". Hence "on Filter"
  20. vhung

    Solved Allow VBA edit even acForm menus is disabled.

    I change this command "DoCmd.OpenModule "Module1" 'replace with module that is present in your db" Into: Application.VBE.MainWindow.Visible = True Because the vbe open is password protected then use the CtrlG to open submacro Autokeys "^g" It's all done... I also add on a combo select =...
Back
Top Bottom