Thread: Stupid Question

  1. #1
    Registered User
    Join Date
    Jul 2002
    Posts
    11

    Stupid Question

    Ok, i know this is a really stupid question, but i remember seeing a long time ago a way to creat a prompt box in MSVC++, its similar to a message box but has a text input field, this was so long ago i dont even remember its name, i tried search MSDN for it, and tried searching the forums for it, but havnt found any results, anyone know what im talking about here?

  2. #2
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    Suprise It was just an ordinary window! When the user triggers the event, simply launch a small window with an edit, etc.
    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;
    }

  3. #3
    Registered User
    Join Date
    Jul 2002
    Posts
    11
    I coulda swore it was a prebuilt one in a command like a javascript prompt window.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Stupid Question Probably
    By Kyrin in forum C Programming
    Replies: 2
    Last Post: 05-07-2006, 12:51 AM
  2. Replies: 7
    Last Post: 11-04-2005, 12:17 AM
  3. Stupid Question
    By digdug4life in forum C++ Programming
    Replies: 22
    Last Post: 05-17-2005, 11:43 AM
  4. stupid, stupid question
    By xelitex in forum C++ Programming
    Replies: 5
    Last Post: 12-22-2004, 08:22 PM
  5. Stupid question: What does Debugger do?
    By napkin111 in forum C++ Programming
    Replies: 6
    Last Post: 05-02-2002, 10:00 PM