Search found 20 matches

by wray
Fri Jul 04, 2008 10:11 am
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 41216

Thank you

Working perfectly
by wray
Thu Jul 03, 2008 5:11 pm
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 41216

Is ok.

But can you think of a method to align them manually after they have been appended in table ?

Like for loop to scan all the items in cell and align them manually each of them ?

Regards
by wray
Thu Jul 03, 2008 1:16 pm
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 41216

Can you hint me what i am doing wrong with the VAlign here ? OnKeyPress i did the emoticon replacement with align like this: if (s[Offs-1]==':') { rve->SetSelectionBounds(ItemNo, Offs-1, ItemNo, Offs); rve->InsertBullet(GetImageIndex(Key), Form1->ImageList3); Key = 0; ((TRVBulletItemInfo*)(RichViewE...
by wray
Thu Jul 03, 2008 11:55 am
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 41216

Most helpfull like always.

Thank you very much
by wray
Wed Jul 02, 2008 10:33 am
Forum: Support
Topic: AppendRVFFromStream - No Bullets ?
Replies: 9
Views: 41216

AppendRVFFromStream - No Bullets ?

Hi, i use RichViewEdit1->AddBulletEx("", 0, Form1->ImageList3, -1); RichViewEdit1->Reformat(); to add a bullet.. But when i try: TMemoryStream *stream = new TMemoryStream(); RichViewEdit1->SaveRVFToStream(stream,false); stream->Seek(0,0); tabel->Cells[0][1]->VAlign = rvvaAbsMiddle; tabel->...
by wray
Mon Jun 30, 2008 2:24 pm
Forum: Support
Topic: How to focus on the speciefied inserted item
Replies: 2
Views: 17082

Done.

If you need it in the same function:

ActiveControl = edit;

if not, just retrieve the pointer and asign it to ActiveControl.

Sorry to bother you... :)
by wray
Mon Jun 30, 2008 2:01 pm
Forum: Support
Topic: How to focus on the speciefied inserted item
Replies: 2
Views: 17082

How to focus on the speciefied inserted item

Please give me ahint how to focus programatically on the specified item added. For example i add a Text Edit like this: TspSkinEdit * edit = new TspSkinEdit(this); RichView1->AddControlEx("",edit,-1,rvvaBaseline); RichView1->Format(); int ItemNo = RichView1->ItemCount-1; I got the item num...
by wray
Mon Jun 30, 2008 1:57 pm
Forum: Support
Topic: Clicking multiple times on an object gives exception
Replies: 5
Views: 24704

Hi,

i did compiled with stack frames on.

I use v.1.9.48

Yes it happens in all applications i write with it.

I can compile a demo project for you.

Also is very possible to happen only for me.

Any ideeas what to try ?

Thanks
by wray
Sun Jun 29, 2008 10:29 pm
Forum: Support
Topic: Clicking multiple times on an object gives exception
Replies: 5
Views: 24704

Hi, 7C812A5B C:\WINDOWS\system32\kernel32.dll 006F159B System::_16583 7C90378B ntdll.dll 7C90EAFA ntdll.dll 007472F7 Richview::TCustomRichView::WMRVDragDrop 006B162B Controls::TWinControl::MainWndProc 00696C0A Forms::_16460 7E418734 C:\WINDOWS\system32\USER32.dll 7E418816 C:\WINDOWS\system32\USER32....
by wray
Sun Jun 29, 2008 3:47 pm
Forum: Support
Topic: Clicking multiple times on an object gives exception
Replies: 5
Views: 24704

Clicking multiple times on an object gives exception

Hi, please advise how to circumvent the folowing problem. If i add any item for example: RichView1->AddBulletEx("", 5, ImageList2, 0); after i compile and click 3 times on the item i inserted (can be anything, picture, text, etc) the program raises an exception EAccessViolation with the me...
by wray
Thu Feb 21, 2008 3:19 pm
Forum: Support
Topic: Possible table bug
Replies: 3
Views: 19853

Good hints thank you... I add empty cells, because i want the same spacing before and after the "good" cells, especially because the RichView is scalable, and when is maximizing, i need the leading and trailing cells to change size but the "good" cells to remain fixed in center o...
by wray
Thu Feb 21, 2008 2:42 pm
Forum: Support
Topic: Possible table bug
Replies: 3
Views: 19853

Possible table bug

With this code following, i get List Index Out of bounds error, but ONLY for last version registered RichView, with the Unregistered version it works !!!! This line is the problem: table->InsertRows(table->Rows->Count,1,0,false); I managed to insert new rows but only with: table->Rows->Insert(table-...
by wray
Tue Feb 19, 2008 7:21 pm
Forum: Examples, Demos
Topic: [Demo] Sending HTML email. Saving MIME-encoded files.
Replies: 40
Views: 3258737

I tried that too, it just seems webmails like yahoo HATE backgrounds... Tried cell background and table background - same result :( BUT after final try i listened to you and saved HTML without CSS and IT WORKS !!! THANKS - verified solution - cell background and saved without CSS Payment is ok now, ...
by wray
Sun Feb 17, 2008 8:49 pm
Forum: Examples, Demos
Topic: [Demo] Sending HTML email. Saving MIME-encoded files.
Replies: 40
Views: 3258737

Well, yes is very possible... I just started using RichView and i do not know the advanced stuff, and i do not know how the HTML is formated, but if it used CSS styles, then i am almost positive the web interfaces blocks the backgroud... http://www.xavierfrenette.com/articles/css-support-in-webmail/...
by wray
Sun Feb 17, 2008 8:02 pm
Forum: Support
Topic: Bullets centering
Replies: 2
Views: 15421

Thank you very much.

Works 100%

Regards
Vlad