Solved Caption selected, but image seems to default (1 Viewer)

jdraw

Super Moderator
Staff member
Local time
Yesterday, 19:45
Joined
Jan 23, 2006
Messages
15,512
Using MS Access 365 blank form, I created a form with a button. Added caption "LOGIN", but I have an image.
2025-03-24 14_40_54-Access - Button-No caption just an unwanted image.png
 
I solved this issue for this instance via vba
Code:
Private Sub Form_Load()
    Forms!frmLoginwithcount!btnLogin.Picture = ""
End Sub

But still don't understand the behaviour.
 
As you know buttons can have both text and images. In your screenshot, you have an image selected and No picture caption selected so will only see an image.
If you only want text, set the image property to (None). If you want both, choose whether the caption should be arranged on the left or right.
Is the wording on the property sheet confusing? In my opinion, yes.
 
Thanks Colin. Yes the wording on the property sheet is confusing. I could see the text when I clicked the button, but in form view all I saw was the image.
 

Users who are viewing this thread

Back
Top Bottom