Jump to content

fcarvalho4

uniGUI Subscriber
  • Posts

    119
  • Joined

  • Last visited

  • Days Won

    8

fcarvalho4 last won the day on July 27 2017

fcarvalho4 had the most liked content!

Profile Information

  • Gender
    Male
  • Location
    Lisboa

Recent Profile Visitors

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

fcarvalho4's Achievements

Active Member

Active Member (3/4)

23

Reputation

  1. https://docs.google.com/a/[DOMINIO]/viewer?url=[FILE_URL]
  2. Sorry, I uploaded the wrong zip file! UniStringGrid.zip
  3. I confirm! Try to use the UniGStringGrid Temp or an ArrayMatrix. Delete the column and then rewrite stringrid without this column! An example attached! UniStringGrid.zip
  4. procedure TMainForm.btn1Click(Sender: TObject); begin UniStringGrid1.BeginUpdate; try UniStringGrid1.Columns.Delete(9); UniStringGrid1.ColCount := UniStringGrid1.ColCount - 1; finally UniStringGrid1.EndUpdate; end; end;
  5. procedure TMainForm.btn1Click(Sender: TObject); begin UniStringGrid1.BeginUpdate; try UniStringGrid1.Columns.Delete(3); UniStringGrid1.ColCount := UniStringGrid1.ColCount - 1; finally UniStringGrid1.EndUpdate; end; end;
  6. I can't find this property in mainmodule!
  7. Knowledge to share Unipanel.UniEvents function beforeInit(sender, config) { sender.setBodyStyle('opacity','0.6'); }
×
×
  • Create New...