delphi-xe6 Questions
4
I try to include resource files in my package. When I construct the package, I read this warning :
[dcc32 Conseil] H2161 Warning: Duplicate resource: Type 10 (RCDATA), ID PLUSUTILISEVOIR; File Pro...
Altair asked 20/10, 2014 at 14:30
2
Solved
I am trying to achieve the age-old Delphi dream of having a modeless form appear in the taskbar.
What is the correct way to have a modeless form appear in the taskbar?
Research Effort
These ar...
Pugging asked 12/6, 2015 at 18:4
9
Solved
I have this problem. When I hide my main form, then the taskbar icon of my application is also hidden. I saw a new question about this problem as well and the answers didn't really help. They sugge...
Fenugreek asked 4/9, 2014 at 13:20
4
There seems to be align property that works really well, but is is possible to align element so all elements on panel would be aligned to center all on bottom of each other if they all have less th...
Beltz asked 19/5, 2014 at 17:47
4
Solved
Similarly to any way to compare an integer variable to a list of integers in if statement but in Delphi, how can I test whether an integer variable is contained in a static "list" (loosely speaking...
Stav asked 13/5, 2015 at 10:47
1
Solved
Delphi can have enumerated types, e.g.:
type
TDay = (Mon, Tue, Wed, Thu, Fri, Sat, Sun); // Enumeration values
Is it possible to union enumerated types:
type
TWeekDay = (Mon, Tue, Wed, Thu, F...
Schacker asked 2/1, 2020 at 20:57
1
Solved
Why is it that using generic types in a global procedure is not permitted. For example:
procedure Foo<T>(bar : T);
Compiler Error: E2530 Type parameters not allowed on global procedure or...
Hypochondrium asked 23/5, 2018 at 5:0
1
Solved
If a user is using a screen reader (e.g. Microsoft Narrator), and their focus enters a text box:
All they hear is:
Editing text
Meanwhile in accessible applications,
such as Microsoft Fi...
Vallecula asked 28/3, 2018 at 15:6
5
The goal is to achieve full usage of the available cores, in converting floats to strings in a single Delphi application. I think this problem applies to the general processing of string. Yet in my...
Nogas asked 22/1, 2015 at 0:22
1
I am in need of help trying to get the ampersand character to show up in a Delphi XE6 VCL TActionMainMenuBar. I have come across similar requests on Stack Overflow but none that directly address th...
Philter asked 1/2, 2017 at 22:5
2
Solved
In order to see multiple view in one window i read this answer but it seems that those options not available any more, now my question is how configure rad studio xe6 to see more than one view in w...
Psychoneurosis asked 9/7, 2014 at 7:25
3
Solved
How do i implement IEnumerable<T>?
Background
Lets say i have a class that i want to implement IEnumerable<T>:
TStackoverflow<T> = class(TInterfacedObject, IEnumerable<T>...
Palladium asked 24/10, 2014 at 14:29
1
Solved
I have some code which uses EnumFontFamiliesEX to determine whether a particular font (using its "facename") is installed. The code was working fine in 32-bit. When I compile and run it as 64-bit, ...
Adrieneadrienne asked 15/2, 2017 at 23:32
2
Solved
How can I slice a dynamic array to multiple sub arrays? Slice() function in Delphi does not support dynamic arrays. So how can it be done? A generic solution would be welcome.
program Project10;
...
Outofdoor asked 25/6, 2014 at 8:43
1
Solved
Using Delphi XE6, I am creating a TdateTimePicker-like control, but for a couple of reasons, I am using a TButtonedEdit which has a TMonthCalendar "embedded" within it. A full bare-bones demo is:
...
Cryolite asked 4/1, 2017 at 20:51
1
I create two units and put a first class into one of them:
unit UBaseClass;
interface
type
TBaseOuterClass = class
protected type
TBaseInnerClass = class
public
end;
protected
functi...
Imposture asked 12/11, 2016 at 2:45
5
Setting a form to WindowState = wsMaximized will sometimes cause the form to be maximized but not:
Long-time bug: this is a question I first asked in the Borland newsgroups in 2003:
Accepted f...
Blood asked 20/10, 2013 at 17:15
1
Solved
I have a custom control:
type
TContosoFrobber = class(TCustomControl)
private
end;
Internally, my component creates a control:
type
TContosoFrobber = class(TCustomControl)
private
FMyDate...
Ernie asked 14/9, 2016 at 19:40
2
Solved
How can i change the font size of the IDE itself of Delphi XE6.
The IDE's dialogs are not using my Windows font preference, and i cannot find any option to change the font used by the IDE.
Alte...
Islam asked 21/7, 2014 at 19:33
1
Solved
I am trying to use a TSaveDialog in Delphi XE6:
if not SaveDialog1.Execute(0) then
Exit;
The call immediately returns false, without displaying any dialog. I traced it down to the act of creati...
Sober asked 17/12, 2015 at 20:17
1
Solved
I am trying to use a disconnected ADO Recordset in XE6. The idea is that you open the recordset normally, then you set the recordset's ActiveConnection to your language's equivalent of null/Nothing...
Bradawl asked 14/8, 2015 at 19:24
1
Solved
In a Delphi application, when you hover over a border icon, e.g.:
Minimize
Maximize
Restore
it doesn't behave correctly:
Compare to an application that does behave correctly:
Step to Repr...
Agnostic asked 25/7, 2015 at 19:25
1
Solved
I have two "modeless" forms:
one is the special MainForm
the other is a modeless form
You can see:
both exist on the taskbar
both have a taskbar button
both can be independantly minimized
b...
Canaille asked 29/7, 2015 at 16:14
2
Solved
I want some way to write a function in delphi like the following
procedure Foo<T>;
begin
if T = String then
begin
//Do something
end;
if T = Double then
begin
//Do something else
en...
Flyweight asked 25/6, 2015 at 6:40
2
Solved
I have an existing class, that has an existing method, that allows you to pass it a list of stuff:
TContoso = class(TSkyrim)
public
procedure AddObjects(Objects: TList);
end;
And so, in the bef...
Hagio asked 2/11, 2014 at 16:42
1 Next >
© 2022 - 2024 — McMap. All rights reserved.