Jump to content

Search the Community

Showing results for tags 'forms'.

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

  1. Hi all, is it possible to call methods (or read/set properties values) contained in a form, without showing the form itself? For example: in my project there are 2 forms: Main and Unit1. Unit Main: //AllFeatures: Forms,Callback,icon-form-fieldui unit Main; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, uniGUITypes, uniGUIAbstractClasses, uniGUIRegClasses, uniguiclasses, uniGUIForm, uniMemo, uniGUIBaseClasses, uniButton; type TMainForm = class(TUniForm) UniMemo1: TUniMemo; btnTest1: TUniButton; bntTest2: TUniButton; procedure btnTest1Click(Sender: TObject); procedure bntTest2Click(Sender: TObject); private { Private declarations } public { Public declarations } procedure ShowCallBack(Sender: TComponent; AResult:Integer); end; function MainForm: TMainForm; implementation {$R *.dfm} uses uniGUIVars, MainModule, uniGUIApplication, Unit1; function MainForm: TMainForm; begin Result := TMainForm(UniMainModule.GetFormInstance(TMainForm)); end; procedure TMainForm.bntTest2Click(Sender: TObject); begin //I'd like to call the function "UniForm1.Test" without UniForm1 shows UniMemo1.Lines.Add(UniForm1.Test); end; procedure TMainForm.btnTest1Click(Sender: TObject); begin //I'd like to set the "UniForm1.pMessage" value without UniForm1 shows UniForm1.pMessage:='TEST!'; end; initialization RegisterMainFormClass(TMainForm); end. Unit1: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, uniGUITypes, uniGUIAbstractClasses, uniGUIClasses, uniGUIForm, uniGUIBaseClasses, uniButton, uniLabel; type TUniForm1 = class(TUniForm) UniButton1: TUniButton; UniButton2: TUniButton; UniLabel1: TUniLabel; private { Private declarations } public { Public declarations } pMessage: string; function Test: string; end; function UniForm1: TUniForm1; implementation {$R *.dfm} uses MainModule, uniGUIApplication; function UniForm1: TUniForm1; begin Result := TUniForm1(UniMainModule.GetFormInstance(TUniForm1)); end; function TUniForm1.Test: string; begin Result:='Hello world'; end; end. Is there any chance to execute btnTest1Click or btnTest2Click without the form Unit1 is displayed? Thanks in advance.
  2. Bom dia, gostaria de saber se seria possivel eu contruir no unigui um formulario, liso sem bordas como segue o modelo em anexo. Cadastro empresa ai não possui bordas, quero fazer forms assim. Good day , I wonder if it would be possible I build in unigui a form , flat borderless as follows the model attached. Register now there does not have borders, I want to do so forms. http://sharingsistemas.com.br/
  3. I want to Flip children of my forms, but this raise an error, can any one help me doing that? Access violation at address 005C3A3A in module 'MyApp.exe'. Read of address 00000018
  4. Best to all, Someone would have the kindness to tell me if it is possible to prevent unigui can refresh the page or go back in the browser. For example if a user right click on the page get a phenomenon and one of the options is the go to product above, as if the user presses F5 the page is regargara I regresesando to the first form shown and would like to avoid this behavior. - Since already Agradesco any help you can give me, thanks.
  5. Good morning to all, I have a couple of questions regarding Unigui 1 - I'm inserting a menu, but I want this menu not always this at the top but in a specific location such as inside a panel, the idea is to place in the first form a kind of baner and under the banner menu, but the menu is always placed above. 2 - As is to be able to display a form inside a panel. 3 - Finally got the application form for you to display in page mode, but as I show a modal form in this case. Thank you ...
  6. Good morning to all, I have a couple of questions regarding Unigui 1 - I'm inserting a menu, but I want this menu not always this at the top but in a specific location such as inside a panel, the idea is to place in the first form a kind of baner and under the banner menu, but the menu is always placed above. 2 - As is to be able to display a form inside a panel. 3 - Finally got the application form for you to display in page mode, but as I show a modal form in this case. Thank you ...
  7. Buenos dias a Todos, Tengo un par de Pregunta con Relacion a Unigui 1- Estoy Insertando un menu, pero deseo que ese menu no este siempre en el tope sino en una ubicacion especifica por ejemplo dentro de un panel, la idea es colocar en el formulario primero una especie de baner y debajo del banner el menu, pero el menu siempre se coloca arriba. 2- como es que se logra mostrar un formulario dentro de un panel. 3- Por Ultimo tengo la aplicacion para que lo formulario se muestren en modo Pagina, pero como muestro un formulario modal en este caso. Gracias...
  8. Good morning to all, I have a couple of questions regarding Unigui 1 - I'm inserting a menu, but I want this menu not always this at the top but in a specific location such as inside a panel, the idea is to place in the first form a kind of baner and under the banner menu, but the menu is always placed above. 2 - As is to be able to display a form inside a panel. 3 - Finally got the application form for you to display in page mode, but as I show a modal form in this case. Thank you ...
×
×
  • Create New...