2 Attachment(s)
[Beta] WYSIWYG editor for these forums
Note: Here is the latest. Still have a problem with nested tags, but I'll get around to that. This version has a nice find and replace and an improved Spell Checker, now you can right click on the spelling error rather than double click. I'm putting everything into classes so you'll see there are currently 14 classes in the project.
Beta 2: Fixed a few problems.
No longer spell checks code areas as per Wiz's suggestion.
Automatically recognizes when you want to insert more code into a code region and marks it for you.
Allows you to deleted code sections.
Basic Smilies work, but still need to add Candor smilies
Still not ready for Prime-time, but here is a Beta version of a WYSIWYG editor for these VBForums.
Using the editor is similar to using WordPad, but with additional features.
After composing your post in the WYSIWYG editor, you can then copy the post to
the clipboard and the program will insert the appropriate tags.
In addition to the text editing features, it has spell checking, and markup features
for Visual Basic and C++ code.
It is a Beta program so not all the features have been finished or fully debugged. It's still useable
Since you can view the and alter the vb tags before pasting them into your post.
Please take a look at it and tell me what you think. I will continue to update the zip file as new features are installed and bugs fixed.
Features:
Format font
- style
- size
- color
- superscript
- subscript
- highlighting - partially finished
- Bold
- Italic
- Underline
Tools
Alignment and Indents -
- Left
- Center
- Right
- increase Indent
- decrease indent
Lists
- Bulleted
- Numbered - Still to do
- Lettered - Still to do
Special Blocks
- Quotes
- Visual Basic Code markup
- C++ code Markup - In Progress
Insert
- Images - Still to do
- Smilies - need to add extended smilies
- Hyperlinks
- Thread and post linking
File
- open RTF file
- save RTF file
- save as RTF file
- print
View
Text created with WYSIWYG editor for VBForums
Re: [Beta] WYSIWYG editor for these forums
See 1st post for attachments
Re: [Beta] WYSIWYG editor for these forums
Are you looking for bug reports?
Re: [Beta] WYSIWYG editor for these forums
Sure,
You can either PM me or post here
Re: [Beta] WYSIWYG editor for these forums
I used to have an app like this. Back when this was still vbworld.com...
It was a browser that had a built in code window that did much the same things!
Will take a look at your app tonight if I have time ;)
Re: [Beta] WYSIWYG editor for these forums
This program has turned out to be a much bigger job than I thought. The main problem is what I call "nesting errors". The VBulletin tags are very picky about how they are nested. So I need to make sure that tags opened inside other tags are closed before to outside tag. For instance
[Color = Yellow][Font = Courier New] .... [/COLOR ][/FONT ]
Will not give the desired results instead I have to honor the nesting order, font is nested inside color so must be closed before color. This is even more of a nightmare when dealing with lists.
Anyway I've handled two of the types of nesting errors and am working on the third type. I've also added a few more features such as smilie an hyperlink insertion.
Re: [Beta] WYSIWYG editor for these forums
Latest version uploaded 9/6/05
Inserting smilies doesn't work anymore since I am working on the GIF animator class.
Re: [Beta] WYSIWYG editor for these forums
Here is some of the things i think you might wona add fix:
FIX:
spell checker needs to eliminate ever word that strarts with int??? str??? that way it will know its a veriable not a miss spelled word.
UPDATE:
Short cut to: VB6, VBForums - (VB6 and befor .net chit chat etc..) , and Microsoft Research Center
OverAll Nice Work :thumb:
Re: [Beta] WYSIWYG editor for these forums
For latest that adresses FIX: see 2nd attachement in 1st post.
Re: [Beta] WYSIWYG editor for these forums
Hi moeur,
I see on your app you still have the numbered list to do. I am making an app similar to yours and was wondering how you would make this feature because the rich text box unfortunately doesn't have a .sel function for a numbered list like the .sellbullet as im sure your aware.
any ideas would be appreciated