User Profile

Collapse

Profile Sidebar

Collapse
fatdaveh
fatdaveh
Last Activity: Sep 18 '06, 08:59 PM
Joined: Sep 18 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • fatdaveh
    replied to Using ASCX controls
    in .NET
    If you override the init, preRender, Render events (type override[space] in C#, or use the dropdown in VB) then you can see when each event is happening in the control and the parent page by using Debug.WriteLine (...)

    Do this and you will see something like:

    controls_PupilD etailControl:in it
    Page:Init
    Page:Load
    controls_PupilD etailControl:lo ad
    Page:OnLoadComp lete
    Page:OnPreRende r...
    See more | Go to post

    Leave a comment:


  • Or use BeginGetRespons e(...)
    See more | Go to post

    Leave a comment:


  • fatdaveh
    replied to Reading MS word Documents through C#
    in .NET
    You will need to download the Microsoft Office Primary Interop Assemblies from msdn and then reference them in your project.

    You can then create a Word.Applicatio n object, call the Open () method to open an existing word file and then iterate through the document.Parara phs array.

    Each Word.Paragraph object provides access to Font objects via the Range object.

    Its a fairly complex model to recreate unless...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...