Delphi World - это проект, являющийся сборником статей и малодокументированных возможностей  по программированию в среде Delphi. Здесь вы найдёте работы по следующим категориям: delphi, delfi, borland, bds, дельфи, делфи, дэльфи, дэлфи, programming, example, программирование, исходные коды, code, исходники, source, sources, сорцы, сорсы, soft, programs, программы, and, how, delphiworld, базы данных, графика, игры, интернет, сети, компоненты, классы, мультимедиа, ос, железо, программа, интерфейс, рабочий стол, синтаксис, технологии, файловая система...
Загрузить RTF текст из файла ресурса в TRichEdit

Оформил: DeeCo
Автор: http://www.swissdelphicenter.ch


(*
   Load RTF file from resource:

   You can store any kind of file as a RCDATA resource.
   The following example shows this with an RTF file.

   Create a text file called textres.rc and put the
   following line in it:

   TESTDOC RCDATA "textdoc.rtf"

   Next, compile that using the Borland Resource Compiler,
   which is provided with Delphi.

   brcc32.exe textres.rc

      Your next step is to include the compiled resource (.RES) file into
   your executable, which can be done with the {$R} compiler directive.

 *)

 (*

   Man kann eine beliebige Datei als RCDATA Ressource in eine
   Exe-Datei einbinden.
   Das folgende Beispiel zeigt, wie man einen RTF-Text aus
   einer Ressource ladt und in einem TRichEdit anzeigt.

   Erstelle zuerst eine Datei "textres.rc" mit folgendem Inhalt:

   TESTDOC RCDATA "textdoc.rtf"

   Kompiliere diese mit brcc32.exe:

   brcc32.exe textres.rc

      Es wurde nun eine textres.res Datei erzeugt.

 *)


 implementation

 {$R *.dfm}
 {$R textres.res}  // <---- your resource file! 

procedure TForm1.Button1Click(Sender: TObject);
 var
   rs: TResourceStream;
 begin
   rs := TResourceStream.Create(hinstance, 'TESTDOC', RT_RCDATA);
   try
     Richedit1.PlainText := False;
     TempStream.Position := 0;
     Richedit1.Lines.LoadFromStream(rs);
   finally
     rs.Free;
   end;
 end;
Проект Delphi World © Выпуск 2002 - 2004
Автор проекта: ___Nikolay