S _Sahar Honorable Aug 2, 2012 4 0 10,520 Aug 11, 2012 #1 Hi I use Ultra Office Control to view word document. I want to show the page numbers that change by scrolling. Please Help me to write in c sharp
Hi I use Ultra Office Control to view word document. I want to show the page numbers that change by scrolling. Please Help me to write in c sharp
Solution S S _Sahar Dec 5, 2013 I've solved it : Word.Document wddoc = (Word.Document)axFramerControl1.ActiveDocument; Word.Application wordApp = wddoc.Application; int numberScroll = wddoc.ActiveWindow.VerticalPercentScrolled; txtPage.Text = pageColumn + numberScroll + "";
I've solved it : Word.Document wddoc = (Word.Document)axFramerControl1.ActiveDocument; Word.Application wordApp = wddoc.Application; int numberScroll = wddoc.ActiveWindow.VerticalPercentScrolled; txtPage.Text = pageColumn + numberScroll + "";
S _Sahar Honorable Aug 2, 2012 4 0 10,520 Dec 5, 2013 Solution #2 I've solved it : Word.Document wddoc = (Word.Document)axFramerControl1.ActiveDocument; Word.Application wordApp = wddoc.Application; int numberScroll = wddoc.ActiveWindow.VerticalPercentScrolled; txtPage.Text = pageColumn + numberScroll + ""; Upvote 0 Downvote Solution
I've solved it : Word.Document wddoc = (Word.Document)axFramerControl1.ActiveDocument; Word.Application wordApp = wddoc.Application; int numberScroll = wddoc.ActiveWindow.VerticalPercentScrolled; txtPage.Text = pageColumn + numberScroll + "";