in reply to Gtk2::MessageDialog Getting Error while using "set_markup()" Method
Ahh Jeezz, sorry guys I think I figured it out..
I think it was because I was destroying the Dialog, so when it tried to run the second time it couldn't
because it was already destroyed...
So if I change the line that removes the dialog and change it to hide then it doesn't exit with an error anymore!
        FROM THIS --> $msg_dialog->destroy();
        TO THIS --> $msg_dialog->hide();
If I change it to the above I don't get the error anymore...
I'll post back if I jumped the gun on it being solved, but otherwise thanks anayway...
Thanks Again,
Matt