installing delphi xe3

General TRichView support forum. Please post your questions here
Post Reply
TPISCOPO
Posts: 2
Joined: Fri Feb 24, 2012 3:03 pm
Location: United States

installing delphi xe3

Post by TPISCOPO »

Help !

Getting Messages on source lines like this: RegisterActions('RVE Custom', [TrvActionEvent], nil);

I'm trying to compile richviewactionsdxe3.dproj

What do I need to do ?


Tony
Sergey Tkachenko
Site Admin
Posts: 17557
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post by Sergey Tkachenko »

What's the message text?
(select the message and press Ctrl+C to copy to the clipboard)
Sergey Tkachenko
Site Admin
Posts: 17557
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post by Sergey Tkachenko »

[dcc32 Error] rvActionsReg.pas(90): E2003 Undeclared identifier: 'RegisterActions'
Starting from XE3, RegisterActions is defined in Actions.pas (more exactly, in System.Actions.pas, but it does not matter).

RVActionsReg.pas has Actions in "uses":

Code: Select all

uses
...
  {$IFDEF RICHVIEWDEFXE3}
  Actions,
  {$ENDIF}
RICHVIEWDEFXE3 must be defined in RV_Defs.inc
RV_Defs.inc is included in TRichView units.

My guess: you have old version of RV_Defs.inc somewhere, and Delphi uses it instead of the new file. Find old file(s) and delete them.
TPISCOPO
Posts: 2
Joined: Fri Feb 24, 2012 3:03 pm
Location: United States

INSTALLING XE3

Post by TPISCOPO »

Is there supposed to be a richview RVPkgDXE3.dproj in the install.exe ? There is a RVPKGDXE2 and a RVPKGDXE, which one do I install ?
Sergey Tkachenko
Site Admin
Posts: 17557
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post by Sergey Tkachenko »

Yes, there must be RVPkgDXE3.
May be you downloaded an old installer? Please answer in a private message.
Post Reply