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

Search:

Type: Posts; User: Vanaj

Page 1 of 5 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    3
    Views
    407

    Re: Sending email using C++

    Or you could use these lib's and forget about all the strange stuff...

    http://www.marshallsoft.com/

    Select SMTP/POP3/IMAP Email component.
  2. Re: Is there a straightforward way to use Windows Sockets to send email?

    30925

    Good samples will get you up and running in less time than a cup of coffee..
  3. Re: Is there a straightforward way to use Windows Sockets to send email?

    Check out the SMTP/POP3/IMAP email component from
    http://www.marshallsoft.com/

    I have used this for years...easy to use and very reliable.
  4. Replies
    5
    Views
    487

    Re: crashing on fstream open file

    String^ poo = textBox1->Text;
    progressBar1->Maximum = File_Quant(poo);
    pile.open(ConvertString(poo),ifstream::in);

    What is the value of "poo" prior to "pile.open" ?
  5. Replies
    6
    Views
    530

    Re: Please Guide me abt Thread concept

    Link works for me...

    Try clearing your browser cache...
  6. Re: How to enumerate font styles for a given font

    CFontDialog
  7. Re: Connect between Visual C++ 2008 and SQL Server 2005

    For the proper connection strings check here...

    http://www.connectionstrings.com
  8. Replies
    4
    Views
    340

    Re: Redeclaration and definition problems

    Do you see a difference between the function prototype and the function itself ?
    This is what the compiler is complaining about...




    void doOutput(char Vehicle[3][20],double mpg[3], double...
  9. Re: CRichEditCtrl::FormatRange result differ in VC++ 6.0 and 2010

    Using LOGPIXELSX to calc gs_LastRTFHeight might be a downfall ??

    Try LOGPIXELSY



    gs_LastRTFHeight = ::MulDiv(dcTarget.GetDeviceCaps(LOGPIXELSX), FRange.rc.bottom, 1440);
  10. Replies
    43
    Views
    3,215

    Re: [RESOLVED] Help with math algorithm

    actually you all are assuming variables not known...so I will do the same

    if the water is 5 miles up stream then you can walk directly to the riverbank...else go directly to the riverbank as the...
  11. Replies
    6
    Views
    680

    Re: I need help please.

    Actually read the textbook and listened to lectures and did some research....
  12. Replies
    6
    Views
    680

    Re: I need help please.

    Post what code you have done so far...we help you with your code...we don't do your homework for you.
  13. Replies
    43
    Views
    3,215

    Re: Help with math algorithm

    They were probably more interested in how you would logically approach the problem than an answer to the problem...

    You would need to know 3 variables first....
    distance to the water...
    distance...
  14. Replies
    43
    Views
    3,215

    Re: Help with math algorithm

    Since the water moves 8 times faster that you can run, running in the same direction as the water, even a small angle, would be wasting time.
  15. Replies
    43
    Views
    3,215

    Re: Help with math algorithm

    Here is a hint...

    The shortest distance between 2 points is a straight line...
  16. Re: error C2143: syntax error : missing ';' before '*'

    Yes there is....post the offending line of code....and several before and after so we can help you fix your problem...
  17. Re: GDI Problem - BitBlt() Doesn't Seem To Be Doing Anything

    Are you sure ???? as bRedrawActiveArea is not defined, initialized nor modified...should this actually be m_bRedrawActiveArea ??


    else if (bRedrawActiveArea)
    {
    ...
  18. Replies
    2
    Views
    206

    Re: about sending mail

    Unable to help you fix code/get you going in correct way without seeing the offending/not-working code...
  19. Thread: C++ ADO sql

    by Vanaj
    Replies
    3
    Views
    396

    Re: C++ ADO sql

    Glad it helped...good luck with the project....:wave:
  20. Thread: C++ ADO sql

    by Vanaj
    Replies
    3
    Views
    396

    Re: C++ ADO sql

    Not exactly the same but you can get the idea from here...."ChangeDateTime" is defined as a "datetime" in SQL Server...


    memset(szTemp, (char)NULL, sizeof(szTemp));...
  21. Replies
    12
    Views
    3,792

    Re: Xcopy between two servers

    I do use xcopy within a .bat file sucessfully...

    EDIT:
    OR you can do as Igor suggest in the next post...

    BUT

    also agree with VictorN...I find SHFileOperation easier to use within C++ than a...
  22. Replies
    1
    Views
    1,148

    Re: Read GPS EXIF data from image

    http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/GPS.html

    http://www.codeproject.com/Articles/47486/Understanding-and-Reading-Exif-Data
  23. Replies
    6
    Views
    859

    Re: How to delete data using ADO ?

    Have you tried


    if(pRecSet->Supports(adDelete))
    {
    ...Ok to delete record...
    }
  24. Re: MFC help for building GUI in microsoft visual studio 2008

    Mike is very good about including samples into his software...look in the "X:\mgc4c\APPS" for sample programs...I'd start with looking into "MFC_PGM.CPP"
  25. Re: Wrong return from GetFieldValue() with decimal field

    Glad to help...sometimes you need to force values to what you need and not use the default and assume it will be correct...


    void GetFieldValue( LPCTSTR lpszName, CDBVariant& varValue, short...
Results 1 to 25 of 119
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width