Jump to content

Search the Community

Showing results for tags 'tunitabsheet'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • uniGUI Public
    • Announcements
    • General
    • Feature Requests
    • Installation
    • Deployment
    • Other Platforms
  • Licensing
    • Licensing
    • Ordering uniGUI
  • Bug Reports
    • Active Reports
    • Closed Reports
    • Old Bug Reports
  • uniGUI Development
    • General Development
    • uniGUI Releases & Roadmaps
    • Utilities
  • Mobile Platform
    • uniGUI Mobile
    • Mobile Browsers
  • Users Area
    • Sample Projects
    • Components and Code Samples
    • Third Party Components
  • Non-English
    • Non-English
  • Miscellaneous
    • Hosting
    • Server Security
    • Jobs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 7 results

  1. В событии закрытия вкладки TUniTabSheet есть параметр AllowClose. И как его использовать правильно вместе с функцией MessageDlg(Msg, DlgType, Buttons, CallBack)? Ведь приложение асинхронное?
  2. Hi, What is right way to add new TabSheet in PageControl at runtime. I'm UniGUI-pro license owner and I found easy solution. Just move definition of TUniCustomPageControl.InsertPage(APage: TUniCustomTabSheet) from private to public class section and it works. But i was wander is there better solution without changing uniPageControl.pas unit. Or if my solution is framework safety, team could you move definition like that ? Thanks Kamen
  3. I am dynamically creating a TUniTabSheet and setting the ImageIndex := 0 to for a TUniNativeImageList that has already been assigned to an existing TUniPageControl. When I do this I am getting an AV in the following source code: function TUniCustomPageControl.GetImages: TUniCustomImageList; begin Result := FImages; end; I have attached a test project and am using UniGUI 1534 and Delphi XE2. TestTabSheet.zip
  4. Hi, My program has a uniPageControl, then I create one newForm in TUniTabSheet, How can I use the "FindComponent" to access the newForm? Thank You.
  5. Is it possible to set the font colour of the font used for TUniTabSheets? (I've tried setting the Font.Color property both at design and runtime and it doesn't seem to affect anything? Customer is asking for tab colorization on certain conditions...)
  6. Hi, Farshad .TabVisible := False, How to hide header ? Thank you
  7. Hi, Guys! Crete TUniTabSheet in UniPageControl1 NewTabSheet := TUniTabSheet.Create(UniPageControl1); NewTabSheet.Caption := 'TabSheet1'; NewTabSheet.Name := 'TabSheet1'; NewTabSheet.PageControl := UniPageControl1; NewTabSheet.Parent := UniPageControl1; NewTabSheet.Closable := True; NewTabSheet.OnClose:=TestMethod; ERROR??? procedure TMainForm.TestMethod(Sender: TObject); begin ShowMessage('Hello'); end; Thanks.
×
×
  • Create New...