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.
15 posts Page 1 of 2
Contributors
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

zHTML *Adbonned*
code it
Adbonned
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)
Credit goes to Icon Finder for the icons

Framework : 3.5


I would appreciate if someone toke a video :D

Download :
zHTML.zip
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.
User avatar
Agust1337
Coding God
Coding God
Posts: 2456
Joined: Fri Feb 19, 2010 8:18 pm

Re: zHTML
Agust1337
can we see a Preview please?
Top-notch casual Dating
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Re: zHTML
code it
Topic updated
User avatar
Agust1337
Coding God
Coding God
Posts: 2456
Joined: Fri Feb 19, 2010 8:18 pm

Re: zHTML
Agust1337
Looks nice,
Maybe use a splitter and adding syntax highlighting
Top-notch casual Dating
User avatar
mandai
Coding God
Coding God
Posts: 2585
Joined: Mon Apr 26, 2010 6:51 pm

Re: zHTML
mandai
It works, but the method you use to check for updates is unsecure.
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Re: zHTML
code it
Yeah,I know I'm trying to find another way.
GoodGuy17
Coding God
Coding God
Posts: 1610
Joined: Mon Sep 07, 2009 12:25 am

Re: zHTML
GoodGuy17
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.
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Re: zHTML
code it
Color what color? Anyways thanks :)


Preview?

I made it a function

If you want Ill give you code blusho;

Function Code :
Code: Select all
Webbrowser1.DocumentText = TextBox1.Text
textbox_text changed:
Code: Select all
FunctionName()
User avatar
mikethedj4
VIP - Site Partner
VIP - Site Partner
Posts: 2592
Joined: Thu Mar 25, 2010 4:36 am

Re: zHTML
mikethedj4
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.
xhtml-error.png
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.
User avatar
code it
VIP - Site Partner
VIP - Site Partner
Posts: 821
Joined: Sun Oct 10, 2010 3:02 pm

Re: zHTML
code it
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 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.
xhtml-error.png
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 suck at HTML :(
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
15 posts Page 1 of 2
Return to “Full Software”