Jump to content

Marlon Nardi

uniGUI Subscriber
  • Posts

    613
  • Joined

  • Last visited

  • Days Won

    70

Everything posted by Marlon Nardi

  1. I'm looking at the code here. very creative this idea, is an alternative. but it would be great this new field, it would facilitate the development, (easy and simple).
  2. Hello thiago.ferreira, to enable the fonts in your application you must add the MimeType. add the file extensions that you want to allow. in the OnCreate event ServerModule add: eg .ttf extension MimeTable.AddMimeType('ttf', 'application/font', False);
  3. add a search on this screen, the same exists in Delphi VCL
  4. There is another simple way also, if you are using IIS: 1 - Select your Website or Application (depends on how you created it). 2 - Select the standard document option, 3 - Add the name of your DLL
  5. was not today, I had this problem when mportal was in version 0.98.0.1117 13/12/2014 16:21
  6. I also had this problem, to solve CTRL + F5, the problem did not occur again.
  7. worked perfectly, thank you ...
  8. are located in the root folder \ fonts .woff extension and .ttf
  9. Good morning Farshad, I'm using the latest Build, and is still locking the files.
  10. Thanks for the personal tips, I analyzed what Mohammed said. Consumes more I / O.
  11. adding the properties of Action buttons, as already exists for TUniMainMenu items.
  12. Good personal day, for those who like performance with low memory consumption, following a static class that reduces memory consumption in UniGui applications. I'm already using this class on systems that there are many users connected and memory-intensive. to call the class: TGarbageCollector.Execute; unit U_GarbageCollector; interface type TGarbageCollector = class private public class procedure Execute; end; implementation uses Winapi.Windows, Vcl.Forms; { TGarbageCollector } class procedure TGarbageCollector.Execute; var MainHandle : THandle; begin try MainHandle := OpenProcess(PROCESS_ALL_ACCESS, false, GetCurrentProcessID); SetProcessWorkingSetSize(MainHandle, $FFFFFFFF, $FFFFFFFF); CloseHandle(MainHandle); except end; Application.ProcessMessages; end; end.
  13. like, there is also this open source project, I'm working among him. http://github.hubspot.com/shepherd/docs/welcome/?__hstc=19142973.f6d41c7aa3ef28623a680dd59e0a79c7.1413859810978.1416676037242.1416749112060.3&__hssc=19142973.22.1416749112060&__hsfp=2081637456
  14. Good Morning, how do I enable extensions in UniGui in standalone mode? in my application I have a javascript that refers to the fonts folder, it has two files: Obs. This problem does not occur when it is executed by IIS.
  15. how do I get a list of screens instantiated by the application? eg UniMainModule.GetListModuleInstance
  16. Add TUniImageList UniBitBtn property equal to the button of DevExpress Add to EmptyText property in the following components: UniComboBox, UniDBComboBox, UniDBEdit, UniMemo, UniDBMemo Add to allowBank property components Input:
  17. Has anyone managed to do something similar in Unigui? http://docs.sencha.com/extjs/4.2.2/extjs-build/examples/portal/portal.html
  18. Event -> FileUploadCompleted ExtractFileName(FileUpload.FileName)
×
×
  • Create New...