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

Search:

Type: Posts; User: ImNotaBot

Search: Search took 0.02 seconds.

  1. Java Access Bridge. Getting acces to a standalone JRE.

    I want to get access through the Java Access Bridge to an application that has its own JRE. JAB works fine for me with the "public" JRE (SE 7). But the target application has its own JRE (SE 6)....
  2. Replies
    9
    Views
    5,057

    Re: Java Accesss Bridge installation

    Please remove this post. Thanks.
  3. Replies
    9
    Views
    5,057

    Re: Java Accesss Bridge installation

    No please dont missunderstand me. JAB is a C/C++ library, that offers the funtionality to get access to GUIs of Java appilcations like the winapi on win32 applications. It is NOT about Java here....
  4. Replies
    9
    Views
    5,057

    Re: Java Accesss Bridge installation

    Okayokay please ignore the post above.

    It is specific to Visual C++ because the files are ending on *.cpp and because I want to use it in Visual Studio 2010. If I am completely wrong here please...
  5. Replies
    9
    Views
    5,057

    Re: Java Accesss Bridge installation

    Yes.

    Cite:
    "Java Access Bridge is a technology that exposes the Java Accessibility API in a Microsoft Windows DLL, enabling Java applications and applets that implement the Java Accessibility API...
  6. Replies
    9
    Views
    5,057

    Java Accesss Bridge installation

    I tried installing Java Accesss Bridge for a few hours now. But with no success. The installer from ORACLE does not work (rolls back at the end without error message). Many tries of patching some...
  7. “_ERR_remove_thread_state” linker error on libcurl usage

    1. Got OpenSSL (Win32) here http://slproweb.com/products/Win32OpenSSL.html
    2. Downloaded and compiled libCURL wit following flags

    USE_SSLEAY;
    USE_OPENSSL;
    CURL_DISABLE_LDAP;
    3. Included...
  8. Replies
    3
    Views
    1,582

    Re: Bachelor Thesis

    Okay, now I feel defensive. But your right. Since I have a tight timeplan, I was not able to visit the forum again. I hoped to get mail in case of an answer. But I got none.

    As you already...
  9. Replies
    5
    Views
    5,023

    Re: Subclass objects in one array?

    Well sorry that I did not answer. Quite impolite... but I am terribly under pressure of time due to exams.
    I will come back to the topic as soon as i made them.

    I really appreciate your help so...
  10. Replies
    3
    Views
    1,582

    Bachelor Thesis

    Hi

    i am a Computer Science Student from Germany. I am on my way to my bachelor thesis and since our faculty does not provide any topic that im interested in, I am trying to find one on my own....
  11. Replies
    5
    Views
    5,023

    Subclass objects in one array?

    Hi

    i want to save similar objects, meaning having same superclass, in an array. Example: I have a superclass vehicle. Class car and truck inherit from vehicle. Now i have a few from both of them...
  12. Re: Serious lack of OOP understanding. Dependencies in classes.

    Mr. McKenzie, you are great!

    Thanks for the rel_ops tip.

    I already knew the forward declaration, but I will have to study it even more exactly. Sometimes it just does not come into my mind to...
  13. Serious lack of OOP understanding. Dependencies in classes.

    Hi
    i have two classes. CHand1326 and CHand169. In both of them i make use of an object of each other. But somehow this produces following error:


    1>c: ...\Hand1326.h(23): error C2061:...
  14. Replies
    0
    Views
    756

    std::map and comparison function

    EDIT: SOLVED!

    Hi

    once again i need your help.

    I have a struct representing a poker hand category.


    typedef struct{
  15. Replies
    7
    Views
    1,548

    Re: Strcpy/memory allocation problem

    Great suggestion. Thanks!
  16. Replies
    7
    Views
    1,548

    Re: Strcpy/memory allocation problem

    Ahh untill now i thought, that the new secure functions work in a different way. In case if strcpy_s i thought just <size> characters would be copied. Well, I see no gain in there, hence i wont use...
  17. Replies
    7
    Views
    1,548

    Re: Strcpy/memory allocation problem

    Okay thankyou for the fast reply. But for what reason do I have to state the size of the source string? (2nd parameter)

    Greets
  18. Replies
    7
    Views
    1,548

    Strcpy/memory allocation problem

    char str[]="Hello"; // 5 chars
    char *tmpstr;
    int size = strlen(str); // 5
    tmpstr = new char[size+1]; // char[6]
    strcpy_s(tmpstr, size, str); <error...
  19. Replies
    9
    Views
    2,604

    Re: Make HWND global LNK2005

    Okay now i understood what u want to tell me. But is this



    #ifndef somethingThatShouldNotBeDuplicated
    #define somethingThatShouldNotBeDuplicated
    #endif


    not exactly to avoid the...
  20. Replies
    9
    Views
    2,604

    Re: Make HWND global LNK2005

    Okay, but in fact I cant see *where* i declared MyWindowhandle two times, thats what surprised me. Do you see it? I just declared it in the GUI.h Nowhere else. I think my linker is kidding me :)
  21. Replies
    9
    Views
    2,604

    Make HWND global LNK2005

    hey folks,

    im codin a win32 app. and i want to make the HWND hWnd to a global variable. well i put all this gui stuff in a file GUI.h and GUI.cpp. now i want to make the window handle global so i...
Results 1 to 21 of 23





Click Here to Expand Forum to Full Width

Featured