Jump to content

Search the Community

Showing results for tags 'UniForm'.

  • 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 9 results

  1. Good afternoon! I'm interested in this. Is it possible to make it so that UniForm could be made as a separate window, but without breaking away from MainForm? Let me explain what I mean. Here in your browser there are tabs, and let's say you have connected a second monitor to your computer and want to display some tab, for example, from YouTube, on the second monitor. To do this, you just take the tab title and drag it to the second monitor and it works. Here, I need to be able to do this with the form. Is this possible? I tried the UniMainModule.ConstrainForms, but it only turns out that I can move the form within the MainForm of the main project, and I would need to move the form outside of it.
  2. Hello! Actually, the question itself is: how to programmatically register the Layout.Config.Cls property for a dynamic form? I am creating a form dynamically and I need to design it beautifully, for this I need to assign it a class from my CSS that does this.
  3. Good afternoon! I solve this problem: I need to create a form dynamically and load my frame on it, and if the form already exists, then close it (destroy it), along with all the contents, and create it again with a frame. Simply put, recreate an already existing and previously created dynamically form. Everything should be done with one button. Here is the form creation code that creates the form dynamically initially: TestForm:=TUniForm.Create(UniApplication); TestForm.Height:=500; TestForm.Width:=500; TestForm.Parent:=MainForm; TestForm.Name:='test'; TestForm.BorderIcons:=[biSystemMenu,biMaximize]; TestForm.BorderStyle:=bsSizeable; TestForm.Caption:='test'; TestForm.Show; Before the form creation code, I tried to add such a code to search for and delete a previously created form: for i:=Screen.FormCount-1 downto 0 do begin if Screen.Forms[i].Name = 'test' then Screen.Forms[i].Free; end; The first time the form is created: Without closing this form, I try to recreate it, but I get an error: I ask for help in solving my problem Initially, I thought that maybe you can create an empty form in the usual way and use it already for my frames, because I need to upload different frames to separate instances of the form, but it seems to me that this will not work...
  4. Hello! How make rounded corners in UniForm? For example:
  5. Hi Farshad, I know it's a "stupid" question, but why is it mandatory to display Form after creating it in UniGui? Is not there really a way around this? I understand that I'm messing with the View layer of the application, and it does not make much sense to tinker with the View and not display it. But sometimes we want to just get a name from a Form component, or a component property, or even run some component event on the Form.
  6. Please advise how I can Enable / Disable Form (fNewAccount) - Thanks in advance. fNewAccount.Enabled:= False; fMain.EmailRequestFlag:= SendMail(); fNewAccount.Enabled:= True;
  7. I am getting following error when I try to load my form. --------------------------- Debugger Exception Notification --------------------------- Project w3wp.exe raised exception class EReadError with message 'Error reading FrmMainOrder.ClientHeight: Property ClientHeight does not exist'. --------------------------- Break Continue Help --------------------------- I checked my DFM and there no property with name ClientHeight. I am using 1.0.0.1358 version of UniGUI.
  8. Good Morning! I have a problem and I'm unable to solve. C'mon: When I work with normal uniforms, it is very easy to change the caption of a label of a form from another. Example: TuniForm2.btOkClick procedure (Sender: TObject); begin uniForm1.uniLabel1.caption: = uniForm2.uniLabel2.Caption; end; What I'm unaable to do: TuniForm2.btOkClick procedure (Sender: TObject); begin uniFrame1.uniLabe1.caption: = uniForm2.uniLabel2.Caption; end; This code does not error. (In debug) The text is sent to the label, but for some reason does not reach the destination: TuniForm2.btOkClick procedure (Sender: TObject); begin FCurrentFrame := TUniFrameClass(FindClass('TuniFrame1')).Create(self); TuniFrame1(FCurrentFrame).uniLabel1.caption := 'hello world'); TuniFrame1(FCurrentFrame).uniLabel2.caption := 'by'; FCurrentFrame.Destroy; end; I tried to follow some examples of demos, but unfortunately could not. Can anyone help me do this? Grateful. (Translated by Google) ***************************************************************** Bom dia! Estou com um problema e eu não estou conseguindo resolver. Vamos lá: Quando eu trabalho com uniForms normais, é muito fácil alterar o caption de um label de um form através de outro. Exemplo: TuniForm2.btOkClick procedure (Sender: TObject); begin uniForm1.uniLabel1.caption: = uniForm2.uniLabel2.Caption; end; O que eu não estou conseguindo fazer: TuniForm2.btOkClick procedure (Sender: TObject); begin uniFrame1.uniLabe1.caption: = uniForm2.uniLabel2.Caption; end; Esse código, não dá erro. (No debug) O texto é enviado ao Label, mas por algum motivo não chega ao destino: TuniForm2.btOkClick procedure (Sender: TObject); begin FCurrentFrame := TUniFrameClass(FindClass('TuniFrame1')).Create(self); TuniFrame1(FCurrentFrame).uniLabel1.caption := 'hello world'); TuniFrame1(FCurrentFrame).uniLabel2.caption := 'by'; FCurrentFrame.Destroy; end; Tentei seguir uns exemplos dos demos, mas infelizmente não consegui. Alguém pode me ajudar a fazer isso? Grato.
  9. Hi I need to call a form twice on the same procedure this form get some data and put it in variables and inmediately after has to do it again for other variables is there a way to do this because i've tried and it calls it on the first time but on the second nothing happens. I'm using version 0.91.0.980
×
×
  • Create New...