Hey guys I am creating a project that contains post generator for a vB forum.
I have a few problems I wanted to ask u guys about and gain some information.
Its like this:
I have 2 rich text objects, writable and called Object 1 and Object 2.
I have another rich text object, read only called Object 3.
Then I have a generate button.
In object 1 you write the title and object 2 description. Object 3 gives u an ordered categorized vB Forum text.
In generate button I have:
when i press generate button in only adds text from object 1 in object 3 and immediately replaces it with text from object 2.Code:result = RichText.GetText("object 1", true); result2 = RichText.GetText("object 1", true); RichText.SetText("Object 3", result, true);
I have two problems:
1. how can I combine "result" with vb codes like below to show in object 3
2. how can I show both text from object 1 and object 2 without replacing each other.
This link is all i found thats shows a vb post generator:
http://www.handheldusers.com/forum/postgen.php
I will appreciate it if u help me.

Reply With Quote
