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

Search:

Type: Posts; User: g_gili

Page 1 of 50 1 2 3 4

Search: Search took 0.10 seconds.

  1. Re: OLEDB Connection - need help to resolve "Timeout Expired" Error

    Just for a simple information :) . Does a simple 'small' query works? I mean I want to know that here is a general problem or the problem is for that big query.

    Best regards,
    Gili
  2. Replies
    2
    Views
    1,497

    Re: Embedded Excel Problem

    It would be better if you could use code tags :) ...and also if the code doesn't work then you should upload a sample project that we can try to figure it out why doesn't work.


    Regards,
    Gili
  3. Replies
    13
    Views
    2,034

    Re: Searching a word doc

    How did you opened a Word document? can you please be more specific?
  4. Thread: GUI Programming

    by g_gili
    Replies
    11
    Views
    1,787

    Re: GUI Programming

    Well if you read my profile you will find it ;)) :D .

    Regards,
    Gili
  5. Thread: GUI Programming

    by g_gili
    Replies
    11
    Views
    1,787

    Re: GUI Programming

    Then you could start with MFC ;)

    Tutorial

    But I suggest to get an mfc book ... that would be more helpful than a tutorial . ( IMHO )

    Good luck.
    Gili
  6. Replies
    14
    Views
    2,259

    Re: SQL - where to start?

    Have a look at Ovidiu Cucu's article.
    MySQl Wrapp
  7. Thread: C++ textbook

    by g_gili
    Replies
    1
    Views
    664

    Re: C++ textbook

    Have look at the FAQ section
  8. Thread: Wm_paint

    by g_gili
    Replies
    4
    Views
    1,328

    Re: Wm_paint

    Hi anantwakode,

    Did you have a look at


    BOOL GetUpdateRect(
    LPRECT lpRect,
    BOOL bErase = FALSE
    );
  9. Thread: VC++ is slow

    by g_gili
    Replies
    10
    Views
    1,521

    Re: VC++ is slow

    Or you could try to delete the *.ncb and *.suo files... Perhaps make a backup first and then delete them ...

    Best Regards,
    Gili
  10. Replies
    4
    Views
    1,140

    Re: Listbox with three columns?

    Are you using MFC? have you looked at the CListBox class? :) Or do you need some code example about this? :)

    Regards,
    Gili
  11. Replies
    23
    Views
    1,775

    Re: congratulations to ovidiucucu for 5000 posts

    Congratulations! :wave:
  12. Replies
    6
    Views
    1,118

    Re: getting average!!

    float sum = 0;
    float n[6]={1,2,3,4,5,6}

    for( int i = 0; i<count; ++i)
    {
    sum += n[i];

    }

    float average = sum/count;
  13. Thread: Database Error?

    by g_gili
    Replies
    2
    Views
    776

    Re: Database Error?

    Well I personaly don't understand what is the error?! "application terminate --> Too Parameters. ... " Can you please more exact and offer more information .... because we don't know what app did you...
  14. Replies
    5
    Views
    1,238

    Re: Forking Processes Help!

    Here are some reference examples :
    FORK
    Exec
    PIPES


    Good luck,
    Gili
  15. Thread: Word Grabber

    by g_gili
    Replies
    3
    Views
    1,031

    Re: Word Grabber

    Here try this simple example :) :


    #include <iostream>
    #include <vector>
    #include <time.h>

    using namespace std;

    int _tmain(int argc, _TCHAR* argv[])
  16. Replies
    1
    Views
    945

    Re: Lib LNK2001 why?

    Can you post the full link error ?
    Or perhaps you move the


    #pragma comment (lib, "lib/sqlite.lib") /* link with Microsoft OpenGL lib */'


    to your header file . :) ( I'm not sure if...
  17. Replies
    1
    Views
    766

    Re: combined console32 app and MFC

    Well it's really hard to say what you could do whithout more information ...perhaps you could modify you consol application and put the important things in a static library ( lib ) or in a dynamic...
  18. Replies
    13
    Views
    1,838

    Re: Displaying a Bitmap

    Hi maverick786us try to use the following code:



    void CGregTestCtrl::OnDraw(CDC* pDC, const CRect& rcBounds, const CRect& rcInvalid)
    {
    pDC->Rectangle (rcBounds);
    CBitmap bmp;
    CClientDC...
  19. Replies
    13
    Views
    1,838

    Re: Displaying a Bitmap

    Hi maverick786us,


    what sample did you used ? In your code? Can you please show your actually code?

    Thanks,
    Gili
  20. Replies
    1
    Views
    1,165

    Re: Fail to SetAt for CMap, Clist class

    Did you tried to create a new Temporary projects and put these lines what you showed us ?
    I tried at my place and works.... ( I'm using Vs 2005 ).
    It's looks fine..... The posted code looks fine...
  21. Replies
    1
    Views
    1,545

    Re: CFtpConnection::PutFile problem under DHCP

    Did you tried to check if the upload succeed? And check the last error whit " GetLastError() " function .

    Regards,
    Gili
  22. Replies
    1
    Views
    924

    Re: Show me the usage of DBGrid in VC++

    Have a look at this article
  23. Re: How to display the unfocussed parent window

    Well not sure didn't tried it ( If I understand correctly what you are trying to do ) .... but the logic should be that you show the parent window and put the focus back on child :) . :D
  24. Replies
    13
    Views
    1,838

    Re: Displaying a Bitmap

    I think this line is wrong.

    pdc->CreateCompatibleDC (pdc);
    //Creates a memory device context that is compatible with the device specified by pDC.
    So you make compatible the pdc to pdc????
    ...
  25. Replies
    10
    Views
    1,361

    Re: Annoying behavior of .net 2003

    Hi , Can you explain more the problem I don't understand clearly the request.

    Thanks.
Results 1 to 25 of 1236
Page 1 of 50 1 2 3 4





Click Here to Expand Forum to Full Width

Featured