This can all be done using Microsoft Word all by itself.
FTP Client Classes, Enhanced Data Controls, much more.
"TEK" <trond-eirik@kolloen.no> wrote in message
news:1177143450.637982.46160@q75g2000hsh.googlegroups.com...
> Hello
>
> I'm wondering if anyone have some good ideas/solution to a problem I'm
> working on.
>
> Target: Give the user a "MS World" like document UI to work with when
> editing data stored in a object model.
> The application this will be used in is a rich-client.
>
> An simplified version of the model may look something like this:
>
> class Document{
> public CarCollection Cars{get;}
> }
>
> class Car{
> string Caption{get;set}
> string Description{get;set}
> decimal GasTankHeight{get;set;}
> decimal GasTankWidth{get;set;}
> decimal GasTankLength{get;set;}
> decimal GasTankVolume{get}
> }
>
> The document the user is editing should be based on a template with a
> standard layout, where the car information is shown just as regular
> information within the document.
>
> Some sections of the document should be read only, for example the
> tank volume field while some sections should for example only allow
> numeric input.
>
> The user should ideally be able to select and copy text from any part
> of the document to paste into for example a regular word applicatino.
>
> The object model should be update as the user types inn new values, as
> there will be several views of the same data.
>
> A simple example of how the the document should look to the end user
> is shown here:
>
http://bp1.blogger.com/_3EnpE8Vg_8U/RinHyDZqmEI/AAAAAAAAAAM/8jZhwV9Jo-M/s1600-h/document-example.jpg >
> Any ideas about how to attach this would be highly appriciated.
>