Debido a mi actual trabajo, ya no voy a seguir desarrollando con el facturaplus, por lo que si veo que hay gente interesada, esta hecho en visual c# y la verdad funciona estupendamente aqui, y como es un programa bastante estandar (la base de datos es rígida), a mucha gente le puede ser interesante. De hecho la última version que hice permite recoger datos de diferentes años (carpetas) a la vez para ver asi los pendientes en diferentes años y se obtienen mucha mas informacion de manera rápida albaranes y sus facturas, viceversa, el estado de los mismos, cuantos dias se pasa de la fecha de pago.... Si estas interesado, elige una opcion:
Showing posts with label C#. Show all posts
Showing posts with label C#. Show all posts
02 May 2008
29 May 2007
Hello World Orcas
Welcome everyone, today I decided to install Orcas in my job computer (xp) and this afternoon in my own computer(vista). Well with xp any matter I installed Visual c# express Orcas and compiled without problem. But this afternoon with Vista, ouch.
If you have any problem post me a comment, to tell you how to solve it. And now... Hello World Orcas:
1.- Create a new WPF application

1.1- Go to Project : HelloWorld properties and change the next:

2.- Add a button on the window

3.- Let's create the event (I supposed they will put a design mode early), to do that, go to the window.xaml.cs (yeah we will have to get customed):

4.- And now add the following code:
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
button1.Click += new RoutedEventHandler(button1_Click);
}
void button1_Click(object sender, RoutedEventArgs e)
{
MessageBox.Show("Hello World");
}
}
Run and you will have your first VISTA WPF .net 3.5 C# first app, Congratulations :)
If you have any problem post me a comment, to tell you how to solve it. And now... Hello World Orcas:
1.- Create a new WPF application

1.1- Go to Project : HelloWorld properties and change the next:

2.- Add a button on the window

3.- Let's create the event (I supposed they will put a design mode early), to do that, go to the window.xaml.cs (yeah we will have to get customed):

4.- And now add the following code:
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
button1.Click += new RoutedEventHandler(button1_Click);
}
void button1_Click(object sender, RoutedEventArgs e)
{
MessageBox.Show("Hello World");
}
}
Run and you will have your first VISTA WPF .net 3.5 C# first app, Congratulations :)
Subscribe to:
Posts (Atom)