Jump to content

Javi

uniGUI Subscriber
  • Posts

    147
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Javi

  1. Mira es post... http://forums.unigui.com/index.php?/topic/1237-validate-forms-cool-feature/page__p__4327__hl__quicktips__fromsearch__1#entry4327 >>> Con la version 0.86, se visualizaba correctamente. Ahora con la versión 0.87.0 build 907, los QuickTips se visualizan mal.
  2. You see http://forums.unigui.com/index.php?/topic/1237-validate-forms-cool-feature/page__p__4327__hl__quicktips__fromsearch__1#entry4327 >>> With version 0.86, was displayed correctly. Now with version 0.87.0 build 907, the QuickTips are displayed wrong.
  3. Aplaudo tu propuesta :) Una pena que no tenga tiempo libre como poder pedirte una cuenta. Suerte...
  4. Javi

    Hola...

    Hola gente :) Ya tenemos nuestro huequecito en UniGui Un saludo desde Madrid, España Javi
  5. Thank you. I will wait, then.
  6. Hi Farshad While you solve this issue. Can you tell me how to add the component DBLookUpComboBox, without causing the error? Thank you.
  7. Hi TUniSyntaxEdit component, it does not align well the lines. I can change something in the CSS, to fix it and get by. Thanks Javi
  8. Hi Farshad I'm making a new component. unit UniEditText; interface uses SysUtils, Classes, Controls, uniGUITypes, uniGUIAbstractClasses, uniGUIClasses, uniEdit, uniDBEdit, uniGUIBaseClasses, uniMultiItem, uniComboBox, uniDBComboBox, uniDBLookupComboBox, uniGUIClientEvents, uniGUIFont, UniPanel, DBCtrls, uniLabel, Graphics, Dialogs; type TUniEditText = class(TUniPanel) public constructor Create(AOwner: TComponent); override; destructor Destroy; override; published end; procedure Register; implementation procedure Register; begin RegisterComponents('Unigui Componentes', [TUniEditText]); end; { TUniEditText } constructor TUniEditText.Create(AOwner: TComponent); var LookUp: TuniDBLookupComboBox; Edit: TUniDBEdit; begin inherited Create(AOwner); // EDIT Edit:=TUniDBEdit.Create(self); Edit.Width:=100; Edit.Align := alBottom; Edit.Parent := Self; Edit.Color := clwhite; InsertControl(Edit); // LookUpcombo LookUp:=TuniDBLookupComboBox.Create(self); LookUp.Width:=100; LookUp.Align := alLeft; LookUp.Parent := Self; // <<=== ERROR: Control '' has no parent window LookUp.Color := clwhite; InsertControl(LookUp); end; destructor TUniEditText.Destroy; begin inherited Destroy; end; end. I compile and install the new component without problems. But when I insert the new component within a TUniForm (at design time), it generates the following error: Control '' has no parent window [5028144A]{vcl150.bpl } Controls.TWinControl.CreateWnd (Line 9170, "Controls.pas" + 13) + $3B [5025BA9B]{vcl150.bpl } Graphics.TResourceManager.AssignResource (Line 1888, "Graphics.pas" + 17) + $D [16A6E8C9]{uniGUI15.bpl} Uniguiclasses.TUniControl.CreateWnd + $9 [5028191A]{vcl150.bpl } Controls.TWinControl.CreateHandle (Line 9340, "Controls.pas" + 3) + $4 [502856F8]{vcl150.bpl } Controls.TWinControl.HandleNeeded (Line 11874, "Controls.pas" + 4) + $4 [502856EF]{vcl150.bpl } Controls.TWinControl.HandleNeeded (Line 11873, "Controls.pas" + 3) + $7 [50285705]{vcl150.bpl } Controls.TWinControl.GetHandle (Line 11880, "Controls.pas" + 1) + $2 [50281326]{vcl150.bpl } Controls.TWinControl.CreateParams (Line 9085, "Controls.pas" + 22) + $2 [50E16CCA]{vcldb150.bpl} DBCtrls.TDBLookupComboBox.CreateParams (Line 5365, "DBCtrls.pas" + 1) + $4 [50E1503B]{vcldb150.bpl} DBCtrls.TDBLookupControl.GetBorderSize (Line 4535, "DBCtrls.pas" + 1) + $6 [50E178A7]{vcldb150.bpl} DBCtrls.TDBLookupComboBox.SetBounds (Line 5640, "DBCtrls.pas" + 1) + $13 [16A675EE]{uniGUI15.bpl} Uniguibaseclasses.TUniBaseControl.SetParent + $21E [16A6EBC6]{uniGUI15.bpl} Uniguiclasses.TUniControl.SetParent + $AA [23B72124]{UniJavi.bpl } Uniedittext.Finalization + $18 [21B9B4C7]{delphicoreide150.bpl} CompPalMgr.TComponentPalettePageItemDelegate.CreateComponent (Line 2564, "CompPalMgr.pas" + 2) + $7 [21079D8A]{designide150.bpl} ComponentDesigner.TComponentRoot.DoCreateComponent (Line 2322, "ComponentDesigner.pas" + 10) + $17 [2107F022]{designide150.bpl} ComponentDesigner.TComponentRoot.CreateCurrentComponent (Line 4384, "ComponentDesigner.pas" + 2) + $32 [2109636E]{designide150.bpl} Surface.TDesignSurface.CreateItem (Line 187, "Surface.pas" + 1) + $11 [2104E6BE]{designide150.bpl} Designer.TDesigner.DoDragCreate (Line 764, "Designer.pas" + 1) + $F [2104EE98]{designide150.bpl} Designer.TDesigner.DragEnd (Line 928, "Designer.pas" + 19) + $3 [21051474]{designide150.bpl} Designer.TDesigner.MouseUp (Line 1710, "Designer.pas" + 1) + $2 [51B1CCA1]{vcldesigner150.bpl} VCLSurface.MouseEvent (Line 2908, "VCLSurface.pas" + 45) + $11 [5003AC1B]{rtl150.bpl } System.TMonitor.Exit (Line 12537, "System.pas" + 2) + $7 [51B1D87B]{vcldesigner150.bpl} VCLSurface.TVclDesignSurface.IsDesignMsg (Line 3169, "VCLSurface.pas" + 48) + $6 [5003A336]{rtl150.bpl } System.@IsClass (Line 11370, "System.pas" + 1) + $8 [5027DCDB]{vcl150.bpl } Controls.TControl.WndProc (Line 6987, "Controls.pas" + 4) + $21 [502820C3]{vcl150.bpl } Controls.TWinControl.IsControlMouseMsg (Line 9608, "Controls.pas" + 1) + $9 [50282830]{vcl150.bpl } Controls.TWinControl.WndProc (Line 9831, "Controls.pas" + 144) + $6 [5034FB28]{vcl150.bpl } Forms.TCustomForm.WndProc (Line 3961, "Forms.pas" + 191) + $5 [50281ED0]{vcl150.bpl } Controls.TWinControl.MainWndProc (Line 9552, "Controls.pas" + 3) + $6 [500AFA64]{rtl150.bpl } Classes.StdWndProc (Line 13491, "Classes.pas" + 8) + $0 [50358AF7]{vcl150.bpl } Forms.TApplication.ProcessMessage (Line 9760, "Forms.pas" + 23) + $1 [50358B3A]{vcl150.bpl } Forms.TApplication.HandleMessage (Line 9790, "Forms.pas" + 1) + $4 [50358E65]{vcl150.bpl } Forms.TApplication.Run (Line 9927, "Forms.pas" + 26) + $3 If I believe the component without TuniDBLookupComboBox, everything works fine. Thanks JAvi
  9. Hi Farshad You can add to TUniTreeView, properties: LoadFromFile, LoadFromStream, SaveToStream, SaveToFile. Thanks Javi
  10. It's true!! Sometimes the most obvious, is difficult to see. Thanks
  11. Hi Farshad We have two applications on the server. Each application has its own directory ExtJs. An application is completed, use UniGui 0.86. The other application, use UniGui 0.88. So we are not interested in a single directory ExtJs. Thank you. Javi
  12. You look at this, maybe is good for you http://forums.unigui.com/index.php?/topic/1616-scroll-position/page__p__6599__hl__scrollto__fromsearch__1#entry6599
  13. Hello Can you distribute "fmsoft_unigui_extjs_XXXX_setup.exe" as a zip file? To more easily maintain the applications. Thanks JAvi
  14. Thanks Farshad The problem is only in IE
  15. Hello I have found: http://css-tricks.com/snippets/css/remove-scrollbar-from-textarea-in-ie/ How to solve the problem. But I do not know how to integrate it into UniGui. Farshad, how can we put {Overflow: auto;} within Textarea properties. thanks Javi =========================================================== Hola Yo he encontrado: http://css-tricks.com/snippets/css/remove-scrollbar-from-textarea-in-ie/ Como solucionar el problema. Pero yo no se como integrarlo en UniGui. Farshad, como podemos nosotros poner { overflow: auto; } dentro de las propiedades del Textarea. Gracias Javi
  16. Javi

    scroll position

    Works for me MainForm.Form.Body.ScrollTo ('Top', 0); UniServerModule > MainFormDisplayMode = mfPage MainForm > AutoScroll = True ------------------------------------ A mi me funciona MainForm.Form.Body.ScrollTo('Top', 0); UniServerModule > MainFormDisplayMode = mfPage MainForm > AutoScroll = True
  17. Javi

    scroll position

    I have found how to do Self.WebForm.ExtForm.Body.ScrollTo('Top', 0);
  18. Javi

    scroll position

    A little more graphic. How I can do this? Thanks --------------------------------------------- Un poco más grafico. ¿ Como puedo yo hacer esto ? Gracias
  19. Javi

    scroll position

    Hello I have a form with autoscroll to true. How I can get the scroll up at all? Thanks ------------------------------------------- Hola Tengo un formulario con autoscroll a true. ¿Cómo yo puedo poner el scroll arriba del todo? Gracias
  20. Happy New Year FELIZ AÑO NUEVO....
  21. Hi The property maxlength, not exist in the components: TUniMemo and TUniDbMemo Thanks Javi
  22. Gratulations Farshad You carry three days with no movements in the foro, I think we are very pleased with the stability of this great product. Javi ----------------------------------------- Felicidades Farshad Tu llevas tres días sin movimientos en el foro, yo creo que, nosotros estamos muy contentos con la estabilidad de este gran producto. Javi
×
×
  • Create New...