views:

34

answers:

0

Hi there, whats the name of the main document component (blank space) when you create a word office 2007 project?

Is possible to set text on that container?

for example: text from a database's query ...

thanks

Answer :

       using(DataClasses1DataContext db = new DataClasses1DataContext()){

            var x = (from va in db.INFORMEMEDICOs
                     select va.tecnica).First().ToString();
            this.Content.Text= x;

        }