Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » Elevate Web Builder Technical Support » Incident Reports » Incident Reports Addressed for Version 1.03 » View Incident Report |
Serious |
Reported By: Walter Matte [Tactical Business Corporat Reported On: 2/3/2014 For: Version 1.03 Build 2 |
// Hide Works procedure TfrmSelSearch.Button1Click(Sender: TObject); begin grdSearch.Columns.Column[1].Hide; grdSearch.Columns.Column[2].Hide; end; //FAILS procedure TfrmSelSearch.Button2Click(Sender: TObject); begin grdSearch.Columns.Column[1].Show; grdSearch.Columns.Column[2].Show; end; // Reverse the order (Right to Left) and it Works - as long as you are making all the columns visible.... procedure TfrmSelSearch.Button2Click(Sender: TObject); begin grdSearch.Columns.Column[2].Show; grdSearch.Columns.Column[1].Show; end;
This web page was last updated on Wednesday, October 30, 2024 at 11:41 AM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |