CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    May 2008
    Posts
    74

    convert vb form to html

    hi,
    there is any program that can convert the vb forms to html?
    thanks for your help

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: convert vb form to html

    How do you mean convert vb to HTML. Why not give ASP.NET a go... ?

  3. #3
    Join Date
    Apr 2009
    Posts
    394

    Re: convert vb form to html

    Do you mean the code? A picture of the form? Or the actual visual elements of the form being translated into html objects? Then there is the question of the code and translating that into some sort of scripting language...

    A little more information is required here...



    Good Luck

  4. #4
    Join Date
    May 2008
    Posts
    74

    Re: convert vb form to html

    hi,
    i just want export the objects the position etc
    for example
    i have 4 buttons and 6 labels with certain text, captions sizes etc
    and i want select a form and export that info to a html code not asp.net pure html only with css for the controls position or in a table.
    the objective is pass the look of the program forms to html files
    and them work with that html to insert php etc
    thanks

  5. #5
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: convert vb form to html

    OK, I see what you're trying to do, but I don't agree. You are creating a lot of unecessary work for yourself. Why not just make an Active X control, which can be embedded into HTML, without any hassle? That is the route I'd take.

  6. #6
    Join Date
    Jul 2006
    Location
    Germany
    Posts
    3,725

    Re: convert vb form to html

    I did that before, too. Made an ActiveX control and simply plopped it on an empty site.
    The disadvantage is, the user has to allow the registration of this control on his computer and this is like allowing an unknown exe running on your system.
    ASP executes on the server and does not require installation of a control.

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

Featured