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

Search:

Type: Posts; User: Momentum

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Re: How To Access Port Forwarded Resource Via Socket Programming?

    Problem solved. solution in link

    http://www.ece.uvic.ca/computing/port_forwarding.shtml
  2. How To Access Port Forwarded Resource Via Socket Programming?

    Hi,

    I just need to understand what information I should provide to a c++ code if I had a tunnel session established with the following configuration

    I'm on a window 7 computer.
    I successfully...
  3. Re: [boost/thread.hpp] Boost Library 1.51.0 Error in Visual Studio 2010

    ok, thanks for the help and clarification
  4. Re: [boost/thread.hpp] Boost Library 1.51.0 Error in Visual Studio 2010

    understood.

    How come I did not need to setup the "Additional Includes Library" field to use the libpqxx library?
  5. Re: [boost/thread.hpp] Boost Library 1.51.0 Error in Visual Studio 2010

    thanks for the reply and clarification. I was able to figure it out using \showincludes

    Like I said before, if I removed the libpqxx library from the "Additional Includes Library" field in project...
  6. Re: [boost/thread.hpp] Boost Library 1.51.0 Error in Visual Studio 2010

    I narrowed down the problem to a conflict between different C++ libraries

    If I remove libpqxx library references in VS project properties, then boost works correctly. If I include it, then the...
  7. [boost/thread.hpp] Boost Library 1.51.0 Error in Visual Studio 2010

    Hi,

    I installed Boost Library 1.51.0 and installed BoostPro binary library (boost_1_51)

    The following is my code



    #include <string>
    #include <iostream>
  8. [PL/pgsql] Convert character varying to an integer

    Hi,

    browsing the internet I found a few solutions. While trying out the solutions, I combined some the ideas and found the following code works.
    But is it efficient and is it a trustful...
  9. Replies
    3
    Views
    1,749

    Re: PL\Pgsql Custom Function Error

    It was suggested to me to use Dynamic Queries (http://www.postgresql.org/docs/current/interactive/plpgsql-statements.html#PLPGSQL-STATEMENTS-EXECUTING-DYN)
    Got it working and it's more efficient...
  10. Replies
    3
    Views
    1,749

    Re: PL\Pgsql Custom Function Error

    thanks for replying

    I read that page before, the following sentences suggest I should be ok



    If character varying is used without length specifier, the type accepts strings of any size.The...
  11. Replies
    3
    Views
    1,749

    PL\Pgsql Custom Function Error

    Hi, I'm practicing writing PL\pgsql custom function using pgadminIII



    This is the automatically generated code after setting the configuration options in the "New Function" popup


    CREATE OR...
  12. Replies
    8
    Views
    5,127

    Re: Error C2079: uses undefined class

    thanks for the info and for adding perspective
  13. Replies
    8
    Views
    5,127

    Re: Error C2079: uses undefined class

    thanks for the reply. While trying to troubleshoot the problem, I stripped each class to the bare minimum functions and variables, removed all pointers and references, to hopefully figure out the...
  14. Replies
    8
    Views
    5,127

    Re: Error C2079: uses undefined class

    And like that, my problem is solved. Thanks alot
  15. Replies
    8
    Views
    5,127

    Error C2079: uses undefined class

    Hi,

    I have two classes, each having its own header and implementation files. I'm trying to use one object in another object, but I'm constantly getting this error. Any suggestions? thanks
    ...
  16. Re: Visual Studio LNK2001 Error When Compiling With Libpqxx Library

    Solved it. Thanks for your efforts guys.

    I did the whole thing over again

    Before proceeding, I made sure of the following:
    - installed 32bit - Postgresql
    - make sure visual studio platform...
  17. Re: Visual Studio LNK2001 Error When Compiling With Libpqxx Library

    But I'm not building x64 application. That's the result of me troubleshooting, after win32 setup was not working.
    The link2001 error occurs with win32 setup too. But the functions are somewhat...
  18. Re: Visual Studio LNK2001 Error When Compiling With Libpqxx Library

    These files are import files. There's one version of the library for windows.

    The release version should only have libpqxx.lib & libpq.lib, not static versions. But since I've been having...
  19. Re: Visual Studio LNK2001 Error When Compiling With Libpqxx Library

    Thanks for the reply.

    I supplied the linker with the proper library files, what else is there to do?
    The x64 reference in the error output is due to me changing the platform between win32 and x64...
  20. Visual Studio LNK2001 Error When Compiling With Libpqxx Library

    Hi,

    Code I using:


    #include <iostream>
    #include <string>
    #include <pqxx/pqxx>

    using namespace std;
  21. Re: simple and no-error containing openGL programs wont render, Win 7

    thanks for the reply, doing further internet searching about the Asus softwares like smart doctor and gamer osd...I read that a guy was having problems with his opengl, so he began to remove each one...
  22. simple and no-error containing openGL programs wont render, Win 7

    After successfully building program, I go to run it and only get the window with a transparent center to appear.

    I tried other simple codes and the same thing occurs

    For troubleshooting, I'm...
  23. Replies
    5
    Views
    1,155

    Re: Switch Statement, varables' value changes

    I placed the break statment outside the brackets, while using the debugger, I narrowed down the "wipe out" of varable to occur the moment I exit the curly bracket, but before the break statement.
    ...
  24. Replies
    5
    Views
    1,155

    Re: Switch Statement, varables' value changes

    The stack description makes sense.

    But Im not sure what you mean by move the varable?

    The nodePtrStack was declared in the beginning of main. So I would assume that the changes to nodePtrStack...
  25. Replies
    5
    Views
    3,614

    Re: no match for operator >> in?

    also check the spelling



    printList (list, number);

    vs

    printLIst (list, number);
Results 1 to 25 of 37
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured