Ejemplo n.º 1
0
 private void StartClicked(object sender, EventArgs args)
 {
     Frontend.Client.Windows.Session session = Dataphoria.GetLiveDesignableFrontendSession();
     try
     {
         session.SetLibrary(LibraryName);
         session.StartCallback(GetDocumentExpression(), null);
     }
     catch
     {
         session.Dispose();
         throw;
     }
 }
Ejemplo n.º 2
0
		protected void BrowseClicked(object sender, EventArgs args)
		{
			Frontend.Client.Windows.Session session = Dataphoria.GetLiveDesignableFrontendSession();
			try
			{
				session.SetFormDesigner();
				session.StartCallback(String.Format(".Frontend.Derive('{0}', 'Browse')", ObjectName), null);
			}
			catch
			{
				session.Dispose();
				throw;
			}
		}
Ejemplo n.º 3
0
 private void StartClicked(object sender, EventArgs args)
 {
     Frontend.Client.Windows.Session session = Dataphoria.GetLiveDesignableFrontendSession();
     try
     {
         session.StartCallback(session.SetApplication(_iD), null);
     }
     catch
     {
         session.Dispose();
         throw;
     }
     Dataphoria.RefreshLibraries();
 }