I'm using this code to maximize the Microsoft Access window:
Code:
    cn = "OMain"
    wn = "Microsoft Access"
    Dim w As Long
    
    w = FindWindow(ByVal cn, ByVal wn)
    ShowWindow w, SW_SHOWMAXIMIZED
It's working fine.

Now I want (if can be done) to hide microsoft access's title bar.

Can we do that?