Jump to content

Farshad Mohajeri

Administrators
  • Posts

    12127
  • Joined

  • Last visited

  • Days Won

    811

Everything posted by Farshad Mohajeri

  1. procedure TMainForm.UniDBGrid1DrawColumnCell(Sender: TObject; ACol, ARow: Integer; Column: TUniDBGridColumn; Attribs: TUniCellAttribs); begin if ARow=5 then begin // set color end; end;
  2. As additional note: WebMode property is available in other unigui components too.
  3. ExtJS supports drag and drop through Ext.dd.DragDrop component. I haven't analyzed it but there are several examples under examples folder.
  4. Looks like registry settings are not properly set. Can you verify uniGUIRTTI.dcu exists in its folder? You can try a complete uninstall and a full reinstall.
  5. When used with mssql, DBexpress uses COM interface. Send a test case if you can't resolve the issue.
  6. Band master by itself can't cause this problem. What other components do you put in band master?
  7. As I said before, start with a blank or simple report first and see if this problem persists.
  8. UniServerModule->AutoCoInitialize->True
  9. 1) Use UniServerModule.logger.AddLog() function to add all steps in your code to prepare a report 2) Start with a blank report then add your FR controls one by one. Some of the FastReport controls aren't compatible with multi-threading.
  10. This may help: procedure TMainForm.UniBitBtn1Click(Sender: TObject); begin UniImage3.Picture.LoadFromFile(GetModulePath(HInstance)+'\SunSet.png'); UniImage3.Width:=UniImage3.Picture.Width; UniImage3.Height:=UniImage3.Picture.Height; UniPanel1.ReCalculateAligns; end;
  11. You need to log all steps in your code to see where actually the problem starts. Also look at the error logs.
  12. Support for famous mobile forum client software Tapatalk added. Now you can read and post to our forums from your mobile device (iOS & Android) using Tapatalk client.
  13. Visual VCL components can not be used with unigui. You must use non-visual reporting components.
  14. We are moving to Ext 4.1 and we may add this feature too.
  15. You can't call Pascal methods from JavaScript code! Buttons and other objects are Ext JS objects and you need to review Ext JS API reference to see methods and properties available at runtime. http://docs.sencha.com/ext-js/3-4/
  16. Install Delphi from latest ISO then install TeeChart from here. Finally install uniGUI.
  17. Install update 4 + hot fix then install tee chart.
  18. Please see the release note about UniChart issue with XE2.
  19. See one of our client demos which shows how to access uniGUI objects from JavaScript code.
  20. an can not access its parent DOM for security reasons. You need to use a TUniHTMLFrame instead.
  21. These methods aren't implemented yet and will be added in next build.
×
×
  • Create New...