Search results for query: *

  • Users: Polas5
  • Content: Threads
  • Order by date
  1. P

    I can't use ScrollToCaret to move

    Hi everyone.The problem is that i can't use cursor to move text in richtextbox using scrolltocaret. Here the code for so far i have. Dim length As Integer = rtf.Text.Length rtf.[Select](length, 0) rtf.ScrollToCaret() The scroll goes to the bottom correct and back but the...
  2. P

    Search and Highlight Text in a RichTextBox

    How to search from textbox when you type something not form string everytime ? Here is the code. Dim searchword As String = "i do not like this using better from textbox1.text if someone knows how to change it" Private Sub RichTextBox1_TextChanged(ByVal sender As System.Object, ByVal e As...
  3. P

    Remove google cache pages from richtextbox in b.net

    Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted Dim htmlele As HtmlElementCollection htmlele = WebBrowser1.Document.GetElementsByTagName("h3")...
  4. P

    How Can I Extract Doman Names Like This But Only With Related Links ?

    How to make regex match code for vb.net to extract domain names but only with related links like this and get output as i type in searchbox. Example: I type vb.net for begginers and i want to extract it only related vb forums,sites with these doman names. How can i do that ? Here is the...
  5. P

    Automatically pick urls in listbox then load to webbrowser

    My problem i have almost made the program which gives urls from google and collect in listbox and sort found as i typed links and copy into richtextbox. But i need to pick up all urls from google automatically from all pages. Because now it does only 1 page. Here is the part of my code in...
  6. P

    Question How to upload files and subfolders or in zip,rar using my code ?

    Hello. Here I have a small problem with ftp upload all files and subfolders. Here is my code. Private Sub Button1_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click OpenFileDialog1.ShowDialog () TextBox1.Text = OpenFileDialog1.FileName...
Back
Top