CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2006
    Posts
    4

    (How-to?) Form to Database...

    Are there any .NET components or application can read a standard business form (e.g. annual leave form) created by MS-Word and convert the form into SQL database?

  2. #2
    Join Date
    Jul 2006
    Location
    At home
    Posts
    70

    Re: (How-to?) Form to Database...

    Not that I am aware of. It would be possible to create such a component if the Word document always follows the EXACT same format. Then you'd pretty much

    • Open the document in the background,
    • Read through the contents to grab, parse and validate the data
    • Save the results to a database.

    A better approach IMHO would be to create an annual leave app around the database & then use crystal reports to generate the business form.

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