Click here to Skip to main content
15,904,497 members
Home / Discussions / C#
   

C#

 
GeneralRe: Adding checkboxes in listbox in C# Pin
yogesh_softworld12320-Aug-09 22:51
yogesh_softworld12320-Aug-09 22:51 
QuestionDynamic Actions based on dynamic command list Pin
Programm3r20-Aug-09 22:21
Programm3r20-Aug-09 22:21 
AnswerRe: Dynamic Actions based on dynamic command list Pin
Eddy Vluggen20-Aug-09 23:14
professionalEddy Vluggen20-Aug-09 23:14 
GeneralRe: Dynamic Actions based on dynamic command list Pin
Programm3r20-Aug-09 23:23
Programm3r20-Aug-09 23:23 
QuestionHow to monitor http downloads and uploads? Pin
Meysam Mahfouzi20-Aug-09 22:08
Meysam Mahfouzi20-Aug-09 22:08 
AnswerRe: How to monitor http downloads and uploads? Pin
Tamer Oz20-Aug-09 22:54
Tamer Oz20-Aug-09 22:54 
AnswerRe: How to monitor http downloads and uploads? Pin
Jacobb Michael21-Aug-09 1:20
Jacobb Michael21-Aug-09 1:20 
Questionhow to call function timer on button click Pin
dimo198220-Aug-09 22:04
dimo198220-Aug-09 22:04 
AnswerRe: how to call function timer on button click Pin
Meysam Mahfouzi20-Aug-09 22:14
Meysam Mahfouzi20-Aug-09 22:14 
GeneralRe: how to call function timer on button click Pin
dimo198220-Aug-09 22:20
dimo198220-Aug-09 22:20 
GeneralRe: how to call function timer on button click Pin
musefan20-Aug-09 22:25
musefan20-Aug-09 22:25 
GeneralRe: how to call function timer on button click Pin
nhqlbaislwfiikqraqnm21-Aug-09 4:02
nhqlbaislwfiikqraqnm21-Aug-09 4:02 
GeneralRe: how to call function timer on button click Pin
musefan21-Aug-09 5:57
musefan21-Aug-09 5:57 
GeneralRe: how to call function timer on button click Pin
nhqlbaislwfiikqraqnm21-Aug-09 10:53
nhqlbaislwfiikqraqnm21-Aug-09 10:53 
GeneralRe: how to call function timer on button click Pin
musefan23-Aug-09 21:59
musefan23-Aug-09 21:59 
GeneralRe: how to call function timer on button click Pin
musefan20-Aug-09 22:25
musefan20-Aug-09 22:25 
QuestionHow to import "using system.data.oledb;" automatically - C Sharp 2005 Pin
misCafe20-Aug-09 20:49
misCafe20-Aug-09 20:49 
AnswerRe: How to import "using system.data.oledb;" automatically - C Sharp 2005 Pin
SeMartens20-Aug-09 20:56
SeMartens20-Aug-09 20:56 
GeneralRe: How to import "using system.data.oledb;" automatically - C Sharp 2005 Pin
misCafe20-Aug-09 21:05
misCafe20-Aug-09 21:05 
AnswerRe: How to import "using system.data.oledb;" automatically - C Sharp 2005 Pin
Eddy Vluggen20-Aug-09 21:06
professionalEddy Vluggen20-Aug-09 21:06 
AnswerRe: How to import "using system.data.oledb;" automatically - C Sharp 2005 Pin
OriginalGriff20-Aug-09 21:18
mveOriginalGriff20-Aug-09 21:18 
AnswerRe: How to import "using system.data.oledb;" automatically - C Sharp 2005 Pin
PIEBALDconsult21-Aug-09 4:42
mvePIEBALDconsult21-Aug-09 4:42 
QuestionBHO Problem Pin
Jacobb Michael20-Aug-09 18:03
Jacobb Michael20-Aug-09 18:03 
Hi all,

Some one please can help me by converting the following code.

This works fine for the frames. and how to do for the other tags like button and links

The following code for frames works fine:

HTMLDocument document;
                IHTMLElementCollection elcol = document.getElementsByTagName("iframe");
                foreach (IHTMLElement iel in elcol)
                {
                    HTMLFrameElement frm = (HTMLFrameElement)iel;
                    DispHTMLDocument doc1 = (DispHTMLDocument)((SHDocVw.IWebBrowser2)frm).Document;
                    DE = (HTMLDocumentEvents2_Event)doc1;
                    DE.onclick += new HTMLDocumentEvents2_onclickEventHandler(DE_onclick);
                }


But i dont know how to do for the input buttons. Can you help me how to proceed with the following code.

IHTMLElementCollection buttons = document.getElementsByTagName("INPUT");
                foreach (IHTMLInputElement iel in buttons)
                {
                    HTMLInputElement button = (HTMLInputElement)iel;


//What to implement here to trigger the event that should contain IHTMLEventObj pEvtObj arguement
}


thanks in advance and awaiting for the solution...
Questionlooking for a pre-PostMessage check.. Pin
JakeRoberts20-Aug-09 13:45
JakeRoberts20-Aug-09 13:45 
QuestionIs there a terminal services friendly way of writing this code? Pin
JollyMansArt20-Aug-09 12:33
JollyMansArt20-Aug-09 12:33 

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.