BinaryWorks.it Official Forum
BinaryWorks.it Official Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password? | Admin Options

 All Forums
 eXtreme Movie Manager (Rel. 7), No More Updates
 Bug Report
 IE problem also under vista
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic

harald
Starting Member

6 Posts

Posted - 13 Dec 2007 :  12:03:47  Show Profile  Edit Topic  Reply with Quote  View user's IP address  Delete Topic
hi,

i reported this bug before when i saw it under xp.

this morning i installed xmm under vista.

here's what i did:

1. my vista laptop is 3 weeks old, with a fresh installation of vista.
default browser is firefox.
2. i installed xmm 6.0.8.0 (deluxe edition) and authenticated it.
3. i did not change any options. xmm came up with the sample database.
4. i left-click on the "web link" in a movie card and the imdb link comes up within xmm, using IE control (i can tell cause all the ads come up - i have adblock on firefox)
5. if i right-click on the web-link and select "open in new window", it opens IE to show the imdb page.
6. if i click on the IE icon (caption "open movie card in IE"), the moviecard opens in firefox and not in IE.

since i am seeing the exact same behavior on my xp machine, i think we can rule out the os. maybe it has to do with the fact that i did a clean and full install of xmm. mawu reported that he didn't see that behavior on his xp machine, but if he is a long-time user of xmm he probably did an update. obviously, i am just guessing here, trying to provide you with clues, alessio.

i hope you will find some time to look at this issue. i really like xmm and i would like to use it. but i am using firefox for a reason and i just want to left-click on the web-link and the site should come up in firefox. i am sure you understand.

cheers,
harald

Alessio Viti
Forum Admin

Italy
9171 Posts

Posted - 29 Jan 2008 :  17:24:02  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
Hi Harald,

The problem is that the moviecard you see inside XMM is based on IE, this is why if you click on a link in the moviecard the IE will be opened instead of firefox.

I am sorry, but at this time I cannot do nothing for this.

Alessio
Go to Top of Page

harald
Starting Member

6 Posts

Posted - 04 Jun 2008 :  10:47:44  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
quote:
[i]Originally posted by Alessio Viti[/i]
[br]Hi Harald,

The problem is that the moviecard you see inside XMM is based on IE, this is why if you click on a link in the moviecard the IE will be opened instead of firefox.

I am sorry, but at this time I cannot do nothing for this.

Alessio



being a software developer myself i investigated this matter further and there is actually a very quick fix for this, which requires less than 10 lines of code.

here's how you can fix this (in C#):

i assume you simply have a webbrowser control on your windows form. in this example it is called "webBrowser1"
basically, all you need to do is capture the "Navigating" event of that control, like this:

webBrowser1.Navigating += new WebBrowserNavigatingEventHandler(webBrowser1_Navigating);

that event handler can look something like this:

private void webBrowser1_Navigating( object sender, WebBrowserNavigatingEventArgs e )
{
string url = e.Url.ToString();
HtmlDocument doc = this.webBrowser1.Document;
if( doc.ActiveElement.InnerHtml.Contains("WEBLINK") )
{
e.Cancel = true;
Process.Start(url);
}
}

with Process.Start(url) the os will invoke the default browser with the url of the external site.
bingo. that's all it takes. works under xp and vista. i tested it on both.

i hope you will be able to fix that. for me that is a show-stopper and i am actually thinking of developing (and selling) my own movie database. but i rather not, since xmm is a good program.

cheers,
harald
Go to Top of Page
  Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
BinaryWorks.it Official Forum © Binaryworks.it Go To Top Of Page
Generated in 0.11 sec. Powered By: Snitz Forums 2000 Version 3.4.07