Jump to content

Timothy lam

uniGUI Subscriber
  • Posts

    55
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Timothy lam

  1. Sorry. I'm mistake. It is related to Devart product.
  2. Hi, I upgraded the version from 1.90.0.1564 to 1.90.0.1565 today. But I open the past project that has an error "TUniConnection not found". How to solve it?
  3. Dear, I sent many times of email to support that without any reply. So I post the message here. Is it possible to change my register email address to other?
  4. Hi, Needn't convert from 2-tier to 3-tier when using UniGui? In my understand, HyperServer should handle the traffic load balancing. So it need not to using MiddleWare for handle load balancing. Am I right? Thanks!
  5. Any event to trigger the UniFrame? In VCL, form has OnShow event or OnActivate event. So I can use it for checking. But UniGui hasn't this feature.
  6. Hi, User click the button to change the display language. If UniPageControl already created the number of tabsheets, how to change the uniLabels for those created tabsheets? Or which tabsheet is active then refresh the uniLabel language.
  7. Hi, Main form has 1 button for change the UniLabel in UniPageControl all tabsheets. Is it possible to do this? Or only trigger in the activepage. Let activepage to check the variable and then change the UniLabel.
  8. Sorry that I'm difficult to prepare the simple testcase. Because create the fields and dbgrid columns for multiple tabsheets by query runtime. Besides, using Stored procedure with multiple dataset to assign to Clientdatasets. But I found the problem come from "DisplayMemo = true" option when create the dbgrid column. If I remove this option. It is normal without problem.
  9. Hi, If column width 50 and field data length is over 60, it can't show the full row in bottom of UniDBGrid. If I set column width to 100, then it can show normal at the last row.
  10. Hi, I found uniDBGrid can't show the last record if column width is less than data content.
  11. Hi, Please ignore my issue. I found the solution. Thanks
  12. Hi, I have the query that need to process lot of data. If user doesn't wait it and click query again or many times, then it has the problem. How to show the progress bar when click the query button? After complete the query, it will close the progress bar automatically. Thanks
  13. Noted with thanks. Wait for your new update information.
  14. Hi, I prepared the testcase for your reference. Please check "UniTabSheet2". It has 2 problems. Once is delay when expand the UniPanel. Second is wrong Panel Height. I need to using "UniPanel.Height := UniPanel.Height + 30" under "UniFrameReady" that to show all contents testPanel.7z
  15. Hi, Sorry that I overlooked to this. Thanks
  16. Hi, Any fast lookup in DBLookupComboBox? For example, I keyin first 1 character, it can locate the first record for me. Or any component can keyin something, then I click the dropdown button. It can locate the first record in LookupComboBox.
  17. Hi, I has around 2 second delay when I click to expand the UniPanel. Collapse is normal smoothly.
  18. Hi, I tried to using collapsible feature in UniPanel. But I found it is not smooth when expand the UniPanel. How to make it smoothly without delay?
  19. Hi, Is it possible like Devexpress cxGrid filter function in UniDBGrid?
  20. Please ignore this. I found the problem is missing Columns.BeignUpdate and EndUpdate
  21. Hi, I googled the information and using the following code. It can't generate the filter function in the DBGrid. Am I missing something else? while not ds_fields.Eof do begin with dbg_list.Columns.Add do begin FieldName := ds_fields.FieldByName('COLUMN_NAME').AsWideString; Title.Caption := ds_fields.FieldByName('COLUMN_NAME').AsWideString; Width := ds_fields.FieldByName('GRID_WIDTH').AsInteger; Font.Charset := ANSI_CHARSET; Font.Name := 'Verdana'; DisplayMemo := True; Sortable := True; with TUniEdit.Create(Self) as TUniEdit do begin Left := 10; Top := 10; Parent := UniHiddenPanel1; Text := ''; Width := 30; Name := 'Edit'+ds_fields.FieldByName('COLUMN_NAME').AsWideString; end; Filtering.Enabled := True; Filtering.editor := TUniEdit(Self.FindComponent('Edit' + ds_fields.FieldByName('COLUMN_NAME').AsWideString)); end; ds_fields.Next; end;
  22. User can using the combobox for choosing the language. I will using Tsilang to change the language. It works in main screen. But UniPageControl will not change the language.
  23. I tried before. All DLL files are copied from my VCL project. VCL project is working fine.
×
×
  • Create New...