473,399 Members | 4,192 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Tag and Late Binding

In another thread VJ made me aware of Tag. Fantastic! I've been
wanting this capability for a long time. But it seems that I cannot
use it with Option Strict On. In an event handler I have ...

Private Sub chkbxSelI_Click(ByVal sender As Object, ByVal e As
System.EventArgs)

MsgBox("bingo for number " & sender.Tag.ToString)
End Sub

.... but with Option Strict On I get a complaint about "sender.Tag".

I looked up a brief article about Late Binding and I get the
impression that this is just the way it is. If you use Late Binding
you cannot use Option Strict On.

But I don't understand exactly what Late Binding it is complaining
about. I would guess that the compiler is concerned that he can't be
sure that sender.Tag is an Integer. But when I cast sender.Tag to an
Integer I still get a Late Binding error on sender.Tag.

I hate to give up Option Strict On, so I thought I'd ask here if there
is some way to use Option Strict On and still use Late Binding. Maybe
casting was the right idea but I did it wrong? Or maybe there is some
other way to pass info to my event handler which does not involve Tag.
Although I really like the idea of Tag. I think that I am using it
exactly the way it is intended to be used.

Thanks, Bob

Nov 21 '05 #1
5 2018
Don't think so:

"In addition to the conditions described above, Option Strict generates an
error for:
* Any undeclared variable since it is implied that Option Strict also means
Option Explicit.
* Late-binding."

- Microsoft.


"eBob.com" <eB******@totallyfakeisp.com> schreef in bericht
news:do********************************@4ax.com...
In another thread VJ made me aware of Tag. Fantastic! I've been
wanting this capability for a long time. But it seems that I cannot
use it with Option Strict On. In an event handler I have ...

Private Sub chkbxSelI_Click(ByVal sender As Object, ByVal e As
System.EventArgs)

MsgBox("bingo for number " & sender.Tag.ToString)
End Sub

... but with Option Strict On I get a complaint about "sender.Tag".

I looked up a brief article about Late Binding and I get the
impression that this is just the way it is. If you use Late Binding
you cannot use Option Strict On.

But I don't understand exactly what Late Binding it is complaining
about. I would guess that the compiler is concerned that he can't be
sure that sender.Tag is an Integer. But when I cast sender.Tag to an
Integer I still get a Late Binding error on sender.Tag.

I hate to give up Option Strict On, so I thought I'd ask here if there
is some way to use Option Strict On and still use Late Binding. Maybe
casting was the right idea but I did it wrong? Or maybe there is some
other way to pass info to my event handler which does not involve Tag.
Although I really like the idea of Tag. I think that I am using it
exactly the way it is intended to be used.

Thanks, Bob

Nov 21 '05 #2
Bob,

This is easy, you have to use Convert or Cast commands. (Convert converts,
Cast uses as).
Private Sub chkbxSelI_Click(ByVal sender As Object, ByVal e As
System.EventArgs)

MsgBox("bingo for number " & sender.Tag.ToString)
End Sub

The sender is I assume a CheckBox object. Than you have to say
DirectCast(sender, CheckBox).Tag.ToString
"Use sender as a CheckBox because it is that (or derived from)".

That is all, one time you know this all problems about early binding are
gone.

When it is a value by instance a string from which you want to use the
contents as an integer, than you can say.
CInt("1234")
or in the long way
CType("1234",Integer)
' what is the same

Here DirectCast fails because "1234" is not an integer (or derives from
that).

In other words, you can use everywhere CType (ore the shortcuts) where you
can use DirectCast however not in the opposite way. Using (DirectCast) is of
course less expensive than converting.

ToString() is standard a converting command CType(x,String), However that is
often overridden in different methods

I hope this helps?

Cor
Nov 21 '05 #3
> ToString() is standard a converting command CType(x,String), However that
is often overridden in different methods

ToString() is standard a converting command CType(x,String), However that
is often overridden in different classes

Nov 21 '05 #4
"eBob.com" <eB******@totallyfakeisp.com> schrieb:
In another thread VJ made me aware of Tag. Fantastic! I've been
wanting this capability for a long time. But it seems that I cannot
use it with Option Strict On. In an event handler I have ...

