Jump to content

rasaliad

uniGUI Subscriber
  • Posts

    130
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by rasaliad

  1. rasaliad

    dbgrid

    Hi Lendel, I do it, the same way, using <img> tag, in the database view for the other field i want to display the image. rasaliad
  2. Well Farshad, in design time this is the screenshot: in the red square are the labels with the caption with <img> tag. cursor = crhandpoint a hint and a onclic event. Then at runtime this is the screenshot: Then in runtime the labels render the .png image. This is how i'm doing it. thanks
  3. Hi, Farshad, thanks. Is good to know about that. Please can you answer the following, What is the best (for performance, Transparent, configuration...) use <img> tag as for Button, or use bitbtns?, which one do you recommend? Thanks PD: Do you think this question need to move to other new post?
  4. Hi Guillermo, Nice Work. A question, how do you put inside the edit, the hint text, for example, 'Digite El Nombre.', and in the Telephone edit the image. thanks in advanced. rasaliad Update: Hi Guillermo, i found how to do it, thanks to Alberto vesx post: http://forums.unigui.com/index.php?/topic/2950-add-nonempty-property-to-unidbedit-and-uniedit/?hl=dbedit thanks any way guillermo.
  5. Hi, I am developing a project, it will be in alpha in two weeks, although it is private, i will publish for a while in this post. I'm using Firebird with AnyDac and it is working without problem, all the business logic is in the database, and I use in the unidbgrid only HTML generate from the database views. All the frames are inherited. I'm using <Img> tag instead of button, because i read something about GDI handles resources with images here in the forum.
  6. Hi, But I'm afraid that the Component ScreenMask Property is for what you want, isn't it?
  7. Thanks, Farshad. I Will do some search about what you said.
  8. Hola Edgar, Have you resolve the problem to read the com port?, I have the same need. I need to read the serial com port read the weight form a bascula. Please some Help or Idea. Thanks in advanced
  9. I will suggest you read this link http://forums.unigui.com/index.php?/topic/2363-google-maps-for-unigui/?hl=google+map found searching the forum.
  10. In conclusion, there is no problem with the delphi version ( I use D2010, no problem).
  11. Thanks zilav I Will try what you point me and will post here the results. It is the first time i will try AzMan. rasaliad.
  12. Hi, We have to develop a new project for a customer, and we are planing to use Unigui to develop it. The custometo ono jr ask us to use Active Directory and AzMan (Authorization Manager), and may question is?: Has someone use AzMan with UniGui?, How to use it?, the customer say that other application (Asp.Net) use it... How can i implement this.? Also I want how to use Active Directory with Unigui, is it possibly? Thanks in Advanced
  13. rasaliad

    Contabo.com

    Hi, I want to by contabo VPS L, i want to know if i need to add Parallel Plesk for windows, does it is necessary or not, i want VPS L with windows 2008R2, does it has IIS7. For what I need Parallel plesk. this is the first time i buy a VPS, sorry for the questions. Liriano
  14. Hi Oliver, Please, could you tell me why not use global vars in TUniMainModule?, I ask because i use vars, why you recommend Properties, please i need your answer, because then i'm doing in the wrong way. Thanks in advanced, rasaliad
  15. Hi Ronny When you say frames, you are talking about TUniFrame? If so, this is the way I do it, and it work fine for me: I Have a main form, in this form there is a UniPanel, then I have a procedure that I invoke to show my frames For example on a Button click: LanzarVentana(Sender); I have these variable in private: FFrameTag : Integer; FFrameName : string; FCurrentFrame : TUniFrame; And the procedure: procedure TMainForm.lanzarVentana(Sender: TObject); begin if FFrameTag = TComponent(Sender).Tag then Exit; FFrameTag := TComponent(Sender).Tag; if Assigned(FCurrentFrame) then begin FreeAndNil(FCurrentFrame); end; FFrameOpcionName := ''; case FFrameTag of 0: begin FCurrentFrame := TUniFrameClass(FindClass('TfrEstudiantes')).Create(Self); FFrameName := 'Estudiantes'; end; end; if Assigned(FCurrentFrame) then begin FCurrentFrame.Align := alClient; FCurrentFrame.Parent := pnCentro; end; Caption := FFrameName; lbTitulo.Caption := FFrameName; end; Also the Mega Demo use frames, you can see there. I hope this help you. Regards Rafael Liriano
  16. Hi Duser, Thanks for those links. I will try to do my best, trying to understand those informations. The problem is i'm a delphian, now with Unigui i'm seeing Javascript, but i do not know javascript, do you have some clue about the topic or anyone else. Lliriano
  17. Hello Members, Does anyone know how to write to a Google Spreadsheet cells from unigui?. Is this possible? Thansk in advanced. Liriano
  18. Hola Una pregunta, es que estas cargando la página principal, así como los formularios y frames sucesivos, todos cuando la aplicación inicia?, si es asi, por que? Tengo una aplicación (en desarrollo) y tienes varios frames y no es nada lenta. Uso Firebird también. Liriano
  19. Hi Erich Why you can't use a mastersrouce relation between datasets, and when you move in person table it will show in the vertrag grid the corresponding records and so on in objtek.? Liriano
  20. Hi Rullomare I'm interesting in the source code, pls. if your are so kind, may i have it? Thanks in advanced, Rafael Liriano rafael.liriano@gmail.com
  21. Hi, Hayri What about the changed to this component? Thanks in advanced Rafael Liriano
  22. Hi, I did not received the email, And i'm willing to buy the two licenses. I voted in the pool that appear a the top in this thread.
  23. Hi, Very nice and useful the UniMenuButton, I think that if the MenuButton does not has OnClick event then if you click on the button (not in the drop-down icon) then the drop-down menu could display. I'm developing a web application to be used on desktop and tablet browser and it is difficult to click the drop-down icon in the tablet, but click the entire button is easy. What do you think?. I hope you understand me. Thanks in advanced Rafael Liriano
  24. Eduardo, Using the the same OnGetText. See this link: http://forums.unigui.com/index.php?showtopic=2227 Rafael Liriano
  25. Hi patmap, could you please, give me an example how to redirect user to login page when session time out. Thank you very much, for your help. Rafael Liriano
×
×
  • Create New...