Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6474335
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T06:34:31+00:00 2026-05-25T06:34:31+00:00

Given an enumerated type declaration in Delphi such as: TMyType = (Item1, Item2, Item3);

  • 0

Given an enumerated type declaration in Delphi such as:

TMyType = (Item1, Item2, Item3);

is there any way to add a fourth item, say Item4, to the enumerate type at runtime so that
at some point during the application’s execution I have:

TMyType = (Item1, Item2, Item3, Item4);

Or are types fixed in Delphi?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T06:34:32+00:00Added an answer on May 25, 2026 at 6:34 am

    No, you ‘can’t’ do this. It is against the way Delphi works. (Recall that Delphi checks your types already at compile time.)

    If I were you, I’d not do

    TComputerType = (ctDesktop, ctServer, ctLaptop, ctNetbook, ctTablet)
    

    Instead, I’d do

    TComputerType = integer;
    
    const
      COMPUTER_TYPE_DESKTOP = 0;
      COMPUTER_TYPE_SERVER = 1;
      COMPUTER_TYPE_LAPTOP = 2;
      COMPUTER_TYPE_NETBOOK = 3;
      COMPUTER_TYPE_TABLET = 4;
    

    I am sure you get why.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given a Python object of any kind, is there an easy way to get
Given absolute or relative position (top & left) is there any way to get
This is probably going to be a no, but is there any way I
Is there a way to check whether a process with a given process ID
Is there a way to enumerate a process with a given PID in Windows,
Given two integers is there an easy way to find the largest modulus of
Is there any way to enumerate all of a character's Unicode properties in Ruby?
For a homework assignment I was given a Card class that has enumerated types
Given a (source) patch file, what's the easiest way to apply this patch on
Given n enumerables of the same type that return distinct elements in ascending order,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.