Results 1 to 1 of 1

Thread: VB.NET Show Preview Form from file

Threaded View

  1. #1

    Thread Starter
    Lively Member softkans's Avatar
    Join Date
    May 2006
    Posts
    70

    Thumbs up VB.NET Show Preview Form from file

    Hi everybody..

    now i am generating forms with codes dynamically.. (like a code generator) and save it as a file in harddisk (filename.vb, filename.designer.vb)
    code Code:
    1. dim od as new openfiledialog
    2. od.filter="Vb Files Only!*.vb"
    3. od.showdialg()   '' i select file
    4. if od.Filename <> "" then
    5. ''    How can i create object of selected form (from file)
    6. ''    create object of od.filename
    7. end if


    but the problem is..
    how i show preview of those forms at runtime..?

    is there any way in dotnet for adding forms in my project?

    am using vb.net 2005
    Last edited by softkans; Mar 17th, 2009 at 07:47 AM.

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