Jump to content

Marlon Nardi

uniGUI Subscriber
  • Posts

    611
  • Joined

  • Last visited

  • Days Won

    69

Everything posted by Marlon Nardi

  1. -1 30 years I have been working at delphi for 11 years. Delphi C# R and now NodeJS
  2. I believe this would be the same subject: http://forums.unigui.com/index.php?/topic/8433-jose-json-object-signing-and-encryption/?hl=jwt&do=findComment&comment=43253 for this to be possible Farshad would have to implement this
  3. Eu faço desta forma aqui para os meus sem problemas, tente desta forma: var Frm : TUniForm; FrmClass : TUniFormClass; ... FrmClass := TUniFormClass(FindClass(vNameForm)); Frm := FrmClass.Create(UniApplication); Frm.ShowModal(); Lembrando de registrar sempre os form initialization RegisterClass(Tformexample);
  4. Herculano, verifique se voce não possui algum html o js embutido neste seu form. O240=new Ext.form.Canvas({id:"O240_id",ajxS:AjaxSuccess,ajxF:AjaxFailure,fieldSubTpl: [ "<canvas id=\"O240_canvas\" width=\"49px\" height=\"30px\">Your browser does not support <Canvas> element.</canvas>"],name:"O240",enableKeyEvents:true,paintMode:3,style:"background-color:#FFFFFF;",fieldStyle:"font:13px Tahoma",width:49,height:30,x:10,y:24}); Este erro também ocorre se voce criar um form vazio?
  5. Olá MHS. Para publicar sua DLL segue um passo a passo que fiz para ajudar os demais colegas: https://store.falconsistemas.com.br/documentacao/publicando_sua_aplicacao_no_IIS_ISAPI_Module.pdf ou você pode estar seguindo o próprio manual do uniGui: http://www.unigui.com/resources/online-documentation/developer-manual
  6. Hello, If you want something ready, there is in my store a theme component that fits perfectly for your need: https://store.falconsistemas.com.br-> FSTheme Or you can get the same result by changing your css in hand.
  7. Hello Dan, This is true, in this case who is managing the icon of your App on the Iphone is Safari, the behavior that it does is this. To circumvent this problem and the user to have a better experience, I made a simple application in XCode that simply opens a WebView and calls the page of my mobile, it is also hoped in IIS. https://itunes.apple.com/us/app/icb-c%C3%A9lula/id1307712423?mt=8
  8. my inspiration http://forums.unigui.com/index.php?/topic/8954-me-myself-cart-a-new-mobile-app-with-full-source-code/
  9. the two technologies that I use most here in the company, were the ones that stood out the most this month, Delphi and R
  10. Isso geralmente ocorre quando você utiliza algum css externo em sua aplicação.
  11. let the unigui generate the link: UniServerModule.NewCacheFileUrl(False, 'pdf', FormatDateTime('ddmmyyyyhhmm', Now)+'myfirstrel, '', URL); UniSession.AddJS('var newWin = window.open("'+URL+'"); '+ 'if(!newWin || newWin.closed || typeof newWin.closed==''undefined'') '+ '{ alert(''Atenção, os pop-ups para esta página estão bloqueados!'');} ');
  12. http://forums.unigui.com/index.php?/topic/9353-open-form-in-new-browser-tab/ check also if your file is accessible: '/files/PDFs/'+FormatDateTime('ddmmyyyyhhmm', Now)+'myfirstrel.pdf'; UniSession.AddJS('var newWin = window.open("'+URL+'"); '+ 'if(!newWin || newWin.closed || typeof newWin.closed==''undefined'') '+ '{ alert(''Atenção, os pop-ups para esta página estão bloqueados!'');} ');
  13. UniSession.AddJS('var newWin = window.open("'+AUrl+'"); '+ 'if(!newWin || newWin.closed || typeof newWin.closed==''undefined'') '+ '{ alert(''Atenção, os pop-ups para esta página estão bloqueados!'');} ');
  14. inside the demo folder has what you need. C:\Program Files (x86)\FMSoft\Framework\uniGUI\Demos\Desktop\FastReport
  15. Change you code: TThread.Synchronize(nil, procedure begin MainForm.UniMemo1.Lines.LoadFromStream(ARequestInfo.PostStream); //not works :-) //or MainForm.UniMemo2.text := strRead; MainForm.UniMemo2.Lines.SaveToFile(Uniservermodule.FilesFolderPath + 'test.txt'); //not works :-) end); to example var FS: TFileStream; -- FS := TFileStream.Create(Uniservermodule.FilesFolderPath + 'test.txt', fmCreate) try FS.Seek(0, soFromEnd); FS.Write(Pointer(ARequestInfo.PostStream)^,Length(ARequestInfo.PostStream)); finally FS.Free end Another detail, your call must be within an active session. In this case you are trying to manipulate an object that is not in a session, it is only in ServerModule. This here in the server module is not a good idea: MainForm.UniMemo2.
  16. or add in web.config: <rewrite> <rules> <rule name="Redirect HTTPS" enabled="true" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="^OFF$" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" /> </rule> </rules> </rewrite>
  17. I have developed a free component to facilitate this, if you are interested in FSMask and FSDBMask, you can also change it and add it to your wiki. https://store.falconsistemas.com.br
  18. Let's enrich the content community, congratulations ...
  19. http://forums.unigui.com/index.php?/topic/8922-forcefit-at-runtime/?p=45990
  20. Check your settings: http://www.unigui.com/doc/online_help/reporting-tools.htm http://www.unigui.com/doc/online_help/fast-report.htm http://www.unigui.com/doc/online_help/important-notes-on-fastreport-.htm
  21. Você consegue fazer isso via CSS, porém tem que entender exatamente sua necessidade disso.
  22. ForceFit: Grid.ClientEvents.UniEvents.Values['beforeInit'] := 'function (sender, config) { config.forceFit = true; }'; AutoSize: Grid.ClientEvents.ExtEvents.Values['store.load'] := 'function (sender, records, successful, eOpts) ' + ' { ' + ' sender.grid.columnManager.columns.forEach(function(col) '+ ' { '+ ' col.autoSize(); '+ ' }) '+ ' } ';
  23. Very good, congratulations, mohammad
  24. These themes are unique to Sencha 6.2, this is in the roadmap: Https://www.youtube.com/watch?v=lKQOkzu5bL8&t=4327s
×
×
  • Create New...