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

Search:

Type: Posts; User: Vanaj

Page 1 of 77 1 2 3 4

Search: Search took 0.21 seconds; generated 15 minute(s) ago.

  1. Thread: MySQL Database

    by Vanaj
    Replies
    5
    Views
    2,434

    Re: MySQL Database

    Not to mention the fact there is a forum on Code Guru called "Database" listed under "Other Programming", or Oracle documentation like it was suggested by Igor.
  2. Replies
    13
    Views
    2,790

    Re: About Setting Print Options ..

    Glad to help, their support is also great and quick also if needed.
  3. Replies
    13
    Views
    2,790

    Re: About Setting Print Options ..

    I use Win2PDF and it allows me to set a file name/location/quality before I print to Win2PDF, no dialogs pop up and nothing to output before saving as a PDF file...

    I have been using this print...
  4. Replies
    2
    Views
    3,669

    Re: Confusion with #import and msado

    this works in VS2010 on SQL Server 2005, 2008


    #import "C:/YourProgDir/msado60_Backcompat_i386.tlb" no_namespace rename( "EOF", "adoEOF" )
  5. Replies
    8
    Views
    2,061

    Re: Turbo C equivalent command in Visual C

    Isn't this pretty much the same answer you got in this thread ??

    Please don't double post problems...

    And if you google srand(int) you will find 730,000 results and probably all with examples....
  6. Replies
    5
    Views
    1,739

    Re: randomize ( )

    You asked for a randomize function for VC++ 6.0...the link Victor gave you is for that exact function, it is called srand(), and NOT randomize(), there is no such function for VC++ 6.0...his link...
  7. Replies
    5
    Views
    6,215

    Re: printing 2 arrays with 10 numbers per line

    Just divide the sizeof the total array by one item in the array.




    int iNumItems = 0;
    int array1[40];

    iNumItems = (sizeof(array1)/sizeof(array1[0]));
  8. Re: detect & find rotation angle if the skeleton tracked has turned 180 degre to kin

    Sounds like the answer to detect movement might just be in the Kinect SDK documentation and not Visual Studio (Any Version).


    Good place to start...
    ...
  9. Replies
    3
    Views
    5,910

    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.
  10. 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..
  11. 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.
  12. Replies
    5
    Views
    5,227

    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" ?
  13. Replies
    6
    Views
    2,085

    Re: Please Guide me abt Thread concept

    Link works for me...

    Try clearing your browser cache...
  14. Replies
    2
    Views
    1,529

    Re: How to enumerate font styles for a given font

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

    For the proper connection strings check here...

    http://www.connectionstrings.com
  16. Replies
    4
    Views
    1,732

    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...
  17. 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);
  18. Replies
    43
    Views
    11,328

    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...
  19. Replies
    6
    Views
    2,601

    Re: I need help please.

    Actually read the textbook and listened to lectures and did some research....
  20. Replies
    6
    Views
    2,601

    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.
  21. Replies
    43
    Views
    11,328

    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...
  22. Replies
    43
    Views
    11,328

    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.
  23. Replies
    43
    Views
    11,328

    Re: Help with math algorithm

    Here is a hint...

    The shortest distance between 2 points is a straight line...
  24. 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...
  25. 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)
    {
    ...
Results 1 to 25 of 1908
Page 1 of 77 1 2 3 4





Click Here to Expand Forum to Full Width

Featured