Search results for query: *

  1. S

    Dictionaries for spellchecking

    I am aware of open source spell checkers available, but I would like to get spellchecking dictionaries that would allow me to sell the application I am developing. I would like to add spell checking to my multi-lingual application, and I see a lot of applications that have it, so what I am...
  2. S

    Roaming profile

    Is it was, the only way I found to cure this problem was to re-set to the default settings for Visual Studio, that seems to have cleared the issue.
  3. S

    deploy a project

    Not sure exactly HOW I would need to modify the question to make it clearer: "Is there another application you can use to deploy a project without losing your sanity?" Other than that, my post is saying that I am trying to store three files in the ProgramData folder upon installation of the...
  4. S

    Roaming profile

    Using Visual Studio 2010, Windows 7. Setting up project on one machine, then attempting deployment it on another machine with Windows 7 on it: How do you get the installer to install an application normally, my app is installing on roaming profile, and I do not want it to install that way ...
  5. S

    deploy a project

    The only DLL this app uses is for a richtextbox. No other DLLs in use.
  6. S

    deploy a project

    Using Visual Studio 2010, Windows 7. Setting up project on one machine, then attempting deployment it on another machine with Windows 7 on it: When it comes to deployment, every time I have one to do, it is like pulling teeth! I am in file system setup, and I have a custom folder created...
  7. S

    Find replace near the the end of a text file

    In a find-replace operation, when you are very close to the end of the text file, I have found that if you use: FrmMain.RTBMain.SelectedText = findInstance.replaceString it adds the text, but does not re-size the file as a whole if you are replacing a small string with a large string, and...
  8. S

    Question Text overlapping after paste into richtextbox

    I have an OCR program that I get text from, it goes into wordpad, and I then paste it into my application that uses a richtextbox to hold the text. The problem is that when I paste the text into the richtextbox, the height of the font does not reset, and I get a jumble of text that is...
  9. S

    Frustrated with XML

    I am posting this for anyone that runs into a similar issue. This is the whole procedure I created. Keep in mind that this was custom-created to replace the WIN API function that read a text file, so it may not look like normal XML usage, I may not be a perfect coder, but I am an effective...
  10. S

    Frustrated with XML

    Yea, the ToArgb/FromArgb thing is something I dealt with when I wrote the API functions, I had to write a procedure to handle non-custom colors . . . I remember it being lots of fun :fatigue: Is there are reason for the "..." between root and <Color0>? Is it like a directory level...
  11. S

    Frustrated with XML

    The biggest problem I am having at the moment is, I have a XML file like this: <?xml version="1.0" encoding="utf-8"?> <root> <Searches> <search0>BlankBlackoutList</search0> </Searches> <BlankList> <Color0>Color [Black]</Color0> <Color1>Color...
  12. S

    Frustrated with XML

    I am working on an application that works with foreign languages and also uses colors. The original program persisted all of its data to a text file, and worked very well, but used unmanaged code, that is, API functions. When I did research on how to persisted application settings with...
Back
Top