How to scroll to the bottom of a wxTextCtrl and redraw screenScrolling through a `wx.ScrolledPanel` with the mouse wheel and arrow keyswxpython scrolled Panel Not Updating scroll barsHow to get chars that are actually displayed in wx.TextCtrl?TextCtrl: How to set text position?Always open wxPython GUI with scroll bar selectedIs it possible to draw on a TextCtrl? And if so, how?wxpython - Erase background erases non-background componentsDynamic width of textctrl in framewxSlider updating wxTextCtrl and Vice VersaAfter the EVT_KILL_FOCUS event is executed, why does the blinking cursor in TextCtrl disappear?

Can I give my friend the sour dough "throw away" as a starter to their sourdough starter?

Cant bend fingertip when finger is straight

VHDL: What is correct way to model open collector output for FPGA?

Should I email my professor to clear up a (possibly very irrelevant) awkward misunderstanding?

My parents claim they cannot pay for my college education; what are my options?

Using roof rails to set up hammock

I sent an angry e-mail to my interviewers about a conflict at my home institution. Could this affect my application?

Does WiFi affect the quality of images downloaded from the internet?

How to make a villain when your PCs are villains?

Sci fi/fantasy book, people stranded on a planet where tech doesn't work, magic mist

TiKZ won't graph 1/sqrt(x)

How do credit card companies know what type of business I'm paying for?

Someone who is granted access to information but not expected to read it

What is the context for Napoleon's quote "[the Austrians] did not know the value of five minutes"?

Why doesn't Mathematica completely draw the fit?

What does the output current rating from an H-Bridge's datasheet really mean?

Interview was just a one hour panel. Got an offer the next day; do I accept or is this a red flag?

The last tree in the Universe

Was the Lonely Mountain, where Smaug lived, a volcano?

Threading data on TimeSeries

Does anyone recognize these rockets, and their location?

Why did the USA sell so many airplanes prior to WW2?

Having some issue with notation in a Hilbert space

At zero velocity, is this object neither speeding up nor slowing down?



How to scroll to the bottom of a wxTextCtrl and redraw screen


Scrolling through a `wx.ScrolledPanel` with the mouse wheel and arrow keyswxpython scrolled Panel Not Updating scroll barsHow to get chars that are actually displayed in wx.TextCtrl?TextCtrl: How to set text position?Always open wxPython GUI with scroll bar selectedIs it possible to draw on a TextCtrl? And if so, how?wxpython - Erase background erases non-background componentsDynamic width of textctrl in framewxSlider updating wxTextCtrl and Vice VersaAfter the EVT_KILL_FOCUS event is executed, why does the blinking cursor in TextCtrl disappear?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I have a wxTextCtrl with many lines of text with scrollbars enabled. Inside an event, I'd like to scroll to the end of the control and redraw the control.



Here's what I have:



 def event_scroll_to_end(self, event):
self.m_textCtrl1.SetScrollPos(
wx.VERTICAL,
self.m_textCtrl1.GetScrollRange(wx.VERTICAL))
event.Skip()


This scrolls to the end and updates/redraws the scroll bar itself, but it doesn't update the textCtrl, which still shows scrolled to its current position.



How can I actually scroll the textCtrl as well so that the contents are scrolled to the end, as the scrollbar indicates?










