please help me

kurdi

New member
Local time
Today, 12:38
Joined
Oct 16, 2022
Messages
15
I want to delete all the things I wrote directly when searching if you find my name or not so I can write something else

---------
be like this photo /show me that.
 

Attachments

  • data.PNG
    data.PNG
    1.8 KB · Views: 119
Welcome to the forums! We are the most active Microsoft Access community on the internet by far, with posts going back over 20 years!

To get started, I highly recommend you read the post below. It contains important information for all new users to this forum.

https://www.access-programmers.co.uk/forums/threads/new-member-read-me-first.223250/

We look forward to having you around here, learning stuff and having fun!
 
Welcome aboard! Try Ctrl-F and them select search and replace.
 
Ah...that is different. Is it just on Form? If the TeatBox is bound, it would be easier to change it at the table level with a query.

Can you provide a few more details about what you are trying to do?
 
I am not sure what you are asking.

Are you looking to delete the contents of something you built - or are you looking to delete what you built?
 
Hi. Welcome to AWF!

Just FYI, I moved your thread out of the Introduction Forum.
 
I want to delete all the things I wrote directly when searching if you find my name or not so I can write something else
 

Attachments

I am not sure what you are asking.

Are you looking to delete the contents of something you built - or are you looking to delete what you built?
I want to edit something in the text box to delete it and write another name. I always have to use backspace
 
That now makes sense
Add a command button to your rm and add code to the button click event
Code:
Private Sub cmdClear_Click()
    Me.txtSearch = ""
End Sub
 
That now makes sense
Add a command button to your rm and add code to the button click event
Code:
Private Sub cmdClear_Click()
    Me.txtSearch = ""
End Sub
I don't want to put a button. I want it to edit itself if there is no name
 
I want to delete all the things I wrote directly when searching if you find my name or not so I can write something else
Select all the text, perhaps with a double click, then press the Delete key. ?
 
Or use the double click event on the text box to delete all text

Code:
private sub txtSearch_dblclick (cancel as integer)
    me.txtsearchtxt.text =""
end sub
 

Users who are viewing this thread

Back
Top Bottom