Click here to Skip to main content
15,887,338 members
Home / Discussions / C#
   

C#

 
GeneralRe: Need help for my IRC Client Pin
Shock The Dark Mage26-Nov-02 13:12
Shock The Dark Mage26-Nov-02 13:12 
GeneralRe: Need help for my IRC Client Pin
leppie26-Nov-02 13:28
leppie26-Nov-02 13:28 
GeneralRe: Need help for my IRC Client Pin
Shock The Dark Mage27-Nov-02 15:38
Shock The Dark Mage27-Nov-02 15:38 
GeneralRe: Need help for my IRC Client Pin
leppie28-Nov-02 0:09
leppie28-Nov-02 0:09 
GeneralRe: Need help for my IRC Client Pin
Michael Mac27-Nov-02 3:29
Michael Mac27-Nov-02 3:29 
GeneralRe: Need help for my IRC Client Pin
leppie27-Nov-02 6:58
leppie27-Nov-02 6:58 
Generalmouse hover over MenuItem..it's not working... Pin
lnong25-Nov-02 14:31
lnong25-Nov-02 14:31 
GeneralResX Error Pin
Jassim Rahma25-Nov-02 11:26
Jassim Rahma25-Nov-02 11:26 
Why I'm getting this error for main.resx and about.resx:
Resource transformation for file 'main.resx' failed. Invalid ResX input.

Below is the about.cs code:


using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace Change_Management_System
{
///
/// Summary description for frmRequest.
///

public class frmAbout : System.Windows.Forms.Form
{
private System.Windows.Forms.Button btnClose;
///
/// Required designer variable.
///

private System.ComponentModel.Container components = null;

public frmAbout()
{
//
// 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()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmAbout));
this.btnClose = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(328, 264);
this.btnClose.Name = "btnClose";
this.btnClose.TabIndex = 0;
this.btnClose.Text = "OK";
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// frmAbout
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(426, 304);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.btnClose});
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmAbout";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "About..";
this.ResumeLayout(false);

}
#endregion

private void btnClose_Click(object sender, System.EventArgs e)
{
this.Close();
}
}
}


Jassim Rahma
GeneralRe: ResX Error Pin
Matze26-Nov-02 0:24
Matze26-Nov-02 0:24 
GeneralCustomized Form Designer Pin
Jassim Rahma24-Nov-02 23:13
Jassim Rahma24-Nov-02 23:13 
GeneralWindows About Box Pin
Jassim Rahma24-Nov-02 23:11
Jassim Rahma24-Nov-02 23:11 
GeneralCheck mdb Password Pin
Jassim Rahma24-Nov-02 23:10
Jassim Rahma24-Nov-02 23:10 
GeneralAudio/Video Library Pin
Jassim Rahma24-Nov-02 23:04
Jassim Rahma24-Nov-02 23:04 
GeneralRe: Audio/Video Library Pin
leppie25-Nov-02 7:21
leppie25-Nov-02 7:21 
GeneralRe: Audio/Video Library Pin
Jassim Rahma25-Nov-02 7:27
Jassim Rahma25-Nov-02 7:27 
GeneralRe: Audio/Video Library Pin
Christian Graus25-Nov-02 12:07
protectorChristian Graus25-Nov-02 12:07 
Questionwhen can we run our C# program in Mac or Linux? Pin
KeithPRC24-Nov-02 16:56
KeithPRC24-Nov-02 16:56 
AnswerRe: when can we run our C# program in Mac or Linux? Pin
Not Active24-Nov-02 17:40
mentorNot Active24-Nov-02 17:40 
GeneralRe: when can we run our C# program in Mac or Linux? Pin
KeithPRC24-Nov-02 18:12
KeithPRC24-Nov-02 18:12 
GeneralRe: when can we run our C# program in Mac or Linux? Pin
SimonS24-Nov-02 20:32
SimonS24-Nov-02 20:32 
AnswerRe: when can we run our C# program in Mac or Linux? Pin
Michael P Butler24-Nov-02 23:15
Michael P Butler24-Nov-02 23:15 
GeneralRe: when can we run our C# program in Mac or Linux? Pin
leppie25-Nov-02 22:43
leppie25-Nov-02 22:43 
AnswerRe: when can we run our C# program in Mac or Linux? Pin
LongRange.Shooter26-Nov-02 8:20
LongRange.Shooter26-Nov-02 8:20 
GeneralCreating a new NetworkStream class Pin
winsurfin24-Nov-02 15:00
winsurfin24-Nov-02 15:00 
GeneralRe: Creating a new NetworkStream class Pin
John Fisher25-Nov-02 10:23
John Fisher25-Nov-02 10:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.