Thursday, May 01, 2008 - Posts
Base de datos de la demo de Eventos con .NET Remoting. Por favor me envian un correo a jfrancia@3devnet.com para enviarles la BD.
Joel
Read More
Proyecto Cliente
Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
Read More
Proyecto ServerP
ServerP.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.Remoting;
namespace ServerP
{
class Program
{
static void Main(string[] args)
{
RemotingConfiguration.Configure("ServerP.exe.config",
Read More
Hola, nuevamente regresando al blog, aqui invito a compartir una demo sobre como implementar eventos con .NET Remoting, lo hare en dos envios, y luego pasare a comentar el codigo.
Proyecto CommonAssembly
IOrder.cs
using System;
using System.Collections.Generic;
Read More