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

Search:

Type: Posts; User: LabariaSoft

Search: Search took 0.02 seconds.

  1. Replies
    10
    Views
    56,079

    Re: Getting the individual digits of a number?

    Thanks everyone, for the reply! :)
  2. Replies
    10
    Views
    56,079

    Getting the individual digits of a number?

    I'm having trouble getting the individual digits of a number.

    For example:
    say you have simple integer variable containing 1234. How do you get the individual digits of the number, like 1, 2,...
  3. Replies
    4
    Views
    988

    Re: Error with Process::Start

    Oh OK, thats what I was missing, I should have research this further. :o

    Thanks for your help! :)
  4. Replies
    4
    Views
    988

    Re: Error with Process::Start

    Thanks for your reply cilu.



    Im sure the file exists. I created it myself as a test program that simply displays a message box. Its actual path is simply "c:\myapp01.EXE However, the code...
  5. Replies
    4
    Views
    988

    Error with Process::Start

    Having trouble getting this block of code to work:


    Process^ theProc = gcnew Process;
    String^ pathToExe = IO::Path::GetFullPath("myapp01.EXE");
    theProc->StartInfo->FileName = pathToExe;...
  6. Re: Compilation error C2440 and error C2664 have no idea why...

    It compiles now, thanks! :)
  7. Compilation error C2440 and error C2664 have no idea why...

    Im getting the following errors when trying to compile:


    Code:


    void SvrListen()
    {
    try
    {
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured