Thread: Custom URI schemes

  1. #1
    Make Fortran great again
    Join Date
    Sep 2009
    Posts
    1,413

    Custom URI schemes

    Is it possible to create a custom URI scheme (like AOL instant messenger's aim://) using .NET? If so, does anyone have any good links pointing in the right direction? I tried googling a few different things and all I came up with is how to do it using Java. Thanks in advance.

  2. #2
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    Quote Originally Posted by Epy View Post
    Is it possible to create a custom URI scheme (like AOL instant messenger's aim://) using .NET? If so, does anyone have any good links pointing in the right direction? I tried googling a few different things and all I came up with is how to do it using Java. Thanks in advance.
    See here.
    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
    Make Fortran great again
    Join Date
    Sep 2009
    Posts
    1,413
    You rule. Thanks so much. Wonder why I didn't see that...

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 2
    Last Post: 01-08-2008, 04:34 PM
  2. Custom Allocation
    By SevenThunders in forum C Programming
    Replies: 17
    Last Post: 04-09-2007, 04:10 PM
  3. Stl sets and custom classes.
    By cunnus88 in forum C++ Programming
    Replies: 3
    Last Post: 05-12-2006, 11:58 PM
  4. Requesting Affirmation [pointer 2 custom class]
    By Deo in forum C++ Programming
    Replies: 5
    Last Post: 06-09-2005, 12:02 PM
  5. Clipboard and Custom Types
    By McClamm in forum C# Programming
    Replies: 1
    Last Post: 09-16-2004, 04:43 PM