Jump to content

Skepsis IT

uniGUI Subscriber
  • Posts

    222
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Skepsis IT

  1. I've created a new application and your code works fine. However at my app that opens a frame to a tab at mainform does not work. Works only if I created unilineseries at designtime, and have Unichart1.SeriesList.Clear; at the start of your code. And you have to create the number of series that you want at design time.... Perhaps it is a bug!
  2. Unichart1 on my occasion is on an inherited uniframe. Is that related? Or is an issue of that specific build?
  3. Build 1436 You already posted the testcase above It is similar to yours.... Does the above code works on your pc?
  4. Hi everybody, is there a way finally to create series dynamically to a tunichart. I've tried solutions by setting the parent e.g. alineseries.Parent:=unichart1; also using SeriesList e.g. unichart1.SeriesList.Add(alineseries); but nothing work, black chart all the time. Does anyone has a solution? Regards
  5. Yes only once at a time. More specifically when a record is loaded
  6. Hi, using build1496. Testcase is a little bit difficult, but the scenario is simple. I've got a unidbgrid with a unihiddenpanel that has 1 uniedit, 1 uniformatednumberedit and 1 unispinedit. Unidbgrid has 3 columns created at design time. According to a specific field I set the appropriate editor to the column. e.g. if mu.DSCR='INTEGER' then uniDBGrid1.Columns.Items[1].Editor:=edtInteger else if mu.DSCR='DECIMAL' then begin edtDecimal.DecimalPrecision:=mu.DECPOINT; edtDecimal.FormattedInput.DecimalGroup:=mu.DECPOINT; UniDBGrid1.Columns.Items[1].Editor:=edtDecimal; end else UniDBGrid1.Columns.Items[1].Editor:=edtTime;
  7. Hi, when I set editor dynamically using also columns that created dynamically works ok. However when columns created at design time, set editor dynamically to specific columns not working. eg. uniDBGrid1.Columns.Items[2].Editor:=edtInteger Does anybody deal with that issue? Thanks
  8. Hi, check create order of your components. If all of them are zero, set numbers starting from 1 from username and go on.
  9. Hi, another alternative could be tms Xdata
  10. Hi, you don't need to implement such components because mostly all components of unigui had already a label and you can select where to be placed (top, left etc) Check the properties for label staff Regards
  11. Thank you Schuiab... Excellent wishes text!!!! Happy New 2017!!!
  12. Hmm, I think that not going to work. I am not 100% sure but windows services cannot interact with the desktop. It's a kind of isolated. Google it a little bit, if you find another solution
  13. Hi, Create a new service project, transfer all your pas, dfm etc files, add them to the new project, compile and you are ready
  14. Hi Another solution is to create a free data module that contains your queries, business logic etc, and create an instance of it from the form you need it by overriding the create constructor.
  15. Hi Hayri, what is the way for buying your components?
  16. Hi, is there a way to convert an application form to free form? Regards
  17. Hi, You can create an ini file or a text file in general that has all the appropriate data that you connection component needs (Firedac, dbGo etc). Then retrieve and manipulate this file using UniServerModule.StartPath +'yourfilename.xxx' Regards
  18. Hi, 1. Update to latest ExtJS 2. More sophisticated dbgrid, like devexpress 3. Scaling possibilities Thanks
  19. Unfortunately not this is only for IIS. You can use more traditional methods for an exe file.
  20. Unfortunately not this is only for IIS. You can use more traditional methods for an exe file.
  21. Thanks for the declaration Farshad. It should be declared in a more clear way at the documentation also.
  22. Hi everybody, I have an 64bit app and I deployed to IIS 8.5. When I enabled Enable 32bit applications to True, I've got an HTTP Error 500.0 - Internal Server Error with Error Code 0x800700c1 When I disable it the application runs. Is that ok or I will have a problem that I didn't realize it right now? Regards
  23. Hi, if you meant to collapse/expand all the grid, just put it on a unipanel with Collapsible Property at True. Regards
×
×
  • Create New...