Jump to content

robertjohns

Members
  • Content Count

    74
  • Joined

  • Last visited

Community Reputation

0 Neutral

Technical Information

  • Delphi-Version
    Delphi 10.2 Tokyo

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. robertjohns

    ListView

    Any such Example will be appreciated .. Thanks
  2. robertjohns

    ListView

    The Image shown is designed in Paint to describe the concept whether is possible for Listview control each SubItem to be parent control of handling EditBox and a button
  3. robertjohns

    ListView

    Any way to add an option of Opendialog filename path selection in each listview subitem Item similar to below Image
  4. robertjohns

    Filtering ListBox Items

    Thanks for reply
  5. robertjohns

    Filtering ListBox Items

    I am not now talking about now TMS Component , I am talking about general ListBox Component
  6. robertjohns

    Filtering ListBox Items

    How to Solve if any of the ListBox Items does not contain even first char of EditBox , ListBox items should not get clear , ListBox items must remain as it is because search criteria does not match any of the ListBox item. Sorry for my bad English
  7. robertjohns

    Filtering ListBox Items

    Thanks but There is still issue If we enter any unmatched letter in Editbox lisbox items gets cleared whereas if not matched listbox should not get clear Example ListBox Items Dog Rat Cat and If in EditBox I Enter z or x , listbox gets cleared , how to solve this
  8. robertjohns

    Filtering ListBox Items

    Here I have tried the filter method with listbox and so far it works well procedure TForm1.FormCreate(Sender: TObject); Begin list_global := TStringList.Create; list_global.Assign(listBox1.Items); End; procedure TForm1.Edit1Change(Sender: TObject); Var list_filter: TStringList; i: Integer; Begin list_filter := TStringList.Create; list_filter.Assign(listBox1.Items); listBox1.Clear; for i := 0 to list_filter.Count - 1 do if pos(Edit1.text, list_filter[i]) > 0 then listBox1.Items.Add(list_filter[i]); End; How can I switch off the filter so that I can get back the items in listbox incase serach is not matched or clearing EditBox listBox1.Items := list_global;
  9. robertjohns

    Filtering ListBox Items

    May be my request is not properly explained Is there any way to Search/Filter TMS HTMListBox Items with EditBox like TMS AdvListBox
  10. robertjohns

    Filtering ListBox Items

    Is there any way to Filter TMS HTMListBox Items like TMS AdvListBox
  11. robertjohns

    Removing String

    Yes right need to remove strings in brackets including brackets
  12. robertjohns

    Removing String

    Thanks a lot for reply I have Memo line in which there are such strings which are not specific otherwise I can use StringReplace method ,strings are in brackets () and I want to delete those strings which are with brackets suppose This is (string) which need to (remove) Need to delete (string and (remove) from the above
  13. robertjohns

    Removing String

    This is basic and you have tried to replace the string you already know. String can be anything in brackets and need to delete the string including brackets .. all the string occurrences in line which is with bracket need to delet
  14. robertjohns

    Removing String

    I have a string like This is (string) which need to (remove) How can I delete strings (string) and (remove) so that result should be This is which need to
  15. robertjohns

    Getting Win 11 in Delphi

    but on my system TOSVersion.ToString returns Windows 10
×