
JamesC
Members-
Content Count
8 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout JamesC
-
Rank
Newbie
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Thank you Sherzod. I will adjust it later.
-
Thank you for your so quick reply. I am using 1.90.0.1530.
-
I am currently using unimTabPanel instead of UniPageControl in mobile application. Tried to put this beforeInit function inside TabPanel or every individual TabSheet, tab position is always on top. Any advice? Thanks.
-
I have the same issue for TUnimLineSeries. Create LineSeries in FormCreate event as below. procedure TMainmForm.UnimFormCreate(Sender: TObject); var k: Integer; begin with chtV006Group.SeriesList do for k := 0 to (Length(aryCouriers) - 1) do begin Insert(k, TUnimLineSeries.Create(chtV006Group)); TUnimLineSeries(Items[k]).Title := aryCouriers[k].FullName; end; end; And get error message: Project Project1.exe raised exception classs $C0000005 with message 'access violation at 0x0074af8c: read of address 0x00000444'. program pointer is pointed to this line when
-
I am trying to create ISAPI module with Apache, but get database connection error. [FireDAC][Phys][FB]-314. Cannot load vender library [fbclient.dll or fbembed.dll]. The specified module could not be found. fbclient.dll needs to be copied to folder \Apache24\bin Directory of C:\Apache24\htdocs 06/01/20 15:18 1,381,376 fbclient.dll 05/10/17 21:35 16,177 firebird.log 21/04/20 13:51 13,819 index.html 06/08/20 20:27 6,210,048 MobISAPI.dll Program code is shown below. If it is compiled as VCL Standalone program, it can be run properly. type
-
Hi, When I test unimDBListGrid, it can fine with limited fields. If the dataset has many fields and I would like to show them all in grid, how to make it possible to scroll datagrid horizontally? Thanks. ====> Update: Found the problem: I used DBListGrid instead of DBGrid, referring to sample: FMSoft\Framework\uniGUI\Demos\Touch\DBGrid Column Resize But still, is it possible to do the same thing for DBListGrid? Thanks.
-
Thanks for @mhmda who has posted one topic as "DBGrid Clientside Sorting". URL: http://forums.unigui.com/index.php?/topic/6225-dbgrid-clientside-sorting/&page=2&tab=comments#comment-69592 Unfortunately, two screensnaps of code samples are disappeared for some reason. Can any one post them out again? Thanks.
-
@Sherzod Thanks for your information about GridColumnSort demo. I studied this example and am wondering: Where are those data records coming from? Refer to other demos, there is one command for data records: UniMainModule.LoadClientFromStream(ClientDataSet1,'biolife.cds'); Thanks.