Welcome to Singapore blogs
Sign in
Singapore blogs
Search Options
Search Everything
Search Development
Home
Hubs
DotText
chuacw
Cape of Good Hope
Development
Appeal Letters readers
YP School 2007 Alumni
chuacw
frove
frove
Technical
eCommerce
More ...
Blog - Monthly Archive List
Archives
October 2024
(1)
June 2024
(1)
December 2023
(1)
November 2023
(1)
April 2023
(1)
March 2023
(1)
February 2023
(3)
January 2023
(1)
December 2022
(1)
November 2022
(1)
October 2022
(1)
July 2022
(1)
April 2022
(1)
March 2022
(1)
November 2021
(1)
October 2021
(2)
September 2021
(1)
August 2021
(1)
July 2021
(1)
May 2021
(1)
March 2021
(1)
February 2021
(3)
January 2021
(1)
December 2020
(1)
November 2020
(2)
October 2020
(1)
September 2020
(2)
August 2020
(1)
July 2020
(1)
June 2020
(4)
May 2020
(2)
March 2020
(1)
January 2020
(1)
December 2019
(2)
September 2019
(1)
May 2019
(6)
April 2019
(1)
February 2019
(2)
January 2019
(2)
December 2018
(1)
October 2018
(3)
August 2018
(2)
May 2018
(4)
April 2018
(4)
March 2018
(1)
February 2018
(3)
January 2018
(2)
December 2017
(3)
November 2017
(6)
October 2017
(3)
August 2017
(2)
July 2017
(1)
June 2017
(1)
April 2017
(1)
March 2017
(1)
February 2017
(2)
January 2017
(4)
November 2016
(2)
October 2016
(2)
August 2016
(1)
May 2016
(3)
January 2016
(4)
December 2015
(2)
November 2015
(1)
October 2015
(3)
September 2015
(5)
June 2015
(1)
March 2015
(1)
February 2015
(1)
January 2015
(2)
December 2014
(1)
October 2014
(1)
September 2014
(2)
July 2014
(2)
June 2014
(1)
May 2014
(3)
April 2014
(1)
March 2014
(5)
February 2014
(7)
January 2014
(2)
December 2013
(3)
November 2013
(5)
October 2013
(2)
September 2013
(4)
August 2013
(7)
July 2013
(1)
June 2013
(5)
May 2013
(1)
April 2013
(3)
March 2013
(3)
December 2012
(1)
July 2012
(1)
June 2012
(6)
May 2012
(5)
April 2012
(6)
March 2012
(3)
February 2012
(6)
January 2012
(10)
December 2011
(5)
November 2011
(1)
August 2011
(3)
June 2011
(1)
May 2011
(10)
April 2011
(4)
March 2011
(5)
February 2011
(2)
January 2011
(3)
December 2010
(8)
November 2010
(4)
October 2010
(1)
September 2010
(1)
August 2010
(1)
July 2010
(2)
June 2010
(3)
May 2010
(2)
April 2010
(4)
February 2010
(7)
January 2010
(2)
November 2009
(2)
October 2009
(1)
September 2009
(1)
July 2009
(1)
June 2009
(4)
May 2009
(3)
April 2009
(4)
March 2009
(6)
February 2009
(3)
January 2009
(5)
December 2008
(9)
November 2008
(4)
October 2008
(1)
September 2008
(4)
August 2008
(4)
July 2008
(3)
June 2008
(1)
May 2008
(2)
April 2008
(6)
March 2008
(4)
February 2008
(1)
January 2008
(7)
December 2007
(1)
November 2007
(3)
October 2007
(1)
September 2007
(2)
August 2007
(5)
July 2007
(1)
April 2007
(2)
March 2007
(3)
February 2007
(1)
January 2007
(1)
November 2006
(1)
October 2006
(4)
August 2006
(1)
March 2006
(3)
January 2006
(1)
December 2005
(6)
November 2005
(4)
October 2005
(2)
September 2005
(4)
August 2005
(5)
July 2005
(4)
June 2005
(10)
May 2005
(6)
April 2005
(5)
March 2005
(14)
February 2005
(8)
January 2005
(11)
December 2004
(15)
November 2004
(13)
October 2004
(4)
September 2004
(7)
August 2004
(18)
July 2004
(16)
June 2004
(15)
May 2004
(39)
April 2004
(20)
March 2004
(11)
February 2004
(16)
January 2004
(16)
Notes on OTA RemoveNotifier
Home
Blog
Wiki
Chee Wee's discoveries and tech blog
Changing the world one line of code at a time...
Generic Content
About the author
Options
Share this
Notes on OTA RemoveNotifier
chuacw
Fri, 29 Apr 2005 @ 3:11 PM
Comments
0
When RemoveNotifier is called, the interface to which the supplied Index parameter refers to is destroyed automatically, which is not noted in the Borland supplied documentation in all versions of Delphi, up to Delphi 2005.
The code below indicates what I'm talking about. Notice that LEditorNotifier belongs to TEditorNotifier, which is a class. I've obtained a reference of TEditorNotifier back from the SL TStringList instance's Objects array property.
There isn't a need to call LEditorNotifier.Free because it's already handled by RemoveNotifier.
All this part of the experience I've gained from writing the
Productivity Experts project
.
procedure TIDENotifier.FileNotification(
NotifyCode: TOTAFileNotification; const FileName: string;
var Cancel: Boolean);
var
ModuleServices: IOTAModuleServices;
Module: IOTAModule;
SourceEditor: IOTASourceEditor;
I: Integer;
LEditorNotifier: TEditorNotifier;
begin
case NotifyCode of
ofnFileOpened:
begin
ModuleServices := BorlandIDEServices as IOTAModuleServices;
Module := ModuleServices.FindModule(FileName);
for I := 0 to Module.ModuleFileCount - 1 do
begin
if Supports(Module.ModuleFileEditors
, IOTASourceEditor, SourceEditor) and
(SourceEditor.EditViewCount >= 1) then
begin
LEditorNotifier := TEditorNotifier.Create;
LEditorNotifier.NotifierIndex := SourceEditor.AddNotifier(LEditorNotifier as IOTAEditorNotifier);
LEditorNotifier.SourceEditor := SourceEditor;
SL.AddObject(SourceEditor.FileName, LEditorNotifier);
end;
end;
end;
ofnFileClosing:
begin
ModuleServices := BorlandIDEServices as IOTAModuleServices;
if SL.Find(FileName, I) then
begin
LEditorNotifier := SL.Objects
as TEditorNotifier;
SourceEditor := LEditorNotifier.SourceEditor;
SourceEditor.RemoveNotifier(LEditorNotifier.NotifierIndex);
SL.Delete(I);
// LEditorNotifier.Free;
end;
end;
end;
end;
0 Comments
Borland Open Tools API
,
OTA
,
ToolsAPI
,
Delphi
Your comment has been posted.
Close
Thank you, your comment requires moderation so it may take a while to appear.
Close
Leave a Comment
Name
Website
Comment
Post
Chee Wee's discoveries and tech blog
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Chee Wee's discoveries and tech blog
Reverse engineering the Web3 API
Posted
over 6 years ago
by
chuacw
I've been working on the Web3 API for quite a while now. The JSON RPC protocol is documented here and the Web3 API is documented here , however, there...
Chee Wee's discoveries and tech blog
Delphi and C# comparison
Posted
over 20 years ago
by
chuacw
1
Comments
This Delphi and C# comparison was taken from Dan Miser 's blog here . Features C# has that Delphi doesn't foreach operators using, lock, checked and unchecked...
Chee Wee's discoveries and tech blog
From Delphi to Java: tricks in thread execution
Posted
over 15 years ago
by
chuacw
0
Comments
In the two comic viewers , portions of the application retrieves images from the web in the background, using a thread. While coding up a solution, I remembered...
Chee Wee's discoveries and tech blog
Speed up your browsing with Firefox!
Posted
over 4 years ago
by
chuacw
0
Comments
Firefox now has HTTP3! Enable it by setting network.http.http3.enabled to true!
Chee Wee's discoveries and tech blog
The Aztech DSL1015EW DNS problem
Posted
over 12 years ago
by
chuacw
1
Comments
The Aztech DSL1015EW is perfect for a router, except that it comes with a problem that no other routers should have. It doesn't resolve or forward...
Chee Wee's discoveries and tech blog
NotifyModuleUnload
Posted
over 4 years ago
by
chuacw
0
Comments
Since Delphi 3, NotifyModuleUnload in the System unit has been written the way it is now. procedure NotifyModuleUnload(HInstance: THandle); var P: PModuleUnloadRec;...
Chee Wee's discoveries and tech blog
Lessons learnt from software development management failures...
Posted
over 4 years ago
by
chuacw
0
Comments
There's a lot of lessons to be learnt from observing how product management and development teams fail to manage software products properly. One of...
Chee Wee's discoveries and tech blog
Adventures in translating Java to Delphi.NET: Part 1
Posted
over 16 years ago
by
chuacw
1
Comments
I was on a software archaeology mission, to convert a Java application to a Delphi.NET application. The mission is necessary, so I won't blog about...
Chee Wee's discoveries and tech blog
Flushing the CPU cache on ARM, Google Android
Posted
over 10 years ago
by
chuacw
0
Comments
On ARMv7 processors running Google Android, it's necessary to flush the CPU cache for reasons stated here . As the Android NDK misses some files out...
Chee Wee's discoveries and tech blog
A generic case capability for Delphi
Posted
over 9 years ago
by
chuacw
0
Comments
I was thinking of an enhancement to nslookup (an utility to look up various Internet information) last night and when thinking about string parsing, I...
Page 12 of 67 (665 items)
«
10
11
12
13
14
»
Tags
Accomplishments
Adventures in Delphi 8
Android
Blockchain
C#
CodeGear
Community Server
Delphi
Delphi for .NET
Delphi for Win32
DotText development / enhancement articles
Experiments
General
Hacking
Java
Javascript
Latest rumours / news about Borland Delphi 2005
Movies CMS for Migration
My RSS Reader
Network
OTA
Projects / Businesses
Security
ToolsAPI
Windows