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

Search:

Type: Posts; User: Eri523

Search: Search took 0.25 seconds.

  1. Re: [RESOLVED] Convert from C# to VC++2010 -dataGridView?

    Mostly out of curiosity...



    What converter? Is there actually a converter from C# to C++/CLI? (And if there is, is it from MS? I'd rather expect them to publish a converter for the opposite...
  2. Re: Convert from C# to VC++2010 -dataGridView?

    You're welcome! :)

    However, though your code works now, some additional comments:



    Keys ^ key = keyData & (System::Windows::Forms::Keys::KeyCode);
    //if (key == Keys::Enter)
    if...
  3. Re: Convert from C# to VC++2010 -dataGridView?

    Keys is a managed enum, not a reference type. (As such it's much closer to a value type than a reference type, yet managed enums and value types are different animals.) Removing all the ^s, which are...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured