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

Search:

Type: Posts; User: Tanaka

Search: Search took 0.05 seconds.

  1. Re: Writing to output pane of VS2013 in C# VsPackage fails

    Well just an update, it seems to work fine when writing specifically to the BUILD output pane or creating my own, just not to the general output.



    Guid guidGeneralPane =
    ...
  2. Writing to output pane of VS2013 in C# VsPackage fails

    I'm trying to write some string data to the output pane of Visual studio 2013 as part of a C# VSPackage. I've copied some tutorial code (http://msdn.microsoft.com/en-us/library/cc138529.aspx) that is...
  3. Thread: Dependent types

    by Tanaka
    Replies
    3
    Views
    11,528

    Re: Dependent types

    Line 20:

    typedef typename testType::test_Value testVal;

    Line 29:

    tic<test> t;
  4. Thread: Dependent types

    by Tanaka
    Replies
    3
    Views
    11,528

    Dependent types

    In the following code where I'm experimenting with dependent types I'm getting these compiler errors:
    ...
  5. Re: Access violation reading void* assigned dynamically allocated value inside functi

    Oh, that makes sense, thanks. I didn't realize you had to do that with pointers.
  6. Re: Access violation reading void* assigned dynamically allocated value inside functi

    I just noticed that the pointer is being cast to unsigned int instead of int in my example. I copy pasted from code in my program and forgot to change that. Anyway, since I can't seem to find a way...
  7. Access violation reading void* assigned dynamically allocated value inside function

    Hi guys,

    I'm hoping someone can explain the behavior of this code for me. I don't understand why the void pointer passed to testb doesn't continue pointing to the allocated integer after the...
  8. Operator overload not defined error when type is accessed through const struct

    I have a basic vector/point class where I've overloaded a bunch of arithmetical operators:



    #pragma once

    class point
    {
    public:
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured