Jump to content

rasaliad

uniGUI Subscriber
  • Posts

    130
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by rasaliad

  1. 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:

     

    tiempodediseno.jpg
     
    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:
     

    runtime.jpg

     
    Then in runtime the labels render the .png image. This is how i'm doing it.
     
    thanks
    • Upvote 1
  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,

     

    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.

  5. 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

  6. 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

  7. 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

  8. 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

    • Like 1
  9. 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

  10. 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

  11. 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

     

    • Upvote 1
  12. Hi,

     

    I'm not usually the main window, I'm using the page mode( Viewport ), So the user can not close the program unless user want to logout,

    And, when my application session time out, I will redirect user to login page.

     

    regards

     

    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...