Jump to content

mayusod

Members
  • Posts

    23
  • Joined

  • Last visited

Everything posted by mayusod

  1. is posible know the cursor position in a TuniMemo ??? Thanks
  2. Hello, I would like to know how you can call from an ISAPI DLL to another. thanks
  3. Hello, I would like to know how you can call from an ISAPI DLL to another. thanks
  4. Bringtofrom and sendtoback, work or not works? if it works, how it's done?
  5. if I create a label at runtime and add the clientEvents not work, but if I assign the clientevent to a label already created if it works Label6.ClientEvents.ExtEvents.Add('added=function added(sender, container, pos, eOpts)'#13#10'{'#13#10' sender.draggable= true;'#13#10'}'); LabelPrueba:=TUniLabel.Create(Self); with LabelPrueba do begin Left:=100; Top:=100; Caption:='Prueba'; Parent:=PanelFormato; ClientEvents.Enabled:=True; ClientEvents.ExtEvents.Add('added=function added(sender, container, pos, eOpts)'#13#10'{'#13#10' sender.draggable= true;'#13#10'}'); end; I'm doing wrong
  6. if I create a label at runtime and add the clientEvents not work, but if I assign the clientevent to a label already created if it works Label6.ClientEvents.ExtEvents.Add('added=function added(sender, container, pos, eOpts)'#13#10'{'#13#10' sender.draggable= true;'#13#10'}'); LabelPrueba:=TUniLabel.Create(Self); with LabelPrueba do begin Left:=100; Top:=100; Caption:='Prueba'; Parent:=PanelFormato; ClientEvents.Enabled:=True; ClientEvents.ExtEvents.Add('added=function added(sender, container, pos, eOpts)'#13#10'{'#13#10' sender.draggable= true;'#13#10'}'); end; I'm doing wrong
  7. mayusod

    label width

    This Works: UniImage1.pIcture.bitmap.Canvas.TextWidth('Hello World')
  8. mayusod

    label width

    Ok, back to beginning , does not change width after label rendered on the cliente screen.
  9. mayusod

    label width

    to place objects on the screen at runtime. you have some method to indicate the width in pixel of a text Delphi example: canvas.textwidth('Hello') or Canvas.textHeigth('Wordl')? thanks for you help
  10. mayusod

    label width

    can you tell me some solution?
  11. mayusod

    label width

    when I change the Font size of a label, width does not change.
  12. Hello, I Have a TUniForm with a TUniPanel. The Form and the panel has a click event. if i press in the panel, launch the event click in the panel and in the Form. this event should only be launched in the panel. is there anyway to fix it? Thanks
  13. Hello, in delphi VCL if I'm in a TEdit and press a Tspedbutton, not the "onexit" event runs in the TEdit. With unigui, then "onexit" event runs in TuniEdit. Is there any way to fix it?
  14. I am trying to create a TuniImage at runtime, but I could not. I've seen the demo "Dynamic" and I can create other components at runtime, but not a Tunimage this is ok. with TUniEdit(InsertControl(TUniEdit.Create(Self))) do begin Left:=10; Top:=40; Text:='Text'; end; but this no with TuniImage(InsertControl(TuniImage.Create(Self))) do begin Left:=10; Top:=40; Picture.LoadFromFile('Hydrangeas.jpg'); end; (The picture is in the same directory).
  15. CodeGear™ Delphi® for Microsoft® Windows™ Version 11.0.2627.5503 Copyright © 2007 CodeGear™. All Rights Reserved.
  16. yes, I`m using for over 7 years and have never had any problems so far
  17. I can not install the version .98 in delphi 2007 [DCC Error] uniGUI11dcl.dpk(69): F2051 Unit uniGUIProjectCreator was compiled with a different version of ToolsAPI.sCppManagedDll How to solve? Thanks
  18. [DCC Error] uniGUI11dcl.dpk(69): F2051 Unit uniGUIProjectCreator was compiled with a different version of ToolsAPI.sCppManagedDll How to solve?
×
×
  • Create New...