Thread: Windows Internet Connection...

  1. #1
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708

    Windows Internet Connection...

    Hello all! I have a question regarding establishing a dialup connnection on a Windows machine. I have program which gives continuous stock information on any given NYSE listed company. The problem is, I want the user to allow the program to automatically establish the connection to their ISP via my program. When I searched my hard drive for the executable that initiates this process, all I could find was a weird .htt file that is written in Javascript! No trace of the actual EXE. If I had the EXE I could spawn it off, but currently I have no clue where it is. Any ideas?
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

  2. #2
    Registered User
    Join Date
    Jun 2002
    Posts
    69
    WOW i was having the same problem but if you re-compiled your program I think it automatically deletes it if you have errors...

    not sure dough

  3. #3
    It doesn't delete it just because you have errors. It deletes it b4 it starts compiling.

  4. #4
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    -?
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

  5. #5
    Just because ygfperson's Avatar
    Join Date
    Jan 2002
    Posts
    2,490
    not sure. that kind of thing varies greatly from computer to computer. you're better off letting windows or the user handle that for you.

  6. #6
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    You are probably right, and that was my original thought. However, every little bit of automation helps! See, my plan is to prompt the user for the name, password, and number to dial upon program installation. I will then search the drive for appropriate list of valid .exe's. After setup, the user will be able to see an update without having to click anything else...

    Thank you for the dash of realism, though!
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Just starting Windows Programming, School me!
    By Shamino in forum Windows Programming
    Replies: 17
    Last Post: 02-22-2008, 08:14 AM
  2. how to make a windows application
    By crvenkapa in forum C++ Programming
    Replies: 3
    Last Post: 03-26-2007, 09:59 AM
  3. dual boot Win XP, win 2000
    By Micko in forum Tech Board
    Replies: 6
    Last Post: 05-30-2005, 02:55 PM
  4. Newb Alert! ----> BOOGIEMAN
    By BOOGIEMAN in forum C++ Programming
    Replies: 7
    Last Post: 10-10-2003, 02:25 PM
  5. Detecting (internet) connection status
    By Coder in forum Windows Programming
    Replies: 9
    Last Post: 03-16-2002, 05:14 AM