share|improve this question






























    0















    I have a wxTextCtrl with many lines of text with scrollbars enabled. Inside an event, I'd like to scroll to the end of the control and redraw the control.



    Here's what I have:



     def event_scroll_to_end(self, event):
    self.m_textCtrl1.SetScrollPos(
    wx.VERTICAL,
    self.m_textCtrl1.GetScrollRange(wx.VERTICAL))
    event.Skip()


    This scrolls to the end and updates/redraws the scroll bar itself, but it doesn't update the textCtrl, which still shows scrolled to its current position.



    How can I actually scroll the textCtrl as well so that the contents are scrolled to the end, as the scrollbar indicates?










    share|improve this question


























      0












      0








      0








      I have a wxTextCtrl with many lines of text with scrollbars enabled. Inside an event, I'd like to scroll to the end of the control and redraw the control.



      Here's what I have:



       def event_scroll_to_end(self, event):
      self.m_textCtrl1.SetScrollPos(
      wx.VERTICAL,
      self.m_textCtrl1.GetScrollRange(wx.VERTICAL))
      event.Skip()


      This scrolls to the end and updates/redraws the scroll bar itself, but it doesn't update the textCtrl, which still shows scrolled to its current position.



      How can I actually scroll the textCtrl as well so that the contents are scrolled to the end, as the scrollbar indicates?










      share|improve this question
















      I have a wxTextCtrl with many lines of text with scrollbars enabled. Inside an event, I'd like to scroll to the end of the control and redraw the control.



      Here's what I have:



       def event_scroll_to_end(self, event):
      self.m_textCtrl1.SetScrollPos(
      wx.VERTICAL,
      self.m_textCtrl1.GetScrollRange(wx.VERTICAL))
      event.Skip()


      This scrolls to the end and updates/redraws the scroll bar itself, but it doesn't update the textCtrl, which still shows scrolled to its current position.



      How can I actually scroll the textCtrl as well so that the contents are scrolled to the end, as the scrollbar indicates?







      wxpython wxtextctrl






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 25 at 3:09







      devtk

















      asked Mar 25 at 2:23









      devtkdevtk

      6961820




      6961820






















          2 Answers
          2






          active

          oldest

          votes


















          1














          I suspect that you need to set the insertion point, if you want to be positioned at the end of the text i.e.



          def event_scroll_to_end(self, event):
          self.m_textCtrl1.SetScrollPos(
          wx.VERTICAL,
          self.m_textCtrl1.GetScrollRange(wx.VERTICAL))
          self.m_textCtrl1.SetInsertionPoint(-1)
          event.Skip()


          Use SetInsertionPoint(0) to position yourself at the start of the text.






          share|improve this answer























          • That moved the insertion point (cursor) to the end, but did not scroll the control at all.

            – devtk
            Mar 25 at 13:33











          • @devtk Whether ShowPosition(LastPosition) or SetInsertionPoint(-1) are used the net result is the same, by definition, the text is scrolled to the bottom. If that was not what you wanted, please clarify in your question.

            – Rolf of Saxony
            Mar 25 at 15:59












          • That is exactly what I wanted, but using either of those commands didn't scroll the window for me. They did move the insertion point, but they didn't scroll the box such that the insertion point was visible. Maybe a functionality change due to a version difference? I'm on '4.0.4 msw (phoenix) wxWidgets 3.0.5' on Win10.

            – devtk
            Mar 25 at 17:43












          • Now that I retry it, it is working. Probably my error during the initial testing.

            – devtk
            Mar 25 at 17:49


















          0














          The ShowPosition function can be used to scroll to the end by showing the last position of the buffer.



           def event_scroll_to_end(self, event):
          self.m_textCtrl3.ShowPosition(self.m_textCtrl3.GetLastPosition())
          event.Skip()





          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55330522%2fhow-to-scroll-to-the-bottom-of-a-wxtextctrl-and-redraw-screen%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            I suspect that you need to set the insertion point, if you want to be positioned at the end of the text i.e.



            def event_scroll_to_end(self, event):
            self.m_textCtrl1.SetScrollPos(
            wx.VERTICAL,
            self.m_textCtrl1.GetScrollRange(wx.VERTICAL))
            self.m_textCtrl1.SetInsertionPoint(-1)
            event.Skip()


            Use SetInsertionPoint(0) to position yourself at the start of the text.






            share|improve this answer























            • That moved the insertion point (cursor) to the end, but did not scroll the control at all.

              – devtk
              Mar 25 at 13:33











            • @devtk Whether ShowPosition(LastPosition) or SetInsertionPoint(-1) are used the net result is the same, by definition, the text is scrolled to the bottom. If that was not what you wanted, please clarify in your question.

              – Rolf of Saxony
              Mar 25 at 15:59












            • That is exactly what I wanted, but using either of those commands didn't scroll the window for me. They did move the insertion point, but they didn't scroll the box such that the insertion point was visible. Maybe a functionality change due to a version difference? I'm on '4.0.4 msw (phoenix) wxWidgets 3.0.5' on Win10.

              – devtk
              Mar 25 at 17:43












            • Now that I retry it, it is working. Probably my error during the initial testing.

              – devtk
              Mar 25 at 17:49















            1














            I suspect that you need to set the insertion point, if you want to be positioned at the end of the text i.e.



            def event_scroll_to_end(self, event):
            self.m_textCtrl1.SetScrollPos(
            wx.VERTICAL,
            self.m_textCtrl1.GetScrollRange(wx.VERTICAL))
            self.m_textCtrl1.SetInsertionPoint(-1)
            event.Skip()


            Use SetInsertionPoint(0) to position yourself at the start of the text.






            share|improve this answer























            • That moved the insertion point (cursor) to the end, but did not scroll the control at all.

              – devtk
              Mar 25 at 13:33











            • @devtk Whether ShowPosition(LastPosition) or SetInsertionPoint(-1) are used the net result is the same, by definition, the text is scrolled to the bottom. If that was not what you wanted, please clarify in your question.

              – Rolf of Saxony
              Mar 25 at 15:59












            • That is exactly what I wanted, but using either of those commands didn't scroll the window for me. They did move the insertion point, but they didn't scroll the box such that the insertion point was visible. Maybe a functionality change due to a version difference? I'm on '4.0.4 msw (phoenix) wxWidgets 3.0.5' on Win10.

              – devtk
              Mar 25 at 17:43












            • Now that I retry it, it is working. Probably my error during the initial testing.

              – devtk
              Mar 25 at 17:49













            1












            1








            1







            I suspect that you need to set the insertion point, if you want to be positioned at the end of the text i.e.



            def event_scroll_to_end(self, event):
            self.m_textCtrl1.SetScrollPos(
            wx.VERTICAL,
            self.m_textCtrl1.GetScrollRange(wx.VERTICAL))
            self.m_textCtrl1.SetInsertionPoint(-1)
            event.Skip()


            Use SetInsertionPoint(0) to position yourself at the start of the text.






            share|improve this answer













            I suspect that you need to set the insertion point, if you want to be positioned at the end of the text i.e.



            def event_scroll_to_end(self, event):
            self.m_textCtrl1.SetScrollPos(
            wx.VERTICAL,
            self.m_textCtrl1.GetScrollRange(wx.VERTICAL))
            self.m_textCtrl1.SetInsertionPoint(-1)
            event.Skip()


            Use SetInsertionPoint(0) to position yourself at the start of the text.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 25 at 11:09









            Rolf of SaxonyRolf of Saxony

            10.8k22239




            10.8k22239












            • That moved the insertion point (cursor) to the end, but did not scroll the control at all.

              – devtk
              Mar 25 at 13:33











            • @devtk Whether ShowPosition(LastPosition) or SetInsertionPoint(-1) are used the net result is the same, by definition, the text is scrolled to the bottom. If that was not what you wanted, please clarify in your question.

              – Rolf of Saxony
              Mar 25 at 15:59












            • That is exactly what I wanted, but using either of those commands didn't scroll the window for me. They did move the insertion point, but they didn't scroll the box such that the insertion point was visible. Maybe a functionality change due to a version difference? I'm on '4.0.4 msw (phoenix) wxWidgets 3.0.5' on Win10.

              – devtk
              Mar 25 at 17:43












            • Now that I retry it, it is working. Probably my error during the initial testing.

              – devtk
              Mar 25 at 17:49

















            • That moved the insertion point (cursor) to the end, but did not scroll the control at all.

              – devtk
              Mar 25 at 13:33











            • @devtk Whether ShowPosition(LastPosition) or SetInsertionPoint(-1) are used the net result is the same, by definition, the text is scrolled to the bottom. If that was not what you wanted, please clarify in your question.

              – Rolf of Saxony
              Mar 25 at 15:59












            • That is exactly what I wanted, but using either of those commands didn't scroll the window for me. They did move the insertion point, but they didn't scroll the box such that the insertion point was visible. Maybe a functionality change due to a version difference? I'm on '4.0.4 msw (phoenix) wxWidgets 3.0.5' on Win10.

              – devtk
              Mar 25 at 17:43












            • Now that I retry it, it is working. Probably my error during the initial testing.

              – devtk
              Mar 25 at 17:49
















            That moved the insertion point (cursor) to the end, but did not scroll the control at all.

            – devtk
            Mar 25 at 13:33





            That moved the insertion point (cursor) to the end, but did not scroll the control at all.

            – devtk
            Mar 25 at 13:33













            @devtk Whether ShowPosition(LastPosition) or SetInsertionPoint(-1) are used the net result is the same, by definition, the text is scrolled to the bottom. If that was not what you wanted, please clarify in your question.

            – Rolf of Saxony
            Mar 25 at 15:59






            @devtk Whether ShowPosition(LastPosition) or SetInsertionPoint(-1) are used the net result is the same, by definition, the text is scrolled to the bottom. If that was not what you wanted, please clarify in your question.

            – Rolf of Saxony
            Mar 25 at 15:59














            That is exactly what I wanted, but using either of those commands didn't scroll the window for me. They did move the insertion point, but they didn't scroll the box such that the insertion point was visible. Maybe a functionality change due to a version difference? I'm on '4.0.4 msw (phoenix) wxWidgets 3.0.5' on Win10.

            – devtk
            Mar 25 at 17:43






            That is exactly what I wanted, but using either of those commands didn't scroll the window for me. They did move the insertion point, but they didn't scroll the box such that the insertion point was visible. Maybe a functionality change due to a version difference? I'm on '4.0.4 msw (phoenix) wxWidgets 3.0.5' on Win10.

            – devtk
            Mar 25 at 17:43














            Now that I retry it, it is working. Probably my error during the initial testing.

            – devtk
            Mar 25 at 17:49





            Now that I retry it, it is working. Probably my error during the initial testing.

            – devtk
            Mar 25 at 17:49













            0














            The ShowPosition function can be used to scroll to the end by showing the last position of the buffer.



             def event_scroll_to_end(self, event):
            self.m_textCtrl3.ShowPosition(self.m_textCtrl3.GetLastPosition())
            event.Skip()





            share|improve this answer



























              0














              The ShowPosition function can be used to scroll to the end by showing the last position of the buffer.



               def event_scroll_to_end(self, event):
              self.m_textCtrl3.ShowPosition(self.m_textCtrl3.GetLastPosition())
              event.Skip()





              share|improve this answer

























                0












                0








                0







                The ShowPosition function can be used to scroll to the end by showing the last position of the buffer.



                 def event_scroll_to_end(self, event):
                self.m_textCtrl3.ShowPosition(self.m_textCtrl3.GetLastPosition())
                event.Skip()





                share|improve this answer













                The ShowPosition function can be used to scroll to the end by showing the last position of the buffer.



                 def event_scroll_to_end(self, event):
                self.m_textCtrl3.ShowPosition(self.m_textCtrl3.GetLastPosition())
                event.Skip()






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 25 at 13:35









                devtkdevtk

                6961820




                6961820



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55330522%2fhow-to-scroll-to-the-bottom-of-a-wxtextctrl-and-redraw-screen%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현