how to send value in port(tcp/ip)
-
plz send me code in c#.net using windows application
-
plz send me code in c#.net using windows application
sivaramireddy p wrote:
plz send me code in c#.net using windows application
This was the best I could come up with given the vagueness of your request.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;namespace WindowsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}
Upcoming FREE developer events: * Developer! Developer! Developer! 6 * Developer Day Scotland My website
-
plz send me code in c#.net using windows application
-
plz send me code in c#.net using windows application
Try and use google (www.google.com) and the topic you might be after is called remoting. so try this http://www.google.co.uk/search?hl=en&q=c%23+2.0+remoting&meta=[^]
Grady Booch: I told Google to their face...what you need is some serious adult supervision. (2007 Turing lecture) http://www.frankkerrigan.com/[^]
-
sivaramireddy p wrote:
plz send me code in c#.net using windows application
This was the best I could come up with given the vagueness of your request.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;namespace WindowsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}
Upcoming FREE developer events: * Developer! Developer! Developer! 6 * Developer Day Scotland My website
Sorry Colin thats doesn't compile in visual studio 2003 can you provide something even more vague.
Grady Booch: I told Google to their face...what you need is some serious adult supervision. (2007 Turing lecture) http://www.frankkerrigan.com/[^]
-
Sorry Colin thats doesn't compile in visual studio 2003 can you provide something even more vague.
Grady Booch: I told Google to their face...what you need is some serious adult supervision. (2007 Turing lecture) http://www.frankkerrigan.com/[^]
Frank Kerrigan wrote:
Sorry Colin thats doesn't compile in visual studio 2003
Sorry, I didn't realise you wanted something a bit more retro. Try this:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;namespace WindowsApplication3
{
/// /// Summary description for Form1.
///
public class Form1 : System.Windows.Forms.Form
{
/// /// Required designer variable.
///
private System.ComponentModel.Container components = null;public Form1() { // // Required for Windows Form Designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // } /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if (components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.Size = new System.Drawing.Size(300,300); this.Text = "Form1"; } #endregion /// /// The main entry point for the application. /// \[STAThread\] static void Main() { Application.Run(new Form1()); } }
}
Upcoming FREE developer events: * Developer! Developer! Developer! 6 * Developer Day Scotland My website
-
Frank Kerrigan wrote:
Sorry Colin thats doesn't compile in visual studio 2003
Sorry, I didn't realise you wanted something a bit more retro. Try this:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;namespace WindowsApplication3
{
/// /// Summary description for Form1.
///
public class Form1 : System.Windows.Forms.Form
{
/// /// Required designer variable.
///
private System.ComponentModel.Container components = null;public Form1() { // // Required for Windows Form Designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // } /// /// Clean up any resources being used. /// protected override void Dispose( bool disposing ) { if( disposing ) { if (components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.Size = new System.Drawing.Size(300,300); this.Text = "Form1"; } #endregion /// /// The main entry point for the application. /// \[STAThread\] static void Main() { Application.Run(new Form1()); } }
}
Upcoming FREE developer events: * Developer! Developer! Developer! 6 * Developer Day Scotland My website
oh cheers :D it doesn't really do much does it !
Grady Booch: I told Google to their face...what you need is some serious adult supervision. (2007 Turing lecture) http://www.frankkerrigan.com/[^]