Search:

Type: Posts; User: nqioweryuadfge

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. VS 2012 Re: [RESOLVED] How to make a contextMenuStrip to scroll to a position on a RichTextBo

    The contextMenustrip does not appear under the text if the content on the document is large. So, you have to focus it in that section of the scrollbars for it to appear in that position. Caret did...
  2. VS 2012 Re: How to make a contextMenuStrip to scroll to a position on a RichTextBox

    Your code is good, but I found a solution by placing this code:
    RichTextBox.Focus() on top of the following:


    ContextMenuStrip1.Show(RichTextBox1,...
  3. VS 2012 [RESOLVED] How to make a contextMenuStrip to scroll to a position on a RichTextBox

    Am trying to make a contextMenuStrip to scroll to a certain position on a RichTextBox on the selected text. When you use a small file on the RichTextBox, it is working perfectly... But when you use a...
  4. VS 2012 Re: Object reference not set to an instance of an object

    This code:


    RichTextBox1.SelectedText = GetWordWithOutBracketedText(kamau)

    was positioned here:


    Private Sub ContextMenuStrip1_Opening(sender As Object, e As...
  5. VS 2012 Re: Object reference not set to an instance of an object

    I solved the problem by researching online what causes these errors. Fact is! You have to reference an object like a
    RichTextBox.SelectedText = GetSomething on reference that has something. E.g....
  6. VS 2012 Object reference not set to an instance of an object

    Am trying to remove this error: Object reference not set to an instance of an object - what causes this error?




    ''''' Remove words in Angle Brackets

    Private Function...
  7. Replies
    8
    Views
    6,495

    VS 2012 Re: Dictionaries not being searched well

    Arnoutdv

    The code is supposed to ensure that the whole file has been checked for matches before it moves to the next file. It should repeat the search to check if all matches have been checked.
  8. Replies
    8
    Views
    6,495

    VS 2012 Re: Dictionaries not being searched well

    Shaggy Hiker

    The replacement dictionary is of type:

    Private replacements As New Dictionary(Of String, List(Of String))
  9. Replies
    8
    Views
    6,495

    VS 2012 Dictionaries not being searched well

    I have a problem with searching Dictionaries in my program. If I begin a search with Dictionary 0, the search does not look for all possible matches completely in the RichTextBox, but skips to the...
  10. VS 2012 Re: Reading all Dictionary matches before moving to the next Dictionary

    How can I delete this post, I have already found a solution?
  11. VS 2012 Reading all Dictionary matches before moving to the next Dictionary

    How can I delete this question?
  12. Replies
    8
    Views
    4,860

    Re: For Loop search problem

    I will post a parallel programming question I hope you answer.
  13. Replies
    8
    Views
    4,860

    Re: For Loop search problem

    ok, I see it will work. Thanks.
  14. Replies
    8
    Views
    4,860

    Re: For Loop search problem

    I just don't it to move to the next file without first allowing the current file to be checked completely. All the items in each Dictionary should be checked for all possible matches against the Text...
  15. Replies
    8
    Views
    4,860

    Re: For Loop search problem

    So, how can I prevent this implementation from jumping from Dictionary to Dictionary without allowing the first Dictionary to complete its searching? It was jumping from Dictionary 1 if it has...
  16. Replies
    8
    Views
    4,860

    Re: For Loop search problem

    So, do you have the link of the location you have sent it?
  17. Replies
    8
    Views
    4,860

    For Loop search problem

    I am trying to avoid a for loop, I already have that code you have written, but I want to avoid this:

    i ++

    I want to check each dictionary procedurarly. It is jumping from Dictionary to...
  18. Replies
    1
    Views
    3,687

    VS 2012 Resume previous index during a search

    Hi,

    am trying to resume previous index during a search for matches from a file from the code below, incase an application loses Internet Connection. How do you achieve this in .NET?

    ...
  19. VS 2012 Re: The best OpenFileDialog Security code

    Yes, I've done that! Any other security suggestions? I've added a good reputation for you!
  20. VS 2012 The best OpenFileDialog Security code

    I am looking for the best OpenFileDialog Security code ideas to improve mine. Any expert support will be appreciated:



    OpenFileDialog1.Filter = "Word Document|*.rtf|Text Files|*.txt|All...
  21. VS 2012 Re: How to swift a contextmenu on the Rightside direction when it reaches at the end

    Thanks, I will mark the question as answered.
  22. VS 2012 Re: How to swift a contextmenu on the Rightside direction when it reaches at the end

    Ok, thanks. I wanted to leave you some reputation, but the application is citing that I should spread it around first. The previous code you wrote for me has encountered some problems when I tried to...
  23. VS 2012 Re: How to swift a contextmenu on the Rightside direction when it reaches at the end

    Edgemeal

    I don't know how much intelligent you are, but I must say, I thank you more than anything in this world! I will get back to you as soon as I have tested it! Thanks
  24. VS 2012 [RESOLVED] How to swift a contextmenu on the Rightside direction when it reaches at the end of

    How do you switch the direction of a contextMenu as it draws closer to the end of a sentence? Some of my popups are longer, and it needs to be turned on the left side to allow the user to view the...
  25. VS 2012 Re: How to send a notification to the user that the file is in use by another program

    Sitten Spynne

    Good answer too, I had already figured a good way to do that. I have given you a good reputation too!
  26. VS 2012 Re: How to send a notification to the user that the file is in use by another program

    techgnome

    Your answer was very good, you write very clean code. Thanks, I have given you a strong reputation.
  27. VS 2012 How to send a notification to the user that the file is in use by another program

    How do you send a notification to the user that the program cannot Autosave a file, while it is in use on another program? It cannot be saved even if there is a timer on the program on the...
  28. VS 2012 Re: An unhandled exception of type 'System.IO.IOException' occurred in mscorlib.dll

    Any solutions please?
  29. VS 2012 Re: An unhandled exception of type 'System.IO.IOException' occurred in mscorlib.dll

    Any solution?
  30. VS 2012 Re: An unhandled exception of type 'System.IO.IOException' occurred in mscorlib.dll

    I forgot to add this code:



    Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
    AutosaveFile()
    End Sub
    Private Sub...
  31. VS 2012 Re: An unhandled exception of type 'System.IO.IOException' occurred in mscorlib.dll

    AutoSave Function() Timer is for saving the RichtextBox content on the Private Sub RichTextBox1_TextChanged(). This can be done per second depending on the changes you make on the richtextbox! I did...
  32. VS 2012 An unhandled exception of type 'System.IO.IOException' occurred in mscorlib.dll

    An unhandled exception of type 'System.IO.IOException' occurred in mscorlib.dll

    Additional information: The process cannot access the file 'C:\Users\ACER\Desktop\Common-Mistakes-Backup.rtf'...
  33. Replies
    10
    Views
    7,445

    VS 2012 Re: Removing the color after moving next?

    KGComputers

    Si_the_geek's suggestion never worked! Let me work on Edgemeal's first then I will get back to you.
  34. Replies
    10
    Views
    7,445

    VS 2012 Re: Resetting the color of highlighted text on a richtextbox

    Edgemeal

    I will get back to you.
  35. Replies
    10
    Views
    7,445

    VS 2012 Resetting the color of highlighted text on a richtextbox

    I asked a question, but I did not get an answer on how to reset the color of a highlighted word on this code. How do you do it?



    If foundIndex >= startZ Then

    ...
  36. Replies
    10
    Views
    7,445

    VS 2012 Re: Removing the color after moving next?

    It refused to work when I tested the code. How do you resolve this?
  37. Replies
    10
    Views
    7,445

    VS 2012 Re: Removing the color after moving next?

    OK, will see if it works then I'll get back to you!
  38. Replies
    10
    Views
    7,445

    VS 2012 Removing the color after moving next?

    Is there a way to remove the highlighted text once you select the next item? Here is a rough code, but it doesn't reset the color. What I observed is that one cannot pinpoint which word is being...
  39. VS 2012 Re: [RESOLVED] creating a gap between a highlighted word and a contextmenustrip

    Edgemeal! All your answers here have worked except for the huge chunk of code that you had first posted. So, the smaller ones have worked! I just returned to say thank you! You too dbasnett!
  40. VS 2012 Re: creating a gap between a highlighted word and a contextmenustrip

    It looks good! But is there a way to remove the highlighted text once you select the next item? Here is a rough code, but it doesn't reset the color. What I observed is that one cannot pinpoint which...
Results 1 to 40 of 115
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width