Click here to Skip to main content
15,914,016 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# Code works under win2000 but not XP Pin
Charlie Williams4-Nov-04 18:16
Charlie Williams4-Nov-04 18:16 
GeneralRe: C# Code works under win2000 but not XP Pin
cdmlb@hotmail.com4-Nov-04 18:21
cdmlb@hotmail.com4-Nov-04 18:21 
GeneralRe: C# Code works under win2000 but not XP Pin
Dave Kreskowiak5-Nov-04 3:13
mveDave Kreskowiak5-Nov-04 3:13 
GeneralQuestion about C# handle Windows Messages Pin
momer4-Nov-04 16:07
momer4-Nov-04 16:07 
GeneralRe: Question about C# handle Windows Messages Pin
Alex Korchemniy5-Nov-04 14:02
Alex Korchemniy5-Nov-04 14:02 
GeneralAbout IE context Pin
Jason Xie4-Nov-04 14:53
Jason Xie4-Nov-04 14:53 
GeneralRe: About IE context Pin
Nick Parker4-Nov-04 15:06
protectorNick Parker4-Nov-04 15:06 
GeneralRe: About IE context Pin
Jason Xie4-Nov-04 15:23
Jason Xie4-Nov-04 15:23 
Thanks.
.net code following:
******************************
using System;
namespace DiscussInterface
{
public class Class1
{
//Form1 is only a simple form.

Form1 f= new Form1();
public Class1()
{
}
public void Show()
{ f.Show();
}
}
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
}
}
********************************
I have a html page following








****************************
I modify the windows register and add key under HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt\
more detail
http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/ext/tutorials/context.asp[^]
*************************************
when I click my custom menu in IE explore context menu, my .net program run and disappear immediately.

me
GeneralRe: About IE context Pin
Nick Parker4-Nov-04 16:25
protectorNick Parker4-Nov-04 16:25 
GeneralRe: About IE context Pin
Jason Xie4-Nov-04 16:32
Jason Xie4-Nov-04 16:32 
GeneralRe: About IE context Pin
Nick Parker4-Nov-04 16:54
protectorNick Parker4-Nov-04 16:54 
GeneralRe: About IE context Pin
Jason Xie4-Nov-04 17:01
Jason Xie4-Nov-04 17:01 
GeneralRe: About IE context Pin
IronSnake5-Nov-04 9:36
IronSnake5-Nov-04 9:36 
GeneralRe: About IE context Pin
Jason Xie5-Nov-04 13:42
Jason Xie5-Nov-04 13:42 
Generalstring methods Pin
John L. DeVito4-Nov-04 14:02
professionalJohn L. DeVito4-Nov-04 14:02 
GeneralRe: string methods Pin
Christian Graus4-Nov-04 14:18
protectorChristian Graus4-Nov-04 14:18 
GeneralRe: string methods Pin
Nick Parker4-Nov-04 15:11
protectorNick Parker4-Nov-04 15:11 
GeneralRe: string methods Pin
Grimolfr5-Nov-04 10:08
Grimolfr5-Nov-04 10:08 
Generalproblem in debugging,when theres DLLs Pin
gijoebijoe4-Nov-04 12:18
gijoebijoe4-Nov-04 12:18 
GeneralRe: problem in debugging,when theres DLLs Pin
sreejith ss nair4-Nov-04 17:16
sreejith ss nair4-Nov-04 17:16 
GeneralRe: problem in debugging,when theres DLLs Pin
turbochimp5-Nov-04 8:50
turbochimp5-Nov-04 8:50 
GeneralGantt & Calendar control Pin
Jordi Corominas4-Nov-04 10:44
Jordi Corominas4-Nov-04 10:44 
GeneralRe: Gantt & Calendar control Pin
sreejith ss nair4-Nov-04 17:21
sreejith ss nair4-Nov-04 17:21 
GeneralRe: Gantt & Calendar control Pin
Jordi Corominas4-Nov-04 21:06
Jordi Corominas4-Nov-04 21:06 
GeneralRe: Gantt & Calendar control Pin
sreejith ss nair4-Nov-04 21:25
sreejith ss nair4-Nov-04 21:25 

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.