zHTML *Adbonned*
Please post all your completed software applications in here. This is for full software which you have created and wish to release and share with everyone.
Adbonned
Sup guys,just made a app yesterday called "zHTML" and finished today! So I will tell you features right now :
Framework : 3.5
I would appreciate if someone toke a video
Download : Also,you have to put the text cursor thing at a part of the textbox where you want it to insert it and click insert to make it insert it!
+Rep would also be appreciated! cooll;
Please report any bugs!
Sup guys,just made a app yesterday called "zHTML" and finished today! So I will tell you features right now :
- Preview & Automatic Preview
- Insert HTML Tags Dialog(Ex: Bold,Italic,Underline,Strikeout,Anchor,Marquee Text,etc
- Font & Font Color Dialog
- Insert Image
- New,Open,Save,Save As(LOL Of course xD)
- Generate HTML From Other Sites
- Word Wrap
- You can use tab to indent
- Updater(Sometimes it takes a while for the dialog to open)
Framework : 3.5
I would appreciate if someone toke a video

Download : Also,you have to put the text cursor thing at a part of the textbox where you want it to insert it and click insert to make it insert it!
+Rep would also be appreciated! cooll;
Please report any bugs!
You do not have the required permissions to view the files attached to this post.
Last edited by code it on Tue Apr 26, 2011 1:52 am, edited 8 times in total.
Looks nice,
Maybe use a splitter and adding syntax highlighting
Maybe use a splitter and adding syntax highlighting
Awhile ago, I had the idea for an HTML editor too, but I couldn't figure out how to update a tab's webbrowser with the code that corresponds with the preview tab, so I gave up. Seemed noone else here knew either. You see, I had a multiproject type editor going on, where you could edit multiple docs at once, so everything had to have been configured at runtime.
This app looks good, I woulod give it a little color though.
This app looks good, I woulod give it a little color though.
Color what color? Anyways thanks 
Preview?
I made it a function
If you want Ill give you code blusho;
Function Code :

Preview?
I made it a function
If you want Ill give you code blusho;
Function Code :
Code: Select all
textbox_text changed: Webbrowser1.DocumentText = TextBox1.Text
Code: Select all
FunctionName()
Launched it, and the one thing I noticed right away was <body bgcolor="White"> I as well as a bunch of other web developers would really hate to haft to remove bgcolor="White" each time we launch it, so leave it as just <body>.
I highlighted text and when I clicked the bold button (and even insert bold/italic/etc:) it replaced the text with the bold tags. So that needs a fix, and it also does that with italics, underline, etc:
Also for font make sure you include the parenthesis, for proper programming. (ex. fix <font color=#0000FF></font> to <font color="#0000FF"></font>)
Also inset hyperlink when I clicked insert it didn't do anything until I closed the window, and it embeded this (/a><a href=http://google.com/>Google</a>) instead of this (<a href="http://google.com/">Google</a>) and again the parenthesis.
Embedding an image worked like it was intended to (and you didn't forget the parenthesis either, thank god) however have some other options in there like if the person wants to change the width, height, add a title, etc: but all being optional.
Also when text was highlighted to change it's font instead of doing so, it replaces the text with this (<font face="arial">Example</font>) of course font style will vary. Anyway that needs to be fixed as well.
Oh, and for "Generate HTML from Other Website" I got this error trying to generate text from my website. Oh, and use a different font for "Updator". Try a regular one like Arial, Times New Roman, Georgia, Verdana, etc: not Segoe, or Comic Sans, their just an eye sore.
Also JQuery only works when I upload the file online, and hyperlink it. I'd like to see it work while the file is still on my hard drive.
I love the way I can choose to have it auto update, and not, however there's no slider so I can have it higher up, or lower like in bhtml. In which I think should be implemented as well as having the gui be customizable. having the user choose to have the preview be on the bottom, left, right, top, in a tab (example), or even as a window.
Anyway that's my intake on it good idea, has a lot of potential, however still needs some work though.
I highlighted text and when I clicked the bold button (and even insert bold/italic/etc:) it replaced the text with the bold tags. So that needs a fix, and it also does that with italics, underline, etc:
Also for font make sure you include the parenthesis, for proper programming. (ex. fix <font color=#0000FF></font> to <font color="#0000FF"></font>)
Also inset hyperlink when I clicked insert it didn't do anything until I closed the window, and it embeded this (/a><a href=http://google.com/>Google</a>) instead of this (<a href="http://google.com/">Google</a>) and again the parenthesis.
Embedding an image worked like it was intended to (and you didn't forget the parenthesis either, thank god) however have some other options in there like if the person wants to change the width, height, add a title, etc: but all being optional.
Also when text was highlighted to change it's font instead of doing so, it replaces the text with this (<font face="arial">Example</font>) of course font style will vary. Anyway that needs to be fixed as well.
Oh, and for "Generate HTML from Other Website" I got this error trying to generate text from my website. Oh, and use a different font for "Updator". Try a regular one like Arial, Times New Roman, Georgia, Verdana, etc: not Segoe, or Comic Sans, their just an eye sore.
Also JQuery only works when I upload the file online, and hyperlink it. I'd like to see it work while the file is still on my hard drive.
I love the way I can choose to have it auto update, and not, however there's no slider so I can have it higher up, or lower like in bhtml. In which I think should be implemented as well as having the gui be customizable. having the user choose to have the preview be on the bottom, left, right, top, in a tab (example), or even as a window.
Anyway that's my intake on it good idea, has a lot of potential, however still needs some work though.
You do not have the required permissions to view the files attached to this post.
mikethedj4 wrote:Launched it, and the one thing I noticed right away was <body bgcolor="White"> I as well as a bunch of other web developers would really hate to haft to remove bgcolor="White" each time we launch it, so leave it as just <body>.I suck at HTML :(
I highlighted text and when I clicked the bold button (and even insert bold/italic/etc:) it replaced the text with the bold tags. So that needs a fix, and it also does that with italics, underline, etc:
Also for font make sure you include the parenthesis, for proper programming. (ex. fix <font color=#0000FF></font> to <font color="#0000FF"></font>)
Also inset hyperlink when I clicked insert it didn't do anything until I closed the window, and it embeded this (/a><a href=http://google.com/>Google</a>) instead of this (<a href="http://google.com/">Google</a>) and again the parenthesis.
Embedding an image worked like it was intended to (and you didn't forget the parenthesis either, thank god) however have some other options in there like if the person wants to change the width, height, add a title, etc: but all being optional.
Also when text was highlighted to change it's font instead of doing so, it replaces the text with this (<font face="arial">Example</font>) of course font style will vary. Anyway that needs to be fixed as well.
Oh, and for "Generate HTML from Other Website" I got this error trying to generate text from my website. Oh, and use a different font for "Updator". Try a regular one like Arial, Times New Roman, Georgia, Verdana, etc: not Segoe, or Comic Sans, their just an eye sore.
Also JQuery only works when I upload the file online, and hyperlink it. I'd like to see it work while the file is still on my hard drive.
I love the way I can choose to have it auto update, and not, however there's no slider so I can have it higher up, or lower like in bhtml. In which I think should be implemented as well as having the gui be customizable. having the user choose to have the preview be on the bottom, left, right, top, in a tab (example), or even as a window.
Anyway that's my intake on it good idea, has a lot of potential, however still needs some work though.
Also for generating the html you need to do "http://domain.com"
I didnt notic all those bugs dunnno;
Im gonna fix it when I have time
Copyright Information
Copyright © Codenstuff.com 2020 - 2023