Private Sub chkbxSelI_Click(ByVal sender As Object, ByVal e As
System.EventArgs)

MsgBox("bingo for number " & sender.Tag.ToString)
End Sub

... but with Option Strict On I get a complaint about "sender.Tag".

I looked up a brief article about Late Binding and I get the
impression that this is just the way it is. If you use Late Binding
you cannot use Option Strict On.

But I don't understand exactly what Late Binding it is complaining
about. I would guess that the compiler is concerned that he can't be
sure that sender.Tag is an Integer.


No! 'sender' is of type 'Object', and 'Object' doesn't have a 'Tag'
property. You can solve the problem by casting 'sender' to 'Control', which
provides the 'Tag' property and is the superclass of all controls:

\\\
Dim SourceControl As Control = DirectCast(sender, Control)
MsgBox("Bingo for number " & CStr(SourceControl.Tag)
///

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #5
On Thu, 17 Mar 2005 23:06:39 -0500, eBob.com
<eB******@totallyfakeisp.com> wrote:
In another thread VJ made me aware of Tag. Fantastic! I've been
wanting this capability for a long time. But it seems that I cannot
use it with Option Strict On. In an event handler I have ...

Private Sub chkbxSelI_Click(ByVal sender As Object, ByVal e As
System.EventArgs)

MsgBox("bingo for number " & sender.Tag.ToString)
End Sub

... but with Option Strict On I get a complaint about "sender.Tag".

I looked up a brief article about Late Binding and I get the
impression that this is just the way it is. If you use Late Binding
you cannot use Option Strict On.

But I don't understand exactly what Late Binding it is complaining
about. I would guess that the compiler is concerned that he can't be
sure that sender.Tag is an Integer. But when I cast sender.Tag to an
Integer I still get a Late Binding error on sender.Tag.

I hate to give up Option Strict On, so I thought I'd ask here if there
is some way to use Option Strict On and still use Late Binding. Maybe
casting was the right idea but I did it wrong? Or maybe there is some
other way to pass info to my event handler which does not involve Tag.
Although I really like the idea of Tag. I think that I am using it
exactly the way it is intended to be used.

Thanks, Bob


Nov 21 '05 #6

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

Similar topics

21
by: Mike MacSween | last post by:
Had some trouble with Word automation. Sorted it, in the process thought I would try late binding. Some people reccomend it. So this: *********************************************************...
1
by: JD Kronicz | last post by:
Hi .. I have an issue I have been beating my head against the wall on for some time. I am trying to use late binding for MS graph so that my end users don't have to worry about having the right...
14
by: Composer | last post by:
I've read many postings about the problem of Access.References.IsBroken and the consensus seems to be that late binding is the cure-all. I have a very complex Access application that needs...
9
by: Zlatko Matić | last post by:
I was reading about late binding, but I'm not completely sure what is to be done in order to adjust code to late binding... For example, I'm not sure if this is correct: early binding: Dim ws...
30
by: lgbjr | last post by:
hi All, I've decided to use Options Strict ON in one of my apps and now I'm trying to fix a late binding issue. I have 5 integer arrays: dim IA1(500), IA2(500), IA3(500), IA4(500), IA5(500) as...
6
by: Tim Roberts | last post by:
I've been doing COM a long time, but I've just come across a behavior with late binding that surprises me. VB and VBS are not my normal milieux, so I'm hoping someone can point me to a document...
2
by: GS | last post by:
I have installed the ms PIA for ofc XP, and followed the article http://support.microsoft.com/kb/247412/ trying to paste into a worksheet However I got late binding not allowed errors .......
3
ADezii
by: ADezii | last post by:
The process of verifying that an Object exists and that a specified Property or Method is valid is called Binding. There are two times when this verification process can take place: during compile...
14
by: Siv | last post by:
hi, I am converting an application that writes to an Excel spreadsheet and the code trips the "option Strict" that I would like on because the parser says "option Strict On disallows late...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
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...
0
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,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.