Jump to content

ainsama1

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by ainsama1

  1. may i know how did you do it?
  2. I want to make it look like this. Is there a way to insert this code right after the caption of a button? <span class="badge badge-secondary">New</span>
  3. Hi zemorango, Your gray theme looks awesome! Unfortunately i can't download it. Can you upload it in google drive or somewhere else? Thanks in advance!
  4. Like on UniDbGrid there's OnCellClick that gets the data of which is clicked. How do I it in UnimDbListGrid?
  5. Is there a way to apply this approach on Mobile? Specifically in UnimDbListGrid? @Sherzod
  6. Is there a way to add a Badge on a UnimDBList Items?
  7. Hi, I have this Grid that shows the PC parts. But instead of displaying the Items, it displayed "(Memo)". I've read many threads it says it can be done like this: procedure TForm1.DBGrid1DrawDataCell(Sender: TObject; const Rect: TRect; Field: TField; State: TGridDrawState); var S: String; begin if Field.DataType = ftMemo then begin S := Field.AsString; DBGrid1.Canvas.Pen.Color := clWindow; DBGrid1.Canvas.Brush.Color := clWindow; DBGrid1.Canvas.Rectangle(Rect); DBGrid1.Canvas.TextOut(Rect.Left, Rect.Top, S); end; end; But the UniDBGrid1.Canvas shows error. May i know your suggestions. Thanks
×
×
  • Create New...