Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to set all events of an object to NIL at runtime (2) Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
19-Oct-02
Category
Object Pascal
Language
Delphi 2.x
Views
122
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Jonas Bilinkevicius

I need to change the 'OnChange' event of all of my components. Can someone give me 
a starting point as to how I can go about changing this event via RTTI. I want to 
be able to pass an event name or set the event to nil.

Answer:

1   uses
2     TypInfo;
3   
4   procedure TFrmRTTIOnChange.Button1Click(Sender: TObject);
5   var
6     propInfo: PPropInfo;
7     thisEvent: TNotifyEvent;
8   begin
9     propInfo := GetPropInfo(Memo1.ClassInfo, 'OnChange');
10    if propInfo <> nil then
11    begin
12      thisEvent := Memo1AltChange;
13      SetOrdProp(Memo1, PropInfo, integer(@thisEvent));
14    end;
15  end;
16  
17  procedure TFrmRTTIOnChange.Memo1Change(Sender: TObject);
18  begin
19    Caption := 'Normal On Change';
20  end;
21  
22  procedure TFrmRTTIOnChange.Memo1AltChange(Sender: TObject);
23  begin
24    Caption := 'Alternate On Change';
25  end;


			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC