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

Search:

Type: Posts; User: Wombat

Page 1 of 9 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    27
    Views
    8,374

    Re: Conditional in resource file

    Thanks guys. I realized I need to specify unique condition for the original resource too. Now it works. Hours of coding have given me headache and overlook this obvious problem.

    Thank you very...
  2. Replies
    27
    Views
    8,374

    Re: Conditional in resource file

    Thanks VictorN for the prompt reply.

    Let me elaborate my problem. I have a project which is initially in english version, and I need to convert it into spanish language.

    So, this is basically...
  3. Replies
    27
    Views
    8,374

    Re: Conditional in resource file

    Hi I have a similar problem. Can someone elaborate on where exactly should we set the preprocessor symbols for the condition?

    I have set the preprocessor symbol in the preprocessor definitions...
  4. Re: Calling stored procedure with out parameters using ODBC

    Any suggestions guys?
  5. Calling stored procedure with out parameters using ODBC

    Hi,

    I am using VC++ and ODBC. I need to call an oracle stored procedure that has has in and out parameters.

    The ExecuteSQL method of CDatabase doesn't allowed for out parameters. So if anyone...
  6. Replies
    5
    Views
    23,559

    Re: HELP! Oracle error with ORA-01019

    Any one has any idea why this following line generate an exception (ORA-01019):



    cn->Open(bstrConnString, "", "", adConnectUnspecified);


    Full source code above in the first post. Any...
  7. Replies
    5
    Views
    23,559

    Re: HELP! Oracle error with ORA-01019

    Thanks for the suggestions. I have tried using SysFreeString to release the memory allocated but the problem still occurs.

    In fact, though the lack of memory deallocation will cause memory leaks,...
  8. Replies
    5
    Views
    23,559

    Re: HELP! Oracle error with ORA-01019

    Hi Davide++,

    Thanks for your reply.

    I know about the explanations that you posted, which is the standard answer from oracle documentation and i don't think is applicable in this case.

    The...
  9. Replies
    5
    Views
    23,559

    HELP! Oracle error with ORA-01019

    Hi guys,



    CString GetQueryValue(CString strConnectionString, CString strQuery)
    {
    CString strResult;

    CoInitialize(NULL);
    try
  10. Replies
    3
    Views
    1,921

    Re: How to find people to test out my software

    Do we have to create an account, provide email address and other info before we can try out your utility/game? I guess that's the reason why people do not want to try out your utility, cos it's...
  11. Replies
    2
    Views
    1,626

    Re: Please suggest.........

    I would choose the latter, a full-fledge test management system.
  12. Replies
    2
    Views
    1,887

    Re: Career Exploration Essay - Need Interviewie!

    Not all programmers are mean. They are probably busy and don't really wanna entertain cold calls. I don't know about others but for me I also hate to be interrupted by some strangers' phone calls....
  13. Thread: my blog

    by Wombat
    Replies
    1
    Views
    1,094

    Re: my blog

    Nice effort there :)

    But frankly speaking I would prefer Codeguru, hehe....
  14. Replies
    11
    Views
    3,533

    Re: How Much Does An 'Average' Developer Make?

    It really depends on your location. You also need to consider the overall remuneration package such as the bonuses, medical benefits, etc.

    But at my country programmers are either on contract or...
  15. Replies
    17
    Views
    2,384

    Poll: Re: How many people here Blog?

    I do blog, but not on technology or programming stuffs.
  16. Replies
    4
    Views
    826

    Re: c++ noob need assistant

    I was away from Codeguru for some time but I guess the rule hasn't changed. We don't do homework for people here. :)
  17. Replies
    4
    Views
    1,805

    Re: Software for sell

    Who are your targeted customers? Individual consumers or companies? Giving out trial version can be a way to introduce your software too. It's always difficult to introduce new products to people.
  18. Replies
    4
    Views
    1,282

    Re: Question on Time Synchronization...

    In my previous job, we used a shareware called Tardis to do time synchronization. It can be used to syncrhonize against an external site via internet, or against one of the PC within your local...
  19. Replies
    4
    Views
    3,230

    Re: LNK2005 and LNK1169

    How about showing us the main file? Seems like the constructor is being defined in multiple files thus causing the linker error.
  20. Replies
    1
    Views
    1,052

    Problem installing VS.Net 2003 on Win Vista

    Hi,

    I encountered problems when trying to install Visual Studio .Net 2003 on Win Vista. During the installation of prerequisite, it encounters an error when trying to install .Net framework 1.1. ...
  21. Thread: project setting

    by Wombat
    Replies
    11
    Views
    1,403

    Re: project setting

    Also, you would need to specify the entry point (for vc6.0):

    1. Goto Project -> Settings
    2. Goto Link Tab, under "Output" category
    3. In the box under "Entry-point Symbol", enter...
  22. Thread: project setting

    by Wombat
    Replies
    11
    Views
    1,403

    Re: project setting

    For vc6.0 you need to kinda manually set it:

    1. Goto Project -> Settings
    2. Goto C++ Tab (Choose General Category)
    3. In the box under "Preprocessor definition", add the word "_UNICODE" in place...
  23. Replies
    13
    Views
    1,855

    Re: ascii code to character

    Sorry but the question itself is ambiguous. The ASCII character set is just a set of numbers from 0 to 255 that is used to represent some common characters, including 'A' to 'Z', 'a' to 'z', '0' to...
  24. Replies
    1
    Views
    644

    Re: noob asking for help.

    To refresh your memory, while-loop works like this:



    int i=0;
    while(i < length)
    {
    // Write your codes here

    i++;
  25. Replies
    8
    Views
    1,281

    Re: Multithread problems

    This is the line that cause the dialog to be "white blank rectangle" :



    ::WaitForSingleObject(m_pThread->m_hThread, INFINITE);


    The above line of code causes the main working thread to...
Results 1 to 25 of 212
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured