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

Search:

Type: Posts; User: possom

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    4,225

    Re: video processing - languages and libraries?

    Hi, thanks for the response. Yes I had independently decided to use OpenCV, and reading your post just reenforced that :)

    Thanks
  2. Replies
    2
    Views
    4,225

    video processing - languages and libraries?

    Hi,

    I am looking for a programming language that would suit development of an application that could process video feeds for motion detection and object recognition. Would like to have this...
  3. Replies
    2
    Views
    907

    Re: Java application integration with JSP

    Cheers cjard, that clarifies things.
  4. Replies
    2
    Views
    907

    Java application integration with JSP

    Hi all,

    I am new to some Java platform APIs (J2EE, JMS etc), although have developed in Java and have a decent understanding of OO dev.

    I currently have a Java application (a reporting...
  5. Re: Difference between Global and Local Static veriable

    I was talking about normal (non-static) variables.

    It is my understanding that all static variables are in the global memory space, sorry I can't explain the difference between global and...
  6. Thread: design patterns

    by possom
    Replies
    4
    Views
    631

    Re: design patterns

    That book is where design patterns were born, and has made them as what they are today, so I agree with Andreas that it should be the first place to go.

    If you would like to expand your knowledge...
  7. Re: Difference between Global and Local Static veriable

    One other thing that may be elborated:

    Global variables are placed in the programs global memory space, which has a life-time of the program. Local variables on the other hand are placed on the...
  8. Re: Visual C++ & Visual C++.NET what to learn ..

    Ok, I understand your answer to be that Visual C++ .Net 2003 is NOT a subset of Visual Studio .Net 2003... in other words, Visual Studio .Net 2003 is lacking partly or all the C++ functionality that...
  9. Re: Visual C++ & Visual C++.NET what to learn ..

    I have a related question:

    Is Visual C++ .Net 2003 the same as (or totally emcompassed in) Visual Studio .Net 2003?
  10. Replies
    5
    Views
    4,664

    Re: Access Violation when using 'new int[]'

    Heres the local values just before the access violation:

    _crtheap = 0x00000000
    size = 64
  11. Replies
    5
    Views
    4,664

    Access Violation when using 'new int[]'

    Hi there,

    I have been looking at this all day, and I think that my installation of some Visual Studio C++ libraries may be corrupt:

    Code:


    int main() {

    int intarray[] = {1,2,3,4,5};
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured