Search results

  1. vhung

    Solved Form: Objects Navigation (see speakers_86)

    Not exactly, because the result of Left(tdf.Name, 4) is the count of Local tables and Linked Tables minus "Msys"
  2. vhung

    Solved Form: Objects Navigation (see speakers_86)

    Something wrong with this code for query, total does not match the actual number of Queries Dim qdf As DAO.QueryDef Dim obj As Object Dim tdf As DAO.TableDef Dim i As Long i = 0 Debug.Print CurrentDb.TableDefs.Count For Each tdf In CurrentDb.TableDefs If Not...
  3. vhung

    Solved Form: Objects Navigation (see speakers_86)

    Ive been using different approach for objects navigation, but this one on current is unique. I made little modification for (open/close, max/min), looks like something i missed. My idea is to count the number of tables on_click "Tables" button, as table names shown on the list, i wish to...
  4. vhung

    Solved Accdb: URL History Explorer

    Most people who made comments, does not know how to help. >better have a solution oriented comments not finding errors of what has done improvement >i made a solution to my post, beacuse i continued to search ideas on AWF from present and previous posts >But Isaac has made his clue for me, what...
  5. vhung

    Spell Checker

    Nice, i like this, useful one. DoCmd.RunCommand acCmdSpelling
  6. vhung

    VBA to open file dialog and store path in text box

    Thanks for this code; I make use of it... for file path name Dim f As Object Dim strFile As String Dim strFolder As String Dim varItem As Variant Set f = Application.FileDialog(1) f.AllowMultiSelect = False If f.show Then For Each varItem In f.SelectedItems strFile...
  7. vhung

    Solved Access: Form "my Number Puzzle" (See MajP)

    MajP, post: Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) Wow it works, i'm done. Thank you very much.
  8. vhung

    Solved Access: Form "my Number Puzzle" (See MajP)

    [/CODE] Nice; i'll try this code; Thanks MajP
  9. vhung

    Solved Access: Form "my Number Puzzle" (See MajP)

    I love to play the Number Puzzle. This game is somewhat short term memory and past solving. It needs quick series thinking. Ive' done someways to make it possible. I only use click command through the shuffle numbers, using textbox, 1 to 16. My look out is how to make it possible using arrows...
  10. vhung

    mutual disrespect

    Doc is it possible if through this lines of sentence like "wtf" then if i click the Post reply button, simply there would be a prompt note saying that sample message "Sorry your message is unabled to process, please avoid using disrespectful terminology." >or any other way which answer this...
  11. vhung

    Page Break Not Working

  12. vhung

    me.form.field.value =

    Good Day >rather call a form with that desired fields/row=ID, to hit the target fields for fill-up/update
  13. vhung

    mutual disrespect

    Good day >thus AWF has set standard on forum behaviour >how could we judge that my post or from any member is not applicable to this forum >if this forum made for msaccess and other related talks on questions and answers then is mutual respect observe by new and old members >or AWF has to be...
  14. vhung

    print a crystal report filtered to a data row that is on a form

    good day >: crystal report is outside msaccess, but data on actbl/ link check your crystal reports design then set the parameters as you set on your form <: i never tried using codes on crystal, but rather set the parameter as you need to show on reports
  15. vhung

    Solved Accdb: URL History Explorer

    Thanks Isaac. "research where Windows 10 stores recent files, and use that folder location as a source to list files on screen, if desired. Start with: C:\Users\Username\Recent For websites, you'll probably have to find out where the users' browsers (potentially any - chrome, i.e., etc)...
  16. vhung

    Solved Accdb: URL History Explorer

    >how to begin with this project? (find source) >locator of viewed file, other computer viewed and online https... >make a split form, upload source list >it works no much codes used
  17. vhung

    Little of Me

    Top poster of the month >just today
  18. vhung

    Solved Accdb: Calculator (trial)

    >just try make calculator on acform >excute some math operation, where answer display on table
  19. vhung

    Accdb: Keyboard (trial)

    >applying few command to achieve >for typing (start lesson) >generate also word list (might add meaning as dictionary) >CAPS/ no
Back
Top Bottom