Talk:3DSExplorer: Difference between revisions
No edit summary |
Matyapiro31 (talk | contribs) No edit summary |
||
Line 14: | Line 14: | ||
::I tried to compile it,but That was old one,and there is "System.development." | ::I tried to compile it,but That was old one,and there is "System.development." | ||
:::[http://stackoverflow.com/questions/5865060/c-on-os-x-and-linux This] says that I need to fix stuff after I convert my project. and then work with the mono app which I don't find very convinient... and about the reference I don't know what it's about..I don't know a namespace called System.Development --[[User:Elisherer|Elisherer]] 17:42, 2 October 2011 (CEST) (P.s you can sign your messages with the quick signature button or 4 tildes: '~' 4 times) | :::[http://stackoverflow.com/questions/5865060/c-on-os-x-and-linux This] says that I need to fix stuff after I convert my project. and then work with the mono app which I don't find very convinient... and about the reference I don't know what it's about..I don't know a namespace called System.Development --[[User:Elisherer|Elisherer]] 17:42, 2 October 2011 (CEST) (P.s you can sign your messages with the quick signature button or 4 tildes: '~' 4 times) | ||
lblBrew_Click() had no exception handler, | |||
you have to change this method in fmExplorer.cs to | |||
private void lblBrew_Click(object sender, EventArgs e) | |||
{ | |||
try | |||
{ | |||
System.Diagnostics.Process.Start(lblBrew.Text); | |||
} | |||
catch (Exception ex) | |||
{ | |||
MessageBox.Show("Cannot open link that was clicled.\n"+ ex.Message); | |||
} | |||
} | |||
Matyapiro31 |