Search found 6 matches

by jclaes
Mon Sep 20, 2010 2:47 pm
Forum: Support
Topic: capture the text behind bullets
Replies: 1
Views: 8123

capture the text behind bullets

Hi,

I added a bullet list into an existing richview.
Is it possible to parse the first line behind each bullet ( no formatting is needed ) so i can add them into an existing checklist.
by jclaes
Sun Sep 12, 2010 10:35 am
Forum: Support
Topic: align a table created from a tab separated stringlist
Replies: 3
Views: 10703

The text is not the problem it is the alignment of the cells that's is the problem. I want to parse a stringlist that has the alignment of each cell as text in it. Item[0] := Center#9Center#9Center#9Center Item[1] := Left#9Right#9Left#9Center Each new item of the ItemList is the row of the table and ...
by jclaes
Sat Sep 11, 2010 4:23 pm
Forum: Support
Topic: align a table created from a tab separated stringlist
Replies: 3
Views: 10703

align a table created from a tab separated stringlist

Hi, I was able to create a table using following code ..... Table := TRVTableItemInfo.CreateEx(Rows, Cols, RVData); Table.BorderWidth := 0; Table.CellBorderWidth := 0; for RowCounter := 0 to Fields.Count-1 do begin for ColCounter := 1 to Cols do begin Table.Cells[RowCounter,ColCounter-1].SetItemText ...
by jclaes
Mon Mar 23, 2009 2:09 pm
Forum: Support
Topic: TRichViewXML : SaveToStream ... LoadFromStream
Replies: 15
Views: 44791

Sorry but still not working. here is the code procedure TForm1.Button1Click(Sender: TObject); var aStream : TStringStream ; aString : String ; T: TXMLTree; MainRoot, DocRoot: TXMLTag; begin // SaveToStream T := TXMLTree.Create(RichViewXML1.Encoding); try T.Items.AddTag(RichViewXML1.RootElement, T, T ...
by jclaes
Fri Jan 23, 2009 4:06 pm
Forum: Support
Topic: TRichViewXML : SaveToStream ... LoadFromStream
Replies: 15
Views: 44791

Hi,

When I use the InsertFromStream i get a 'no root element error'
[/code]
by jclaes
Fri Jan 23, 2009 11:08 am
Forum: Support
Topic: TRichViewXML : SaveToStream ... LoadFromStream
Replies: 15
Views: 44791

TRichViewXML : SaveToStream ... LoadFromStream

Hi, I'm trying to copy the data from one RichViewEdit to another using RichViewXML.SaveToStream / .. LoadFromStream. The destination RVE stays empty . How come ?? procedure TForm1.Button1Click(Sender: TObject); var aStream : TStringStream ; aString : String ; T: TXMLTree; MainRoot, DocRoot: TXMLTag ...