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 7002089
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:53:05+00:00 2026-05-27T20:53:05+00:00

I have database Paradox 7. Two tables: Order ——– OCode ODate // Buy date

  • 0

I have database Paradox 7.
Two tables:

Order
--------
OCode
ODate // Buy date
OCount // Product count
PPrice // Price of product in current moment
PCode // Product code
CCode //Client code


Product
---------
PCode
PName
PPrice 

On OrderTable(TTable) I add lookup field Product(relation PCode(Order)<->PCode(Product)) which returns PName. I need when I choose on DBGrid Product in field Order.PPrice store Product.PPrice

P.S>Sorry for my bad english.

  • 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-27T20:53:05+00:00Added an answer on May 27, 2026 at 8:53 pm

    Declare a HandleProductSelection method in your form (or datamodule):

    procedure HandleProductSelection(Sender: TField);
    

    Attach an AfterOpen handler to the OrderTable. In that event handler, find the Product code field and attach the HandleProductSelection method to the field’s OnChange event.

    procedure TForm1.OrderTableAfterOpen(DataSet: TDataSet);
    var
      Field: TField;
    begin
      Field := OrderTable.FindField('PCode'); 
      Field.OnChange := HandleProductSelection;
    end;
    

    This ensures that whenever your OrderTable is opened, the event handler will be attached to the proper field and that in turn will ensure that the HandleProductSelection method will be called whenever the contents of the Product Code field are changed.

    Implement the HandleProductSelection method. If you defined the lookup field for the product code using the field editor, you have a Product dataset on your form (or datamodule). The dataset with the product information will then be positioned according to the value of the Product code field in the current record of your OrderTable.

    You can take advantage of this in your HandleProductSelection method by simply transferring the information from the Product dataset to the OrderTable:

    procedure TForm1.HandleProductSelection(Sender: TField);
    begin
      OrderTable.FieldByName('PPrice').AsCurrency := 
        DataSetProduct.FieldByName('PPrice').AsCurrency;
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have database with two tables: Customers (Id PK, LastName) and Orders (Id PK,
I have database with many tables. In the first table, I have a field
I have Database with date field. I see the time like: 1900-01-01 13:38:00.000 How
i have database table like this +-------+--------------+----------+ | id | ip | date |
I have a database that contains a date and we are using the MaskedEditExtender
I have designed database tables (normalised, on an MS SQL server) and created a
I have Database mirroring setup between two SQl 2005 servers (no witness). Using Tsql,
I Have Database that contains 4 tables TABLE TBLCARTITEM (CART_ID, ITEM_ID, PROMOTION_ID, many more
I have database project in visual studio 2010. It has tables views stored procedures
I am fairly new with advanced MySQL commands, I have database tables with multiple

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.