Search results

  1. vhung

    Solved Form: Colored Header, Footer, Detail, Alternate, Font

    Thanks sir... Color choice and mix is possible according to your idea on colorful. This maybe done if need to set focus on specific field or item.
  2. vhung

    Solved Form: Colored Header, Footer, Detail, Alternate, Font

    Thank you sir... The color on details and alternate could be change as you select on combo or on palette button. Any color choice is applicable. On every field, color is changeable only after change of choice, but constantly on close back to normal view.
  3. vhung

    Solved Form: Colored Header, Footer, Detail, Alternate, Font

    Normal acForm View
  4. vhung

    Solved Form: Colored Header, Footer, Detail, Alternate, Font

    Good Day... May this post annoying to AWF but all I need to know if this Design of acForm is accepted or not. Alternatively, maybe there is worse than this. \\: See attached acForm
  5. vhung

    Mathematical Problem

    Good Day... What makes difference with your "net share cost" and "net share quantity"? -difference between "transaction price" and "transsaction comm"? Hence: there should be, Transaction Net Profit = (Transaction Total - Total Cost)
  6. vhung

    FileSystemObject error when the file names has special letters

    Could this be? if InternationalCharacters = "a" then: InternationalCharacters = Replace(InternationalCharacters, "a", "[aàáâãäå]")
  7. vhung

    Solved open form with last record

    Or by using cmdOpenForm button then insert; DoCmd.OpenForm "FrmEventNewTrackPart": DoCmd.GoToRecord , , acLast MsgBox "FormLoaded goto LastRecord... " _ & vbCrLf & "ID: " & Forms![FrmEventNewTrackPart]![ID] & "= " _ & Forms![FrmEventNewTrackPart]![ranyfield], vbInformation
  8. vhung

    Solved open form with last record

    Could be applied using "Button" after open a form DoCmd.OpenForm "FrmEventNewTrackPart" then set on "Event Procedure" during "Form Load" that if last record is required always to viewed. DoCmd.GoToRecord , , acLast
  9. vhung

    Solved open form with last record

    Try: DoCmd.GoToRecord , , acLast
  10. vhung

    Solved Confirm LAN connection.

    Good day... Checking Internet Connection Type using “vba” on “msaccess” is so wonderful. NAME: Check Connection Type ' AUTHOR: Mark Randol ' DATE : 4/29/2015 "modified by arnelgp for VBA use." I used: If chkConnectionType = "wi-fi" Then MsgBox "Your Internet Connection Type is {Wi-Fi}."...
  11. vhung

    delete duplicates from table

    Good day to you cpampas Allow me to join this discussion though it is too late. Please see the attachment if it will work for you or not.
  12. vhung

    Constant hack attempts on AWF

    Hacker names were trace down. Therefore, they are human. Maybe they set an automated program that runs over the Internet. Alternatively, bots run automatically, while others only execute commands when they receive specific input.
  13. vhung

    Solved Accdb: "WebBrowser" and "AcroPDF" (PDF viewer)

    Yes sir, I almost forgot how wide AWF is. I fully understood it, besides I never thought that those posts of mine be evaluated according to how it was done. I need to know more the correct rules on posting helps and questions on AWF. Then I am glad that there is someone came interested to the...
  14. vhung

    Solved Accdb: "WebBrowser" and "AcroPDF" (PDF viewer)

    The thing I did on post is that I often use phrases not full sentences to a paragraph. I may improve the sentence construction but it would vary as quickly needed solutions to the problems I encountered. Isladogs said: “However although I often read your posts several times, I'm often left...
  15. vhung

    Solved Accdb: "WebBrowser" and "AcroPDF" (PDF viewer)

    Wow, I love it, Maybe I could still find some other mode of using it Work fine now, editing MSWord, PPT and Excel See the difference
  16. vhung

    Solved Accdb: "WebBrowser" and "AcroPDF" (PDF viewer)

    Arnel, I will make use of your office viewer Add it to my project, because my office viewer seems on trouble. The file loading is faster than my old one.
  17. vhung

    Solved Accdb: "WebBrowser" and "AcroPDF" (PDF viewer)

    That is true “arnel”; it is a mode of “excel and ppt” that if have to open in some instances need to save or proceed to open and may not be on “msword”. However, on pdf is another thing to discuss where else nothing to save when it has to be open. Your office viewer sample is nice “arnel”...
  18. vhung

    Modules to Hide and Show Ribbon & Backup database BackEnd

    Good day... If run time errror 424 "object required" prompted. Answer: The problem isn't your code, it's that the Visual Basic editor does not recognize your form. In fact, the Visual Basic editor will not recognize your form until you've invoked the Code Builder (for your form or any object...
  19. vhung

    Solved Accdb: "WebBrowser" and "AcroPDF" (PDF viewer)

    Good day... It is not about "language issues" But you need to do is focus on the problem Let me clear it to you that what problem I have before is about “WebBrowser“ In addition, the problem is on the syntax when command executed, then later I found it corrected. Meaning PDF could be open to...
  20. vhung

    Modules to Hide and Show Ribbon & Backup database BackEnd

    use this code to open ribbon DoCmd.ShowToolbar "Ribbon", acToolbarYes Application.SetOption "Show Status Bar", True codes to close... DoCmd.ShowToolbar "Ribbon", acToolbarNo
Back
Top Bottom