Here is the message. What\'s wrong with it? Is it a installtion problem?
Cannot show requested dialog.
Are you trying to attach the mdf using SQL Authentication, or Windows Authentication? If using SQL Auth, you might try Windows Auth instead.
You might also want to check out this MSDN forum post, or this post which suggests using the single file version of database attach:
USE master;
GO
EXEC sp_attach_single_file_db @dbname = 'AdventureWorks', @physname = N'f:\dataAdventureWorks_Data.mdf';
Edit: When running this script, you gotta be logged in as a user with at least dbcreator rights. You may also try CREATE DATABASE FOR ATTACH as shown at this blog post