Full Version: Help with customised form !
UtterAccess Discussion Forums > Microsoft® Access > Access Forms
josephbupe
Hello everyone.

Two questions, please.

1. How do you people create a form in access so that it looks like the one in the sample attached?

2. Where do i go to put a caption so that it appears in the top left conner of the main database window?

I will appreciate.
JayNoelOlimpo
Hi;

1. Set the Border Style : None ...

2. goto Tools : Startup : Application Title : myTitleHere ...

or do it via a code ...

CODE
Function SetApplicationTitle(ByVal MyTitle As String)
    If SetStartupProperty("AppTitle", dbText, MyTitle) Then
        Application.RefreshTitleBar
    Else
        MsgBox "ERROR: Could not set Application Title"
    End If
End Function


Call SetApplicationTitle("Your Title goes here")

HTH.
josephbupe
I thank you so much.

Stay well.
JayNoelOlimpo
GOOD LUCK! thumbup.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.