Tagged Questions
6
votes
2answers
1k views
Why do I get “type has no typeinfo” error with an enum type
I have declared the following enum type in which I want the first member to have the ordinal value of 1 (one) rather than the usual 0 (zero):
type
TMyEnum = (
meFirstValue = 1,
...
3
votes
4answers
2k views
String representation of the content type of a Variant?
first apologies for my english, I hope it make sense what I`ve wrote here. Now to my problem.
How can I get the string representation of the content type of a Variant using TypInfo.GetEnumName(). I ...
3
votes
3answers
1k views
How to know what type is a var?
TypeInfo(Type) returns the info about the specified type, is there any way to know the typeinfo of a var?
var
S: string;
Instance: IObjectType;
Obj: TDBGrid;
Info: PTypeInfo;
begin
Info:= ...
1
vote
1answer
213 views
Enumerated types with specified values do not have TypeInfo, why?
Using Delphi 2007 I can write the following code:
interface
TTestType = (ttTest1, ttTest2);
procedure enumName;
var
EnumName: String;
begin
EnumName := GetEnumName(TypeInfo(TTestType), ...