Click here to Skip to main content
15,902,854 members
Home / Discussions / C#
   

C#

 
Questionplacing the cursor Pin
sarojkumarjena30-Jul-06 23:09
sarojkumarjena30-Jul-06 23:09 
AnswerRe: placing the cursor Pin
stancrm30-Jul-06 23:29
stancrm30-Jul-06 23:29 
AnswerRe: placing the cursor Pin
LongRange.Shooter31-Jul-06 5:29
LongRange.Shooter31-Jul-06 5:29 
QuestionHow to disable "Ctrl+A, Ctrl+C" buttons on WebBrowser? Pin
COBECTb30-Jul-06 22:40
COBECTb30-Jul-06 22:40 
AnswerRe: How to disable "Ctrl+A, Ctrl+C" buttons on WebBrowser? Pin
Vipin Venugopal30-Jul-06 23:11
Vipin Venugopal30-Jul-06 23:11 
GeneralRe: How to disable "Ctrl+A, Ctrl+C" buttons on WebBrowser? Pin
COBECTb30-Jul-06 23:38
COBECTb30-Jul-06 23:38 
GeneralRe: How to disable "Ctrl+A, Ctrl+C" buttons on WebBrowser? Pin
Vipin Venugopal31-Jul-06 0:03
Vipin Venugopal31-Jul-06 0:03 
GeneralRe: How to disable "Ctrl+A, Ctrl+C" buttons on WebBrowser? Pin
COBECTb31-Jul-06 3:33
COBECTb31-Jul-06 3:33 
Sorry but my WebBrowser was created in Windows Application, VS 2003, FW 1.1, here sample:

private AxSHDocVw.AxWebBrowser axWebBrowser1;

private void Form1_Load(object sender, System.EventArgs e)
{
object oURL = "www.codeproject.com";
object oEmpty = "";
axWebBrowser1.Navigate2(ref oURL, ref oEmpty, ref oEmpty, ref oEmpty, ref oEmpty);
}

//Event which open links in new windows\
private void axWebBrowser1_NewWindow2(object sender, AxSHDocVw.DWebBrowserEvents2_NewWindow2Event e)
{
if (this.axWebBrowser1.ReadyState != SHDocVw.tagREADYSTATE.READYSTATE_COMPLETE)
{
e.ppDisp = null;
e.cancel = true;
return;
}
FEX f1 = new FEX();
f1.Text = "(New window)";
e.ppDisp = f1.axWebBrowser1.Application;
f1.Show();
}

And how I can use Your sample? Sorry but I don't know....Frown | :(

GeneralRe: How to disable "Ctrl+A, Ctrl+C" buttons on WebBrowser? Pin
Vipin Venugopal31-Jul-06 20:29
Vipin Venugopal31-Jul-06 20:29 
GeneralRe: How to disable "Ctrl+A, Ctrl+C" buttons on WebBrowser? Pin
COBECTb3-Aug-06 5:54
COBECTb3-Aug-06 5:54 
QuestionSimple question... Pin
SoftcodeSoftware30-Jul-06 22:02
SoftcodeSoftware30-Jul-06 22:02 
AnswerRe: Simple question... [modified] Pin
coolestCoder30-Jul-06 22:06
coolestCoder30-Jul-06 22:06 
GeneralRe: Simple question... Pin
SoftcodeSoftware30-Jul-06 22:09
SoftcodeSoftware30-Jul-06 22:09 
GeneralRe: Simple question... Pin
S. Senthil Kumar30-Jul-06 23:11
S. Senthil Kumar30-Jul-06 23:11 
GeneralRe: Simple question... Pin
Guffa30-Jul-06 23:39
Guffa30-Jul-06 23:39 
QuestionOOP Book Pin
fmardani30-Jul-06 21:58
fmardani30-Jul-06 21:58 
AnswerRe: OOP Book Pin
Saqib Mehmood30-Jul-06 23:28
Saqib Mehmood30-Jul-06 23:28 
AnswerRe: OOP Book Pin
moon_stick31-Jul-06 2:30
moon_stick31-Jul-06 2:30 
AnswerRe: OOP Book Pin
L Viljoen1-Aug-06 2:14
professionalL Viljoen1-Aug-06 2:14 
QuestionFileSystemWatcher Problem ! Pin
coolestCoder30-Jul-06 21:40
coolestCoder30-Jul-06 21:40 
AnswerRe: FileSystemWatcher Problem ! Pin
LongRange.Shooter31-Jul-06 5:35
LongRange.Shooter31-Jul-06 5:35 
GeneralRe: FileSystemWatcher Problem ! [modified] Pin
coolestCoder31-Jul-06 20:49
coolestCoder31-Jul-06 20:49 
QuestionHow do I write large uint to a registry dword value? Pin
Mike Poz30-Jul-06 21:24
Mike Poz30-Jul-06 21:24 
AnswerRe: How do I write large uint to a registry dword value? Pin
Guffa31-Jul-06 0:36
Guffa31-Jul-06 0:36 
GeneralRe: How do I write large uint to a registry dword value? Pin
Mike Poz31-Jul-06 15:40
Mike Poz31-Jul-06 15:40 

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.