怎么在vb中 用richtext 编写阅读器时下次自动打开上次未读完的内容
[怎么在vb中 用richtext 编写阅读器时下次自动打开上次未读完的内容
我用的richtext编写文本阅读器
怎么让他下次打开上次未读完内容
谢谢
[解决办法]
在Form_Load里面写:
Me.Rich1.SelectStart = GetSettings(App.Title, "General", "Book Mark", "1")
在Form_Unload里面写
SaveSetting App.Title, "General", "Book Mark", Me.Rich1.SelectStart