hello world!
diff --git a/MP-Tablet/WebUserControls/mod_turni.ascx.cs b/MP-Tablet/WebUserControls/mod_turni.ascx.cs
index dd040fe8..f4762e7a 100644
--- a/MP-Tablet/WebUserControls/mod_turni.ascx.cs
+++ b/MP-Tablet/WebUserControls/mod_turni.ascx.cs
@@ -6,6 +6,10 @@ namespace MoonProTablet.WebUserControls
{
public partial class mod_turni : System.Web.UI.UserControl
{
+ ///
+ /// registrato nuovo valore
+ ///
+ public event EventHandler eh_updated;
///
/// idx macchina selezionata
///
@@ -54,6 +58,11 @@ namespace MoonProTablet.WebUserControls
{
DataLayer.obj.taTurniMacc.stp_turniMacchineUpdateTurno(idxMacchina.ToString(), turno);
setupTurni();
+ // sollevo evento!
+ if (eh_updated != null)
+ {
+ eh_updated(this, new EventArgs());
+ }
}
protected void chkT1_CheckedChanged(object sender, EventArgs e)
diff --git a/MP/MP.csproj.user b/MP/MP.csproj.user
index 5c7d4aac..2695a840 100644
--- a/MP/MP.csproj.user
+++ b/MP/MP.csproj.user
@@ -10,30 +10,7 @@
+
Debug|Any CPU
-
-
-
-
-
-
- CurrentPage
- True
- False
- False
- False
-
-
-
-
-
-
-
-
- True
- True
-
-
-
-
+
\ No newline at end of file