Results 1 to 7 of 7

Thread: Does anyone know how to make a good HTML editor

  1. #1
    B2E
    Guest

    Does anyone know how to make a good HTML editor

    Does anyone in here know how to make a good html editor i would prefer it be in vb .net language but i could rea arrange it if it were in vb6 or something like that. i really need an html editor for a program i am writing so any help you could give me at all would be great!

    Thanks!

  2. #2
    Frenzied Member numtel's Avatar
    Join Date
    Apr 2000
    Location
    CA
    Posts
    1,163
    My favorite, Textbox control and few menus, kinda like notepad.

  3. #3
    Super Moderator Wokawidget's Avatar
    Join Date
    Nov 2001
    Location
    Headingly Occupation: Classified
    Posts
    9,632

    Talking G...B...PAYDAY!

    Why not download a free one from www.ZDNet.COM???
    If you have to ask "how" to write one, then I feel that your VB capabilities are lacking in the knowledge to write one, since it is only a text box and **** loads of IF statments..

  4. #4
    Junior Member richardcc2's Avatar
    Join Date
    Jun 2002
    Location
    Nederlands
    Posts
    16
    What do you need??
    Ever tryed the dhtmledit control from explorer?? Works perfect!

    info: http://msdn.microsoft.com/workshop/b...htmleditor.asp

    samle download: http://msdn.microsoft.com/archive/en...ml/dhedsdk.exe

    You will be supriced!!

  5. #5
    G&G Moderator chemicalNova's Avatar
    Join Date
    Jun 2002
    Location
    Victoria, Australia
    Posts
    4,246
    im going to go with numtel and wokawidget B2E. All you need is a TextBox and a few menus, and save it as a .html file


    and u could even use a list box.


    Private Syb cmdAdd_Click()
    ListBox1.Items.Add(TextBox1.Text)
    End Sub


    Private Sub cmdSave_Click()
    Open "c:\yourpage.html" For Ouput As #1
    Print #1, TextBox1.Text
    Close #1
    End SUb


    Thats a very simple example. Try using that.

    Visual Studio 6, Visual Studio.NET 2005, MASM

  6. #6
    B2E
    Guest

    no no no

    No you guys got what i need mixed up! I am very good with vb .net but i am having problems making a html editor not with a textbox i want it to be used like the dhtmlEdit.ocx in vb6 but i cant find anything like that in vb .net i am currently using the dhtmledit thingy but i was woundering if there was an easier way in vb .net cause there seems to be an easier way to do most anything in .net

    thanks for any other suggestions!

  7. #7
    Junior Member richardcc2's Avatar
    Join Date
    Jun 2002
    Location
    Nederlands
    Posts
    16
    You can also use the webbrowsercontrol.


    try: webbrowser1.designmode="on"
    +Make a reference to mshtml (html object lib) for full acces to objects like tables images etc

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width