CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: DaddyWritesCode

Search: Search took 0.11 seconds.

  1. Re: cryptoobfucator made by LogicNP Software, if it works its good

    Strings aren't generally obfuscated unless you tell the obfuscating tool to do so. The idea is to obfuscate the logic more than anything. It appears you may have been using a trial version of the...
  2. Re: How to replace characters in a mixed string?

    private void tipoComboBox_SelectedValueChanged(object sender, EventArgs e)
    {
    if (tipoComboBox.SelectedIndex == 0)
    {
    string Str = valorTextBox.Text.Replace("-", "");
    valorTextBox.ForeColor =...
  3. Replies
    6
    Views
    1,672

    Re: Need help

    Make your message() static as well. You can't access a non-static method in a static class, even when instantiating it.
  4. Re: c# need help reading a file looking for a value and displaying it in textbox ?

    Here is a project that shows you how to load all the values into a listview with columns and to search just one.
    33747
  5. Replies
    6
    Views
    7,059

    Re: sign tool not found

    Not usually. Sometimes if you set it to sign it'll stay in the project file even after you unchecked the box. It's a glitch I've noticed in every version of Visual Studio.
  6. Re: c# need help reading a file looking for a value and displaying it in textbox ?

    At work now but if you can give me a few hours I'll do a winform rendition that allows you to reuse the code.
  7. Replies
    6
    Views
    7,059

    Re: sign tool not found

    In that case, open the project file in Notepad or another text editor and remove the following sections. Save and re-open the solution.



    <PropertyGroup>
    <SignManifests></SignManifests>
    ...
  8. Replies
    6
    Views
    7,059

    Re: sign tool not found

    Sounds like you're trying to sign your assembly. Go to "Project - > Properties" on the menu bar. On the left you'll see "Signing" In that tab you'll see "Sign Manifest" and "Sign Assembly". Make sure...
  9. Re: c# need help reading a file looking for a value and displaying it in textbox ?

    I'm familiar with the COD weapon files, used to write utilities back in the day of COD:4
    This will load all the keypair values into a dictionary. You can use



    var pair = keysDict.Single(s =>...
  10. Replies
    3
    Views
    4,645

    Re: Save an array as pdf to disk

    Sorry...if you DO have a method that actually returns the PDF as an Array you can use

    File.WriteAllBytes("yourfile.ext", yourBytes) and pass your array variable.
  11. Replies
    3
    Views
    4,645

    Re: Save an array as pdf to disk

    As far as I know there are no native .Net methods that can save to PDF. You can use PdfSharp or other PDF libraries to achieve this.
  12. Re: c# need help reading a file looking for a value and displaying it in textbox ?

    Paste the file you want to read and I'll write a snippet that'll work for what you need.
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured