K kurdi New member Local time Today, 08:11 Joined Oct 16, 2022 Messages 15 Oct 16, 2022 #1 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 1.8 KB · Views: 119
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.
Jon Access World Site Owner Staff member Local time Today, 06:11 Joined Sep 28, 1999 Messages 8,164 Oct 16, 2022 #2 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 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!
NauticalGent Ignore List Poster Boy Local time Today, 01:11 Joined Apr 27, 2015 Messages 6,872 Oct 16, 2022 #3 Welcome aboard! Try Ctrl-F and them select search and replace.
K kurdi New member Local time Today, 08:11 Joined Oct 16, 2022 Messages 15 Oct 16, 2022 #4 NauticalGent said: Welcome aboard! Try Ctrl-F and them select search and replace. Click to expand... I created text box in my form how it would be
NauticalGent said: Welcome aboard! Try Ctrl-F and them select search and replace. Click to expand... I created text box in my form how it would be
NauticalGent Ignore List Poster Boy Local time Today, 01:11 Joined Apr 27, 2015 Messages 6,872 Oct 16, 2022 #5 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?
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?
The_Doc_Man Immoderate Moderator Staff member Local time Today, 00:11 Joined Feb 28, 2001 Messages 30,495 Oct 16, 2022 #6 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 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?
theDBguy I’m here to help Staff member Local time Yesterday, 22:11 Joined Oct 29, 2018 Messages 22,632 Oct 16, 2022 #7 Hi. Welcome to AWF! Just FYI, I moved your thread out of the Introduction Forum.
K kurdi New member Local time Today, 08:11 Joined Oct 16, 2022 Messages 15 Oct 17, 2022 #8 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 jg.accdb jg.accdb 856 KB · Views: 131
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
K kurdi New member Local time Today, 08:11 Joined Oct 16, 2022 Messages 15 Oct 17, 2022 #9 The_Doc_Man said: 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? Click to expand... I want to edit something in the text box to delete it and write another name. I always have to use backspace
The_Doc_Man said: 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? Click to expand... I want to edit something in the text box to delete it and write another name. I always have to use backspace
isladogs MVP / VIP Local time Today, 06:11 Joined Jan 14, 2017 Messages 19,010 Oct 17, 2022 #10 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
K kurdi New member Local time Today, 08:11 Joined Oct 16, 2022 Messages 15 Oct 17, 2022 #11 isladogs said: 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 Click to expand... I don't want to put a button. I want it to edit itself if there is no name
isladogs said: 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 Click to expand... I don't want to put a button. I want it to edit itself if there is no name
Gasman Enthusiastic Amateur Local time Today, 06:11 Joined Sep 21, 2011 Messages 17,079 Oct 17, 2022 #12 kurdi said: 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 Click to expand... Select all the text, perhaps with a double click, then press the Delete key. ?
kurdi said: 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 Click to expand... Select all the text, perhaps with a double click, then press the Delete key. ?
Cronk Registered User. Local time Today, 15:11 Joined Jul 4, 2013 Messages 2,799 Oct 17, 2022 #13 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
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