WANTED: bHTML Source
If your a member of codenstuff then this is the main place to be. Get together..talk..chat and ponder. Have fun. Chill out. Play games.
Hello guys/girls, i got bHTML html editor from MikeTheDj , thanks
but now i need the source code. if anyone got it please share it ;)
Thaank you
but now i need the source code. if anyone got it please share it ;)
Thaank you
Code'N'Stuff
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
wow fast replay, hmm i need the source because i want to make my own html editor for my website, and bHTML isnt completed so i wanna get some codes from it and code i wanted is:
When i edit my website in that text editor it will show me my website .. i mean..
You can type in ur html:
<hr>
and you will see it down ( webbrowser read your html xD )
hope understand
When i edit my website in that text editor it will show me my website .. i mean..
You can type in ur html:
<hr>
and you will see it down ( webbrowser read your html xD )
hope understand
Code'N'Stuff
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
A simple way of acheiving the instant preview would be the following:

-Comathi-
Code: Select all
Hope this helps Private sub RichTextBox1_TextChanged (byval sender as object, byval e as system.eventargs) handles RichTextBox1.TextChanged
My.Computer.FileSystem.WriteAllText(Application.StartupPath & "\html.html",RichTextBox1.Text,False)
WebBrowser1.navigate(Application.StartupPath & "\html.html")

-Comathi-
lol i know this is the codes so it will reload it every letter i type xD but thank you anyway i will do it right now 

Code'N'Stuff
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
You're welcome, but again, this is a very simple way... There might be other ways of doing it 

comathi wrote:A simple way of acheiving the instant preview would be the following:Code: Select allHope this helpsPrivate sub RichTextBox1_TextChanged (byval sender as object, byval e as system.eventargs) handles RichTextBox1.TextChanged My.Computer.FileSystem.WriteAllText(Application.StartupPath & "\html.html",RichTextBox1.Text,False) WebBrowser1.navigate(Application.StartupPath & "\html.html")
-Comathi-
CleverBoy wrote:lol i know this is the codes so it will reload it every letter i type xD but thank you anyway i will do it right nowYeah, there is a simpler and faster way. It does not save the file first. You can use the WebBrowser.DocumentText property to set the page data.
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;
Over 30 projects with source code!
Please give reputation to helpful members!
![Image]()
![Image]()
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;
Over 30 projects with source code!
Please give reputation to helpful members!

ty mraksel
now i need other help
how i do the color thingy?
i mean i know how to make a color dialog.. but when i choose color i want it to be like "<font color=#808080>" how?
Thankx
now i need other help

how i do the color thingy?
i mean i know how to make a color dialog.. but when i choose color i want it to be like "<font color=#808080>" how?
Thankx
Code'N'Stuff
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
CleverBoy wrote: but when i choose color i want it to be like "<font color=#808080>" how?You could use the ColorTranslator class. It has a method named ToHTML, you can use it like this
Thankx
Code: Select all
Dim Color As Color = Color.Black 'Or whatever
Dim HTML As String = ColorTranslator.ToHTML(Color)
MsgBox(HTML)
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;
Over 30 projects with source code!
Please give reputation to helpful members!
![Image]()
![Image]()
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;
Over 30 projects with source code!
Please give reputation to helpful members!

Thank you ;)
Code'N'Stuff
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
OneTeam..OneDream
Join ABSplash Team & Earn $$
ABSplash Site - Workpad - (VB) Custom Buttons 2 ways
Copyright Information
Copyright © Codenstuff.com 2020 - 2023