Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1111647
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T02:34:51+00:00 2026-05-17T02:34:51+00:00

i have a list in Twwgrid as below: i wan to delete the same

  • 0

i have a list in Twwgrid as below:
alt text

i wan to delete the same stock at once with the right-click pop-up menu as shown above (eg. delete both OREO_CHOC_CREAM either is CTN or UNIT). But now i only can delete 1 by 1 with the code below, any idea to solve this problem?

procedure Tfrm1.mniDeleteClick(Sender: TObject);
begin
  inherited;
    with grdItems.DataSource.DataSet do begin
      if (RecordCount <> 0) and (MessageBox( Application.Handle, 'Delete Record ?', 'Confirmation', MB_YESNO + MB_ICONQUESTION + MB_DEFBUTTON2 + MB_APPLMODAL) = IDYES) then
         Delete;
    end;
end;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T02:34:51+00:00Added an answer on May 17, 2026 at 2:34 am

    I’m assuming the dataset is ordered by stock #, if not, it will not work.

    procedure Tfrm1.DeleteByStockNum();
    var
      StockN: string;
      DataSet: TDataSet;
    begin
      DataSet := grdItems.DataSource.DataSet;
      DataSet.DisableControls;
      try
        StockN := DataSet.Fields[0].AsString;
        //locating the very first record with this stock #
        while (not DataSet.BOF) and
              (DataSet.Fields[0].AsString = StockN) do
          DataSet.Previous;
        if DataSet.Fields[0].AsString <> StockN then
          //we are one record above
          DataSet.Next;
        //lets delete all the matching records
        while (not DataSet.IsEmpty)
               and (DataSet.Fields[0].AsString = StockN) do
          DataSet.Delete;
      finally
        DataSet.EnableControls;
      end;
    end;
    
    
    procedure Tfrm1.mniDeleteClick(Sender: TObject);
    begin
      inherited;
        with grdItems.DataSource.DataSet do begin
          if (RecordCount <> 0) and (MessageBox( Application.Handle, 'Delete Record ?', 'Confirmation', MB_YESNO + MB_ICONQUESTION + MB_DEFBUTTON2 + MB_APPLMODAL) = IDYES) then
             DeleteByStockNum;
        end;
    end;
    

    enjoy. 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have list of rows that user select and i want to delete them,
I have list MC below: MC = [('GGP', '4.653B'), ('JPM', '157.7B'), ('AIG', '24.316B'), ('RX',
I have list of images on the web page. I want to click on
If I have List<String> text how can I create a sub-list of all continious
I have a list of integers, List<Integer> and I'd like to convert all the
I have a List of Foo. Foo has a string property named Bar. I'd
I have a list of 2-item tuples and I'd like to convert them to
I have a List<int> and a List<customObject> . The customObject class has an ID
I have a list, each item of which has several things in it, including
I have a list of more than 15 thousand latitude and longitude coordinates. Given

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.