

Pep
uniGUI Subscriber-
Content Count
44 -
Joined
-
Last visited
-
Days Won
1
Pep last won the day on February 8
Pep had the most liked content!
Community Reputation
12 GoodAbout Pep
-
Rank
Newbie
Recent Profile Visitors
281 profile views
-
Hello, The team support can confirm this issue? please! Regards.
-
Pep started following Grid - RowWidget Issue
-
Hello, I found this issue when using rowwidget with frames. When a user expand a row in Frame1 and then the user selects Frame2, and then return to frame1. See sample. I have attached a test case. Regards. Grid - RowWidget.7z
-
In TuniPageControl set TarBarVisible := False
-
In First Anonymous procedure you are checking if Result = mrOk in the other you didn't check Result
-
Hello, try this: procedure CallActionFrm2(I: integer); var AfrmBaseDictionaryList: TfrmBaseDictionaryList; tmp: Integer; begin tmp := I; with TfrmBaseDictionaryList.Create(UniApplication) do begin ShowModal( procedure(Sender: TComponent; AResult: Integer) begin if AResult = mrOk then begin tmp := 100; edtInn.Text := IntToStr(tmp); end; end ); end; end; ... procedure TfrmAdmPlanItem.btnSearchClick(Sender: TObject); var id: Integer; begin id := 1; CallActionFrm2(id); end;
-
Thank you very much to share this code
-
Avoid These noob mistakes when installing Godaddy SSL Certificates on IIS sever
Pep replied to M.Ammar's topic in Deployment
Thank you very much!- 1 reply
-
- 1
-
-
Thank you very much, the sample is very usefull
-
Can I do the following (procedure inside a procedure for a MessageDlg call)?
Pep replied to paul.coshott's topic in General
Hello Paul, In Delphi 10.2, the Callback procedure "mbDeleteStaff" does'nt compile if is defined inside another procedure / function. You can use an anonymous procedure: MessageDlg('Delete the selected staff member?', mtConfirmation, mbYesNo, procedure(Sender: TComponent; Res: Integer) begin // code here to delete the staff record if Res = mrOk then begin qStaffDelete.ParamByName('pStaffId').AsInteger := qStaff.FieldByName('pStaffId').AsInteger qStaffDelete.ExecSQL; end; end ); -
"TUniCustomButtonItem" has the ScreenMask property and by code you can use it, but in runtime mode raise exception "invalid class typecast" var Col: TUniBaseDBGridColumn; BtnCol: TUniCustomButtonItem; begin Col := Grid.Columns.Add; Col := Grid.Columns.Add; Col.ActionColumn.Enabled := True; BtnCol := TUniCustomButtonItem(Col.ActionColumn.Buttons.Add); BtnCol.ScreenMask.Enabled := True; // <-- Compiles but in runtime mode raise exception "invalid class typecast" end Anybody knows if Is there another alternative to show ScreenMask on click action column? Thanks in advance!
-
Megademo (mdemo.dproj) - working in recent UniGUI or borked?
Pep replied to wprins's topic in General
Hello wprins, I'm using Delphi 10.2 with uniGUI Version:1.90.0 build 1496. The app seems that works ok! -
Yes, the uniGUI Demo was very power, The classic "Hello World", but with scrpting!!, Very interesting! Take a look if you can.
-
timeout uniGUI DOES SESSION TIMEOUT PROPERLY
Pep replied to Fred Montier's topic in Components and Code Samples
Thanks a lot for sharing! -
avatars uniGUI DOES CIRCULAR IMAGES aka AVATARS
Pep replied to Fred Montier's topic in Components and Code Samples
Thanks a lot!