Jump to content

herculanojs

uniGUI Subscriber
  • Posts

    565
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by herculanojs

  1. Usually whenever I do a unigui version update there are some problems Things that were working begin to show errors. this time we upgrade from version 1.0.0.1412 to version 1.0.0.1424 I struggled for hours with the mentioned error, and the problem only apparently resolved, after I removed all unigui installations from the server. Strangely, every time we install FMSoft_uniGUI_Complete_runtime, they are always getting trashed from previous versions. Should not this be cleaned with a new version? Only after I parted the server, I removed all the cache, cleaned everything in the folder of fmsoft and reinstalled the version with final 1.0.0.1424, that stopped the problem. Does the described error occur for what reason? Another problem I have yet to face is when there is some ajax error, the whole system crashes and not just the user session.
  2. take a look here http://forums.unigui.com/index.php?/topic/3921-combining-unigui-with-rest-webservice/
  3. I was thinking of making a fmx application just browser and loading the unigui in as I have seen some commenting. There would be some way to communicate the application with the unigui to be able in the case in question to print via bluetooth ?
  4. Friends, I need an idea and help printing through a mini thermal printer Bluetooth. How can this be done with Unigui? Because the printer will be connected to the mobile device. I urgently need some idea and solution.
  5. Someone would know how I can interact with the navigation buttons of the devices, for example android: Buttons (back, home), because if the user clicks on these buttons the application exits. Or how do you hide these buttons
  6. How can I interact with the navigation buttons on my device.
  7. A thousand excuses, had not noticed that there was the TunimTimer
  8. If a TUnitimer is added in a TunimForm an Ext.util.TaskRunner error is not a constructor I remove the Tunitimer and the error disappears, I put and the error happens
  9. It is a big problem this issue in the unigui. New versions should already contain such properties by default. tanks for contribution
  10. This file itself does not exist. However there is a Notification.js file that was used in this post, I noticed that it is causing the error. http://forums.unigui.com/index.php?/topic/3027-simple-tip-alwaysontop-feature-for-windows-and-forms/ Notification.js
  11. What I was trying to do, was at the end of the session due to an error situation due to database connection failure eg show a tutorial on how it could solve the problem. For this, I created the whole tutorial in an hmtl file, and the intention was to open this file inside the unigui. I did not want to have to create a form to display the content, but could just make a call to some method similar to page redirection to achieve such a result. The solution I used was to load the contents of the html tutorial, and to pass in the end message of the user session. UniSession.Terminate (content of the tutorial); ------------ O que estava tentando fazer, era ao finalizar a sessão por uma situação de erro em razão de falha de conexão com o banco de dados por exemplo, exibir um tutorial de como ele poderia solucionar o problema. Para isso, criei todo o tutorial em um arquivo hmtl, e a intenção era abrir este arquivo por dentro do unigui. Não queria ter que criar uma form para exibir o conteúdo, mas que pudesse apenas fazer uma chamada ao algum método semelhante ao de redirecionamento de páginas, para conseguir tal resultado. A solução que utilizei, foi carregar o conteudo do tutorial html, e passar na mensagem de finalização da sessão do usuário. UniSession.Terminate(conteúdo do tutorial);
  12. I'm trying to fit a hybrid application and I'm getting this message in the log file when I try to run the application on mobile [HandleFileRequest[127.0.0.1]]:File not found: C:\Program Files (x86)\FMSoft\Framework\unigui\touch-2.4.2-complete\src\window\Window.js What file is this, since I can not find the same file in the unigui folder version 1412
  13. I'm having trouble understanding how it works. I am sending an html text to end a session like this: There have been faults here and I have an html message of instructions to the user. UniSession.Terminate (my html message); This works fine if I do not set anything in UniMainModule.ServerMessages.TerminateTemplate Here I have a html message by standardizing the closure sa session and link to reconnection. In the UniMainModule create I'm setting a different html code for UniMainModule.ServerMessages.TerminateTemplate for when the session is closed. If UniMainModule.ServerMessages.TerminateTemplate I did not report anything, the first code works. If something is reported, the first code is ignored and the second code is shown. If I sent a specific message to close the session, should not this message be observed? --------------------------------------------------------------------------------- Estou com dificuldade para entender o funcionamento. Estou enviando um texto html para encerrar uma sessão desta forma: Aqui ocorreu falhas e tenho uma mensagem html de instruções ao usuário. UniSession.Terminate( minha mensagem html); Isso funciona bem, se eu não definir nada em UniMainModule.ServerMessages.TerminateTemplate Aqui tenho uma mensagem html padronizando o encerramento sa sessão e link para reconexão. No create do UniMainModule estou definindo um código diferente de html para UniMainModule.ServerMessages.TerminateTemplate para quando a sessão for encerrada. Se UniMainModule.ServerMessages.TerminateTemplate eu não informo nada, o primeiro código funciona. Se informo algo, o primeiro código é ignorado e mostrado o segundo código. Se enviei uma mensagem específica para encerramento da sessão, não deveria ser observado essa mensagem?
  14. Would it be possible in cases of failures handled in the system, open a certain html file that is on the server at the end of the session? It is not a page that is running on another service, it is just an html file
  15. Solution: Try .... finally Freeandnil (fr); end; tanks
  16. He experimented using TuniFrame to use some reports that have visual interaction screen with the user. However, I have some difficulties when there is a failure to prepare the report. In Tuniframe, there is a method that will prepare the report, and if so, preview the file and successively destroy the frame. This works perfectly However, when the preparation method fails, the frame is not being destroyed. If an attempt is made to run the report again, we received an error that the frame already exists. How should we proceed in such a situation? procedure TfrmFinanceiro_Associado.UniSpeedButton3Click(Sender: TObject); var FrC : TUniFrameClass; Fr : TUniFrame; begin if qrydados.IsEmpty then exit; FrC := TUniFrameClass(FindClass('TFrameEmissaoBoleto')); if frc <> nil then begin fr := TUniFrameClass(FindClass('TFrameEmissaoBoleto')).Create(self); if fr <> nil then begin datamodel.link.Util.PassaObject(fr,'SelectedFields',qryDados.Fields); if not datamodel.link.util.ExecutaMetodo(fr,'prepara') then FreeAndNil(fr); end; end; end;
  17. OK, we have to deal with accounting plans, and it's tricky to deal with it without this option, as there are multiple levels of accounts, which can be changed.
  18. Please, would there be any solution to the case
×
×
  • Create New...