Jump to content

rasaliad

uniGUI Subscriber
  • Posts

    130
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by rasaliad

  1. Hi Uniguier!!!

     

    I know almost everyone here know TMS-Software and its new product MyCloudData, then I wonder if some of you know if MyCloudData can be used with UniGui ?.
     
    This would be the scenario:
     
    I have an application developed in Delphi with a local database, this application would be updating with statistical data and specific data, another database in MyCloudData, then I would be developing an application in UniGui which would be accessing information that are stored in MyCloudData for customers, vendors, suppliers and Managers, via desktop and mobile!!
     
    It is this scenario possible and at the same time would be a good idea to be implemented?
     
    Thanks in advance for your opinions and advice?
     
    regards
     

     

    Rafael Liriano

     

     

  2. Hello, is there any discount for buying the unigui in Brazil? The dollar here is very high ($ 1 -> R $ 4) ie to four times more in real exchange. I would like a discount for purchase immediately.

     

    Wow you are lucky. Here in my country the change is $1 -> $45.78. What i did was to charge the unigui cost to a project.

  3. Hi,

     

    Is there a way to execute a server side function from a href tag?

     

    What i need to do is display a html in a html frame with html < a > Tag and when the user click the link, then execute a procedure or function server side to populate a unidbgrid. 

     

    Is this posible, if not what can i do?, Thanks in advanced

     

    Rafael

     

     

  4. Hola

     

    Le he estado dando seguimiento y probando desde el 2011. Ya compre la Licencia Pro, para el 2014 y 2015 he desarrollado dos proyectos para control de stock en almacenes ( Recepción, Ubicación, Movimientos, Procesos y Despacho de mercaderías) hasta hora todo ha ido de maravilla tanto en la app web y movil.

  5. Please send me a test project.

     

    Hi Farshad thank you for your time, I finally found the solution to the problem.

     

    Months before i was trying to implement the following: http://forums.unigui.com/index.php?/topic/4147-progress-bar-pager-extension/?hl=progressbarpager.js

     

    and i put this (files/ProgressBarPager.js) in the CustomFiles property in ServerModule, then now, after remove it, my Hybrid app works fine.

     

    Thank you again, now let me continue with my Hybrid project.

  6. What components are on your mobile form?

    Make sure you are not using regular uniGUI desktop controls.

     

    Hi,

     

    I only create a Mobile Login Form with two TUnimEdit and Two TUnimButton, the main Mobile form is empty by now. 

     

    Remember I'm trying to do a Hybrid App with and existing one... I used to have a progressbar in the Unigui App, but I remove it and all the uses references from the source.

     

    Note that I had compiled the Hybrid example and it run successfully, I also create a mobile app from scratch With mobile Login form and a Main Mobile form and it run successfully too. the problem is with my Hybrid app and only with the /m, it only say Loading.... and the log file show that progressbar.js not found.

     

    thanks for your time,

  7. Hi,

     

    I'm adding a mobile module to an existing unigui app. I add a Mobile Login Form and a Mobile Main Form, then when run app with localhost:8077/m it only show the loading... message. In the log file is the following message:

     

    myApp: 00154F30: 12:34:55 [HandleFileRequest[127.0.0.1]]:File not found: C:\Program Files\FMSoft\Framework\unigui\touch-2.4.1\src\ProgressBar.js

     

    How to solve the problem.

     

    Thansk

     

    Liriano

  8. Hi uniguier,
     
     
    I have the following problem:
     
    I have a simple Unigui Web App running in a Contabo VPS, this form has a query selecting data from a table in a Firebird database, this display some text and numeric data in TUniDBText, then I have a delphi vcl application that remote connect to the same database to the VPS and make some changes in the underline table, then after changes are done, I press the refresh button in the unigui app, the onclick event close and open the query, but the data display in the DBText stay unchanged, I wait for a time and then click the refresh button again and the information still display unchanged. I'm afraid if this is because ajax technology, I don't know about ajax and javascript... how can i get the data display correctly when refreshing the query in the unigui app, after the delphi vcl app update it in the background. I hope you understand my problem.

     

     

    Thanks in advanced.

     

    Using:

    Delphi Xe6

    Unigui 0.98

    FireDac

    FireBird

    Contabo VPS

     

    Rafael Liriano

     

     

  9. Hi Marlon,

     

    I try to do what you said, using Open San font in my Application. What I did:

     

    1. Add MimeTable.AddMimeType('ttf', 'ventas/font', False); in the servermodule OnCreate event. 
    2. Create the folder font in my application folder ventas.
    2. Install Open San Windows/Font (this allow me to use the font within Unigui (Labels, panels, etc...)
    3. Copy Fonts files to ventas/Font directory, as i understood you explain.
    4. Compile the app.
    5. Run it local and remote. And the font is not Open San, is something like Roman....
     
    What did i did wrong. Thanks in advanced.
     
    Rafael Liriano
  10. My Comment on point 2 is that you have unnecessary code, i will do it in this way:

    Var
        iRecNumbers: Integer;
    begin
    
        DM.qrWaybill.Close;
        DM.qrWaybill.SQL.Text := 'SELECT Route                   ' +
                                 '     , Serv_type               ' +
                                 '     , ShipmentId              ' +
                                 '     , Custcode                ' +
                                 '     , Ref                     ' +
                                 '     , PCE                     ' +
                                 '     , WGT                     ' +
                                 '     , Receiver                ' +
                                 '     , ShipAddress1            ' +
                                 '     , ShipAddress2            ' +
                                 '     , ShipCity                ' +
                                 '     , ShipState               ' +
                                 '     , ShipPostalCode          ' +
                                 '     , SpecialInstructions     ' +
                                 '     , Origin                  ' +
                                 '     , OriginAddress           ' +
                                 '     , OriginCity              ' +
                                 '     , OriginPostal            ' +
                                 '     , Status                  ' +
                                 '     , cast(Orderdate as date) ' + 
                                 '  FROM shiporders              ' +
                                 ' WHERE custcode = ' + quotedstr(UniLabelCustcode.Text) + 
                                 '   AND orderdate >= :FirstDate ' + 
                                 '   AND orderdate <= :LastDate  ' + 
                                 '   AND Extract(Hour from orderdate) BETWEEN 0 AND 24 ';
       DM.qrWaybill.Prepare;
    
       DM.qrWaybill.ParamByName ( 'FirstDate' ).Asdate := Date;
       DM.qrWaybill.ParamByName ( 'LastDate' ).Asdate := Date + 1;
       
       DM.qrWaybill.Open;
    
       iRecNumbers :=  DM.qrWaybill.recordcount;
       
       UniLabelRecords.text := Format( '%d records found for today',[iRecNumbers]);
     end; 

    it will not help in your problem, but i will help in future maintenance and to other programer understand your code. BTW the datasource are all assigned correctly?.

  11. Well schweppes

     

    What i did was, buy a year subscription for the VPS L plan (Windows Server 2008 Standard Edition (64 bit) ). Then when it was ready, I think a day after, I install:

     

    - Firebird

    - Dropbox (to transfer my files to deploy)

    - Setup IIS

     

    and done, running with out problem.

  12. Lendel

     

    As Delphi Developer said you can find the source at:

     

     

    C:\DelphiLib\FMSoft93\Framework\uniGUI\Demos\Memo and Image in DBGrid\MemoEdit.dpr

     

    rasaliad

×
×
  • Create New...