473,651 Members | 2,551 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Handles keyword.

Hi All,

I didn't use a "Handles" keyword in VB6. I can't sure its funciton.

Does it mean that any object behind "handles" keyword will run the same
code?

ex:
Private Sub A(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles B, C, D, E

// B , C, D, E objects will get the same message ?
END SUB
// Thank you very much!

// BR
// /Boki.

Mar 7 '06 #1
5 2497
bo******@ms21.h inet.net wrote:
Hi All,

I didn't use a "Handles" keyword in VB6. I can't sure its funciton.

Does it mean that any object behind "handles" keyword will run the same
code?

ex:
Private Sub A(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles B, C, D, E

// B , C, D, E objects will get the same message ?
END SUB


B,C,D and E are Events of an object declared withevents

e.g.

- private withevents txtEdit as TextBox

Declares a reference to a TextBox called txtEdit that has events
associated with it (e.g. KeyPress). When you declare your event handler
(say)

Private Sub X(....) handles txtEdit.KeyPres sed

you are saying that the object that this refers to (created by txtEdit =
new TextBox()) is acquiring a (possibly additional) handler for when it
raises its KeyPress event.

The same Event Handler can handle multiple events ; this might be used
(say) if you had multiple text fields that you wanted to capitalise on
entry, for example.

Also, an Event can have multiple handlers.
Mar 7 '06 #2
Yes and "sender" allows to access the control who raised this event if
needed.
--
Patrice

<bo******@ms21. hinet.net> a écrit dans le message de
news:11******** **************@ i39g2000cwa.goo glegroups.com.. .
Hi All,

I didn't use a "Handles" keyword in VB6. I can't sure its funciton.

Does it mean that any object behind "handles" keyword will run the same
code?

ex:
Private Sub A(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles B, C, D, E

// B , C, D, E objects will get the same message ?
END SUB
// Thank you very much!

// BR
// /Boki.

Mar 7 '06 #3
<bo******@ms21. hinet.net> schrieb:
I didn't use a "Handles" keyword in VB6. I can't sure its funciton.

Does it mean that any object behind "handles" keyword will run the same
code?

ex:
Private Sub A(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles B, C, D, E

// B , C, D, E objects will get the same message ?
END SUB


Yes.

I suggest to place the caret on 'Handles' and press the F1 key.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
Mar 7 '06 #4

<bo******@ms21. hinet.net> wrote in message
news:11******** **************@ i39g2000cwa.goo glegroups.com.. .
Does it mean that any object behind "handles" keyword will run the same
code?


If anything, it's the other way around.
Your method can handle any of the events that you list in the Handles
clause - usually one event per method (but for many objects) as in :

Private Sub AnyButton_Click ( _
ByVal sender As System.Object _
, ByVal e As System.EventArg s _
) Handles button1.Click, button2.Click, button3.Click

This routine will be called whenever the user clicks on any of
button1, button2 or button3.

HTH,
Phill W.
Mar 7 '06 #5
Thank you for example, very clear!

Best regards,
Boki.

Phill W. wrote:
<bo******@ms21. hinet.net> wrote in message
news:11******** **************@ i39g2000cwa.goo glegroups.com.. .
Does it mean that any object behind "handles" keyword will run the same
code?


If anything, it's the other way around.
Your method can handle any of the events that you list in the Handles
clause - usually one event per method (but for many objects) as in :

Private Sub AnyButton_Click ( _
ByVal sender As System.Object _
, ByVal e As System.EventArg s _
) Handles button1.Click, button2.Click, button3.Click

This routine will be called whenever the user clicks on any of
button1, button2 or button3.

HTH,
Phill W.


Mar 7 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
16600
by: siliconwafer | last post by:
Hi all, I wanted to know that is use of extern keyword mandatory in case of global variables and functions used in other source files? i.e consider a following piece of code from MSDN explaining extern storage class: /****************************************************************** SOURCE FILE ONE *******************************************************************/ extern int i; /* Reference to i, defined below */
0
442
by: Raj | last post by:
Thanks! Cheers, Raj >-----Original Message----- >Use the following syntx to assign handlers to events: > >this.Load += new System.EventHandler(Page_Load); > >
4
1630
by: tzellman | last post by:
Ok, so here is my situation: Let's assume I have a function that makes good use of the kwargs parameter. It requires that there is a certain "format" for the kwargs keywords. (I am using Django, btw). The format is like such: "SOMEVAL__exact", etc., where SOMEVAL is some value that it parses from the keyword. Now, I want to call this function, specifying the kwargs. The problem is that I want to dynamically set the kwargs. For...
6
1555
by: antonyliu2002 | last post by:
Right now I put my VB code in the aspx pages. I would prefer to use codebehind, especially many of my VB functions may be shared across multiple aspx pages. I've tried a few pages with codebehind by follwing some examples on the Web and they work just fine. However, I am scared away from codebehind by such extenstions as "Handles MyBase.Load", "Handles Button1.Click" and "Handles MyBase.Init" etc. which we seem to have to add to the...
8
1583
by: cipcip | last post by:
same question about WEB app.: In vb i use "handles + handler class name" keyword for events, what can i use in c#? In vb i use the directive masterpagefile and mastertype and than i can see all public methods, classes and vars of the master page, in c# it seems it is not enaugh, how can i do to """see""" masterPage?
2
4395
by: sck10 | last post by:
Hello, Is there an equivalent to using "Handles" in the codebehind for c#? Or do I have to declare every event in the GridView control like the following: <asp:GridView ID="gvSearchList" runat="server" DataSourceID="dsSearchList" DataKeyNames="ServiceIdea_ID" OnSelectedIndexChanged="gvSearchList_SelectedIndexChanged">
6
3343
by: tom | last post by:
Hi I try to check whether a given input is keyword or not. However this script won't identify keyword input as a keyword. How should I modify it to make it work? #!usr/bin/env python import keyword input = raw_input('Enter identifier to check >')
0
844
by: Jack | last post by:
So I am learning c++/cli and I have a couple of questions about handles. From what I understand these two are pretty similar except that handles point to Managed Heap and Pointer point to the native heap. My question is in the following code where is the handle pointing to? int^ handle = 5; is this on the managed heap? and what is the diff between the above and this:
1
2777
by: alamodgal | last post by:
hiiiiiii I have a problem in highlighting searching keyword.Actually im using this function for searching Public Function HighLight(ByVal Keyword As String, ByVal ContentFor As String) Dim objHighLight As New highlight(Keyword, "<span class='searchKeyword'>{keyword}</span>") ContentFor = objHighLight.process(ContentFor, False, False) Return ContentFor 'Dim RegExp As Regex = New Regex(Keyword.Replace(" ", "|").Trim(),...
0
8349
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8275
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8795
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
7296
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5609
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4143
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4281
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1906
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1585
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.