Search results for query: *

  1. B

    vb.net double click on button?

    my problem is this: Imports System.Runtime.InteropServices Imports Word Private Sub btnSelectFile_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSelectFile.Click Dim word As New Word.Application Dim doc As Word.Document 'filter which files...
  2. B

    vb.net double click on button?

    how to make double click on button mean you just click once time only
  3. B

    how open word input to textbox (vb.net)

    *select word files* Imports System.Runtime.InteropServices Imports Word Private Sub btnSelectFile_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSelectFile.Click Dim word As New Word.Application Dim doc As Word.Document 'filter which files...
  4. B

    how open word input to textbox (vb.net)

    i mean how to open any word files like use open dialog to select which word files to open
  5. B

    how open word input to textbox (vb.net)

    how to open any word files?
  6. B

    how open word input to textbox (vb.net)

    First, I create a new project within Visual Studio .NET and add a reference to the Microsoft Word type library. I am using Microsoft Word 2003, so the type library is Microsoft Word 11.0 Object Library. Once the reference is added, I can use the Word objects in the code. Imports...
  7. B

    vb.net open and close form

    How to close form and open another form in vb.net If use timer because i can close form but cannot open anothet from
  8. B

    vb.net help strings

    ok...what i mean is the word is "abab" i would like to short the word for compare 1st "a" to third "a" if this is true then make to one "s" only then second word with compare so on. How to write this program?
  9. B

    vb.net help strings

    How to short the word or avoid repeat word e.g the word is "secretsecret'" the program returns only 'secret' as the word.
  10. B

    how to cut and past to richtextbox in vb.net?

    never mind anyway thanks
  11. B

    vb.net help

    somewhere else? just this constructor of an object only...
  12. B

    vb.net help

    e.Graphics.DrawString(txtOriginal.Text, New Font("Courier New", 10, FontStyle.Regular), Brushes.Black, 50, 50) after i debug it said "too many arguments to pulic sub new"(underline) then i reduce but still same error.
  13. B

    how to cut and past to richtextbox in vb.net?

    i dont have weblink....
  14. B

    how to cut and past to richtextbox in vb.net?

    because i use AxRichtextbox it cannot use selecttext..
  15. B

    how to cut and past to richtextbox in vb.net?

    and how about select all text?
  16. B

    how to cut and past to richtextbox in vb.net?

    after i paste to my richtextbox but my previous text all disappear. I want paste it but my previous text still in richtextbox
  17. B

    how to open word(microsoft word) to richtextbox in vb.net?

    how to open word(microsoft word) to richtextbox in vb.net? i just know open word use vb.net only
  18. B

    how to cut and past to richtextbox in vb.net?

    how to cut and past to richtextbox use mainmenu?
Back
Top