Jump to content

d.bernaert

uniGUI Subscriber
  • Posts

    370
  • Joined

  • Last visited

  • Days Won

    10

d.bernaert last won the day on December 20 2022

d.bernaert had the most liked content!

Recent Profile Visitors

2264 profile views

d.bernaert's Achievements

Advanced Member

Advanced Member (4/4)

75

Reputation

  1. This can also be done easily with the following configuration: Alignment: client Form layout: border Upper panel: region: north Mid panel: region: center Bottom panel: region south
  2. I have the same problem. I never found a solution for this and i need to run Delphi in DPI unaware mode which is not fun, because fonts are dotted, everything is not sharp on a 4K monitor. It's the only way i know to make it scale correctly. I even reported this to Embarcadero and they said they would not consider having the IDE high resolution and the visual designer low resolution as other frameworks do not have this problem (like TMS). Dominique
  3. Is there still somebody of Unigui available here? It's really quiet here.... I'm getting very worried.
  4. I've been able to solve this, but i have another problem. I have attached a testcase. I have a button to create a new record. I do an append, fill in the default values, post the data and put the table in edit mode. When entering data in the line When creating a new line and entering data in the value of the field is reset when going to another field. You can see it in the attached screenshot, the value of the second column is reset after entering the third field and going to the next field. Gridedit.mp4 TestGridEdit.zip
  5. Hi, I'm trying to implement this and it works good, but the event is also fired when pressing the tab button to go to the next field in line of the grid. This makes that by tabbing to the next field the record is posted and the user needs to click the selected field again to edit it. Is there a workaround for this? Thx, Dominique
  6. Hi, I have a trigger on an edit field. When clicking the trigger, a pop-up should be shown with possible choises. I can activate the event by using popupby but it aligns to the left of the edit field, i would like it to popup below the trigger. Is that possible? Thanks, Bernaert Dominique
  7. Still having problems. Here included is a very simple test case. Problemdynamiccreate.zip
  8. Think i found it. I was trying to remove components when the form was not yet in the ready state.
  9. Hi, I'm trying to create dynamically controls on a unitabsheet and recreate them in function of a selection of the user. I see some weird behaviour when trying to remove components, components that are on another tabsheet become visible on the tabsheet where i remove the components. I'm using this routine to remove the components: I := Unitabsheet.ControlCount - 1; While I >= 0 do begin WorkControl := Unitabsheet.Controls[I]; if assigned(WorkControl) then FreeAndNil(WorkControl); Inc(I, -1); end;
  10. Hi, I was wondering if it would be possible to drag and drop in the same dbgrid to change the sequence of the records. In the database, each record has sequence value and the dataset is sorted on that field. The user would like to be able to click a record in the grid and drag it up or down the grid to change the position of the record in the grid. At that moment i have to change the sequence of the dragged record so persist, but that is not the problem. I was wondering if it is possible and how this event could be catched. Thank you, Bernaert Dominique
  11. Hi, I'm looking for a solution to show rtf files in the office online viewer. We can open Word documents, Excel documents, ... without a problem, but i cannot preview rtf-files. Is there a way to show rtf-files in the Office online viewer? The Google docs previewer gives problems with rtf-files. I found this thread but don't know how to do this: https://answers.microsoft.com/en-us/msoffice/forum/all/office-online-viewer-supports-rtf/b51fb1db-41b4-4c43-9725-e26d2f69394d Thanks for any feedback. Dominique
  12. Hi Bahry, how do you handle the oauth authentication in Unigui? Dominique
×
×
  • Create New...