473,763 Members | 1,377 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Using Lebans ToolTip Classes with Container Controls (Option Frames, Tab Controls)

Hello.

I have been trying out the Lebans ToolTip Classes at
http://www.lebans.com/tooltip.htm, to display "balloon" style help tips in a
form. The classes I am using are located at
http://www.lebans.com/DownloadFiles/A2kTooltip.zip

So far the classes work perfectly, except that now I need to extend it to
support other controls besides the ones given in the example form. I have
gotten it to work with some controls, but not others. I have noticed that
Stephen is using some control-type specific classes to handle text boxes,
combo boxes, and list boxes, but some controls do not appear to require
these extra classes at all to work properly with the main ToolTip class, and
I can't figure out what the differences are between the control types.

Has anyone tried to extend these classes to work with other control types
such as Option Buttons, Check Boxes, and the like? If so, could you shed
some light on how to approach this?

Also, what am I in for if I try to use these classes with Container
controls, such as an Option Group. Do I need to change the Lebans code to
walk through the sub-controls in the container?

Thanks in advance.

Robert
ro**********@no spam-unforgettable.c om
NOTE: If you are not a spammer, you are welcome to remove the "nospam" in my
email address to send me an email. Spammers, don't bother.
Nov 12 '05 #1
6 2700
Look through the code and you will see that there are two different
types of Tooltip objects.
1) For controls that have a permanent hWnd(Window handle). These include
List, Combo and TextBox controls.
2) For all other controls that do not have a permanent hWnd and are
therefore lightweight controls.

For all other control's we are really simply using the position and
dimensions of the control(s) to tell the ToolTip object when and what
control we are current hovering over.
So for the types of controls you mentioned, Option Buttons, CheckBox's
etc. they are already supported.. Have you even tried to see if these
controls are supported? I just did and they are.
--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
"Robert" <ro**********@n ospam-unforgettable.c om> wrote in message
news:Mr******** **********@nwrd dc01.gnilink.ne t...
Hello.

I have been trying out the Lebans ToolTip Classes at
http://www.lebans.com/tooltip.htm, to display "balloon" style help tips in a form. The classes I am using are located at
http://www.lebans.com/DownloadFiles/A2kTooltip.zip

So far the classes work perfectly, except that now I need to extend it to support other controls besides the ones given in the example form. I have gotten it to work with some controls, but not others. I have noticed that Stephen is using some control-type specific classes to handle text boxes, combo boxes, and list boxes, but some controls do not appear to require these extra classes at all to work properly with the main ToolTip class, and I can't figure out what the differences are between the control types.

Has anyone tried to extend these classes to work with other control types such as Option Buttons, Check Boxes, and the like? If so, could you shed some light on how to approach this?

Also, what am I in for if I try to use these classes with Container
controls, such as an Option Group. Do I need to change the Lebans code to walk through the sub-controls in the container?

Thanks in advance.

Robert
ro**********@no spam-unforgettable.c om
NOTE: If you are not a spammer, you are welcome to remove the "nospam" in my email address to send me an email. Spammers, don't bother.


Nov 12 '05 #2
Stephen,

Thanks for getting back to me so quickly.

Hmm... What am I doing wrong? It works for all control types EXCEPT check
boxes and option buttons (radio buttons). Originally I thought it was
because the option buttons were in an option group, but I put one option
button directly on the form, and it doesn't work either. Even tab controls
work (although I haven't figured out yet how to get a separate balloon for
each tab.)

Is there something in the code I need to switch on to enable option buttons
and check boxes? I noticed some SELECT CASE statements in there. Do I need
to add some cases?

Robert

"Stephen Lebans" <Fo************ *************** *************@l invalid.com>
wrote in message news:83******** *************@u rsa-nb00s0.nbnet.nb .ca...
Look through the code and you will see that there are two different
types of Tooltip objects.
1) For controls that have a permanent hWnd(Window handle). These include
List, Combo and TextBox controls.
2) For all other controls that do not have a permanent hWnd and are
therefore lightweight controls.

For all other control's we are really simply using the position and
dimensions of the control(s) to tell the ToolTip object when and what
control we are current hovering over.
So for the types of controls you mentioned, Option Buttons, CheckBox's
etc. they are already supported.. Have you even tried to see if these
controls are supported? I just did and they are.
--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
"Robert" <ro**********@n ospam-unforgettable.c om> wrote in message
news:Mr******** **********@nwrd dc01.gnilink.ne t...
Hello.

I have been trying out the Lebans ToolTip Classes at
http://www.lebans.com/tooltip.htm, to display "balloon" style help

tips in a
form. The classes I am using are located at
http://www.lebans.com/DownloadFiles/A2kTooltip.zip

So far the classes work perfectly, except that now I need to extend it

to
support other controls besides the ones given in the example form. I

have
gotten it to work with some controls, but not others. I have noticed

that
Stephen is using some control-type specific classes to handle text

boxes,
combo boxes, and list boxes, but some controls do not appear to

require
these extra classes at all to work properly with the main ToolTip

class, and
I can't figure out what the differences are between the control types.

Has anyone tried to extend these classes to work with other control

types
such as Option Buttons, Check Boxes, and the like? If so, could you

shed
some light on how to approach this?

Also, what am I in for if I try to use these classes with Container
controls, such as an Option Group. Do I need to change the Lebans

code to
walk through the sub-controls in the container?

Thanks in advance.

Robert
ro**********@no spam-unforgettable.c om
NOTE: If you are not a spammer, you are welcome to remove the "nospam"

in my
email address to send me an email. Spammers, don't bother.

Nov 12 '05 #3
Stephen,

Thanks for getting back to me so quickly.

Hmm... What am I doing wrong? It works for all control types EXCEPT check
boxes and option buttons (radio buttons). Originally I thought it was
because the option buttons were in an option group, but I put one option
button directly on the form, and it doesn't work either. Even tab controls
work (although I haven't figured out yet how to get a separate balloon for
each tab.)

Is there something in the code I need to switch on to enable option buttons
and check boxes? I noticed some SELECT CASE statements in there. Do I need
to add some cases?

Robert

"Stephen Lebans" <Fo************ *************** *************@l invalid.com>
wrote in message news:83******** *************@u rsa-nb00s0.nbnet.nb .ca...
Look through the code and you will see that there are two different
types of Tooltip objects.
1) For controls that have a permanent hWnd(Window handle). These include
List, Combo and TextBox controls.
2) For all other controls that do not have a permanent hWnd and are
therefore lightweight controls.

For all other control's we are really simply using the position and
dimensions of the control(s) to tell the ToolTip object when and what
control we are current hovering over.
So for the types of controls you mentioned, Option Buttons, CheckBox's
etc. they are already supported.. Have you even tried to see if these
controls are supported? I just did and they are.
--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
"Robert" <ro**********@n ospam-unforgettable.c om> wrote in message
news:Mr******** **********@nwrd dc01.gnilink.ne t...
Hello.

I have been trying out the Lebans ToolTip Classes at
http://www.lebans.com/tooltip.htm, to display "balloon" style help

tips in a
form. The classes I am using are located at
http://www.lebans.com/DownloadFiles/A2kTooltip.zip

So far the classes work perfectly, except that now I need to extend it

to
support other controls besides the ones given in the example form. I

have
gotten it to work with some controls, but not others. I have noticed

that
Stephen is using some control-type specific classes to handle text

boxes,
combo boxes, and list boxes, but some controls do not appear to

require
these extra classes at all to work properly with the main ToolTip

class, and
I can't figure out what the differences are between the control types.

Has anyone tried to extend these classes to work with other control

types
such as Option Buttons, Check Boxes, and the like? If so, could you

shed
some light on how to approach this?

Also, what am I in for if I try to use these classes with Container
controls, such as an Option Group. Do I need to change the Lebans

code to
walk through the sub-controls in the container?

Thanks in advance.

Robert
ro**********@no spam-unforgettable.c om
NOTE: If you are not a spammer, you are welcome to remove the "nospam"

in my
email address to send me an email. Spammers, don't bother.


Nov 12 '05 #4
You do not need to modify the ToolTips class at all. I mentioned in my
original post that I had tested for CheckBox, Option and ToogleButton
controls. They all worked the very first time.
Are you placing code behind the form's Load event as is shown in the
sample Form in order to initit the desired Tooltips?

' Set the text for the Notes label.
.SetToolText Me.Lablel_Notes , "I am the Notes Label." & vbCrLf &
"This is the second line!"

' Set the text for the CheckBox control.
.SetToolText Me.CheckBox99, "I am the CheckBox control." & vbCrLf &
"This is the second line!"

Have you perhaps made some changes to my code?

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
"Robert" <ro**********@n ospam-unforgettable.c om> wrote in message
news:VH******** **********@nwrd dc01.gnilink.ne t...
Stephen,

Thanks for getting back to me so quickly.

Hmm... What am I doing wrong? It works for all control types EXCEPT check boxes and option buttons (radio buttons). Originally I thought it was
because the option buttons were in an option group, but I put one option button directly on the form, and it doesn't work either. Even tab controls work (although I haven't figured out yet how to get a separate balloon for each tab.)

Is there something in the code I need to switch on to enable option buttons and check boxes? I noticed some SELECT CASE statements in there. Do I need to add some cases?

Robert

"Stephen Lebans" <Fo************ *************** *************@l invalid.com> wrote in message

news:83******** *************@u rsa-nb00s0.nbnet.nb .ca...
Look through the code and you will see that there are two different
types of Tooltip objects.
1) For controls that have a permanent hWnd(Window handle). These include List, Combo and TextBox controls.
2) For all other controls that do not have a permanent hWnd and are
therefore lightweight controls.

For all other control's we are really simply using the position and
dimensions of the control(s) to tell the ToolTip object when and what control we are current hovering over.
So for the types of controls you mentioned, Option Buttons, CheckBox's etc. they are already supported.. Have you even tried to see if these controls are supported? I just did and they are.
--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
"Robert" <ro**********@n ospam-unforgettable.c om> wrote in message
news:Mr******** **********@nwrd dc01.gnilink.ne t...
Hello.

I have been trying out the Lebans ToolTip Classes at
http://www.lebans.com/tooltip.htm, to display "balloon" style help

tips in a
form. The classes I am using are located at
http://www.lebans.com/DownloadFiles/A2kTooltip.zip

So far the classes work perfectly, except that now I need to extend it
to
support other controls besides the ones given in the example form.
I have
gotten it to work with some controls, but not others. I have
noticed that
Stephen is using some control-type specific classes to handle text

boxes,
combo boxes, and list boxes, but some controls do not appear to

require
these extra classes at all to work properly with the main ToolTip

class, and
I can't figure out what the differences are between the control
types.
Has anyone tried to extend these classes to work with other control types
such as Option Buttons, Check Boxes, and the like? If so, could
you shed
some light on how to approach this?

Also, what am I in for if I try to use these classes with
Container controls, such as an Option Group. Do I need to change the Lebans

code to
walk through the sub-controls in the container?

Thanks in advance.

Robert
ro**********@no spam-unforgettable.c om
NOTE: If you are not a spammer, you are welcome to remove the

"nospam" in my
email address to send me an email. Spammers, don't bother.



Nov 12 '05 #5
Stephen,

To answer your question, yes I am using modified code. I wrote a procedure
in a standard module that walks through all of the controls on the form,
extracts the ControlTipText from each control, sets the ToolTipText in your
ToolTip class, and then clears the ControlTipText from the control. I
didn't want to have to write code for every form in my application. I also
added a property to the ToolTip class that allows me to override your
ListBox behaviour with a ControlTip string.

To make sure that the problem wasn't in my code, I retrieved your original
Zip file from your website, created a new form, dropped various controls on
it, and coded it in the manner you use in your Customers form. The problem
persisted; every control type on the form worked EXCEPT Option Buttons and
Check Boxes. So I dropped an Option Button and a Check Box onto your
Customers form and, sure enough, they work.

So I began comparing your form with mine, and finally figured out that if I
turned off Record Selectors in my form, the problem goes away! I can also
reproduce the problem in your Customers form by turning Record Selectors on.

I hope you find this useful.

Robert
"Stephen Lebans" <Fo************ *************** *************@l invalid.com>
wrote in message news:db******** *************@u rsa-nb00s0.nbnet.nb .ca...
You do not need to modify the ToolTips class at all. I mentioned in my
original post that I had tested for CheckBox, Option and ToogleButton
controls. They all worked the very first time.
Are you placing code behind the form's Load event as is shown in the
sample Form in order to initit the desired Tooltips?

' Set the text for the Notes label.
.SetToolText Me.Lablel_Notes , "I am the Notes Label." & vbCrLf &
"This is the second line!"

' Set the text for the CheckBox control.
.SetToolText Me.CheckBox99, "I am the CheckBox control." & vbCrLf &
"This is the second line!"

Have you perhaps made some changes to my code?

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
"Robert" <ro**********@n ospam-unforgettable.c om> wrote in message
news:VH******** **********@nwrd dc01.gnilink.ne t...
Stephen,

Thanks for getting back to me so quickly.

Hmm... What am I doing wrong? It works for all control types EXCEPT

check
boxes and option buttons (radio buttons). Originally I thought it was
because the option buttons were in an option group, but I put one

option
button directly on the form, and it doesn't work either. Even tab

controls
work (although I haven't figured out yet how to get a separate balloon

for
each tab.)

Is there something in the code I need to switch on to enable option

buttons
and check boxes? I noticed some SELECT CASE statements in there. Do

I need
to add some cases?

Robert

"Stephen Lebans"

<Fo************ *************** *************@l invalid.com>
wrote in message

news:83******** *************@u rsa-nb00s0.nbnet.nb .ca...
Look through the code and you will see that there are two different
types of Tooltip objects.
1) For controls that have a permanent hWnd(Window handle). These include List, Combo and TextBox controls.
2) For all other controls that do not have a permanent hWnd and are
therefore lightweight controls.

For all other control's we are really simply using the position and
dimensions of the control(s) to tell the ToolTip object when and what control we are current hovering over.
So for the types of controls you mentioned, Option Buttons, CheckBox's etc. they are already supported.. Have you even tried to see if these controls are supported? I just did and they are.
--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
"Robert" <ro**********@n ospam-unforgettable.c om> wrote in message
news:Mr******** **********@nwrd dc01.gnilink.ne t...
> Hello.
>
> I have been trying out the Lebans ToolTip Classes at
> http://www.lebans.com/tooltip.htm, to display "balloon" style help
tips in a
> form. The classes I am using are located at
> http://www.lebans.com/DownloadFiles/A2kTooltip.zip
>
> So far the classes work perfectly, except that now I need to extend it to
> support other controls besides the ones given in the example form. I have
> gotten it to work with some controls, but not others. I have noticed that
> Stephen is using some control-type specific classes to handle text
boxes,
> combo boxes, and list boxes, but some controls do not appear to
require
> these extra classes at all to work properly with the main ToolTip
class, and
> I can't figure out what the differences are between the control types. >
> Has anyone tried to extend these classes to work with other control types
> such as Option Buttons, Check Boxes, and the like? If so, could you shed
> some light on how to approach this?
>
> Also, what am I in for if I try to use these classes with Container > controls, such as an Option Group. Do I need to change the Lebans
code to
> walk through the sub-controls in the container?
>
> Thanks in advance.
>
> Robert
> ro**********@no spam-unforgettable.c om
> NOTE: If you are not a spammer, you are welcome to remove the "nospam" in my
> email address to send me an email. Spammers, don't bother.
>
>


Nov 12 '05 #6
Thanks for figuring this out Robert. I will place your findings on the
ToolTip Web page.
When I get a chance I will go back and see where the code is failing due
to the RecordSelector prop being enabled.
:-)

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
"Robert" <ro**********@n ospam-unforgettable.c om> wrote in message
news:_o******** **********@nwrd dc02.gnilink.ne t...
Stephen,

To answer your question, yes I am using modified code. I wrote a procedure in a standard module that walks through all of the controls on the form, extracts the ControlTipText from each control, sets the ToolTipText in your ToolTip class, and then clears the ControlTipText from the control. I
didn't want to have to write code for every form in my application. I also added a property to the ToolTip class that allows me to override your
ListBox behaviour with a ControlTip string.

To make sure that the problem wasn't in my code, I retrieved your original Zip file from your website, created a new form, dropped various controls on it, and coded it in the manner you use in your Customers form. The problem persisted; every control type on the form worked EXCEPT Option Buttons and Check Boxes. So I dropped an Option Button and a Check Box onto your
Customers form and, sure enough, they work.

So I began comparing your form with mine, and finally figured out that if I turned off Record Selectors in my form, the problem goes away! I can also reproduce the problem in your Customers form by turning Record Selectors on.
I hope you find this useful.

Robert
"Stephen Lebans" <Fo************ *************** *************@l invalid.com> wrote in message

news:db******** *************@u rsa-nb00s0.nbnet.nb .ca...
You do not need to modify the ToolTips class at all. I mentioned in my original post that I had tested for CheckBox, Option and ToogleButton controls. They all worked the very first time.
Are you placing code behind the form's Load event as is shown in the
sample Form in order to initit the desired Tooltips?

' Set the text for the Notes label.
.SetToolText Me.Lablel_Notes , "I am the Notes Label." & vbCrLf &
"This is the second line!"

' Set the text for the CheckBox control.
.SetToolText Me.CheckBox99, "I am the CheckBox control." & vbCrLf & "This is the second line!"

Have you perhaps made some changes to my code?

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
"Robert" <ro**********@n ospam-unforgettable.c om> wrote in message
news:VH******** **********@nwrd dc01.gnilink.ne t...
Stephen,

Thanks for getting back to me so quickly.

Hmm... What am I doing wrong? It works for all control types EXCEPT
check
boxes and option buttons (radio buttons). Originally I thought it
was because the option buttons were in an option group, but I put one

option
button directly on the form, and it doesn't work either. Even tab

controls
work (although I haven't figured out yet how to get a separate balloon for
each tab.)

Is there something in the code I need to switch on to enable
option buttons
and check boxes? I noticed some SELECT CASE statements in there.
Do I need
to add some cases?

Robert

"Stephen Lebans"

<Fo************ *************** *************@l invalid.com>
wrote in message

news:83******** *************@u rsa-nb00s0.nbnet.nb .ca...
> Look through the code and you will see that there are two
different > types of Tooltip objects.
> 1) For controls that have a permanent hWnd(Window handle). These

include
> List, Combo and TextBox controls.
> 2) For all other controls that do not have a permanent hWnd and are > therefore lightweight controls.
>
> For all other control's we are really simply using the position and > dimensions of the control(s) to tell the ToolTip object when and

what
> control we are current hovering over.
> So for the types of controls you mentioned, Option Buttons,

CheckBox's
> etc. they are already supported.. Have you even tried to see if

these
> controls are supported? I just did and they are.
>
>
> --
>
> HTH
> Stephen Lebans
> http://www.lebans.com
> Access Code, Tips and Tricks
> Please respond only to the newsgroups so everyone can benefit.
>
>
> "Robert" <ro**********@n ospam-unforgettable.c om> wrote in message > news:Mr******** **********@nwrd dc01.gnilink.ne t...
> > Hello.
> >
> > I have been trying out the Lebans ToolTip Classes at
> > http://www.lebans.com/tooltip.htm, to display "balloon" style help > tips in a
> > form. The classes I am using are located at
> > http://www.lebans.com/DownloadFiles/A2kTooltip.zip
> >
> > So far the classes work perfectly, except that now I need to

extend it
> to
> > support other controls besides the ones given in the example form. I
> have
> > gotten it to work with some controls, but not others. I have

noticed
> that
> > Stephen is using some control-type specific classes to handle
text > boxes,
> > combo boxes, and list boxes, but some controls do not appear to > require
> > these extra classes at all to work properly with the main ToolTip > class, and
> > I can't figure out what the differences are between the control types.
> >
> > Has anyone tried to extend these classes to work with other

control
> types
> > such as Option Buttons, Check Boxes, and the like? If so,
could you
> shed
> > some light on how to approach this?
> >
> > Also, what am I in for if I try to use these classes with

Container
> > controls, such as an Option Group. Do I need to change the

Lebans > code to
> > walk through the sub-controls in the container?
> >
> > Thanks in advance.
> >
> > Robert
> > ro**********@no spam-unforgettable.c om
> > NOTE: If you are not a spammer, you are welcome to remove the

"nospam"
> in my
> > email address to send me an email. Spammers, don't bother.
> >
> >
>



Nov 12 '05 #7

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

Similar topics

5
2400
by: Carlos Ribeiro | last post by:
Hello all, I'm posting this to the list with the intention to form a group of people interested in this type of solution. I'm not going to spam the list with it, unless for occasional and relevant announcements. If you're interested, drop me a note. But if for some reason you think that this discussion is fine here at the c.l.py, please let me know. ** LONG POST AHEAD **
1
2988
by: Stephen | last post by:
Is it possible to add a tooltip in the column of a Datagrid. Can someone please show me how I would do this for the datagrid column below. Thanks for any help anyone can give me. Here is the datagrid coloum which I want to put the tooltip when the user hovers over it. <asp:BoundColumn DataField="ID" SortExpression="ID" HeaderText="ID"> <HeaderStyle ForeColor="White" CssClass="dgHeader"> </HeaderStyle>
0
1965
by: Robert | last post by:
Stephen, I think I figured out the problem. I was able to get Check Boxes and Option Buttons to work on my form by TURNING OFF RECORD SELECTORS on the form. Not sure why this would make a difference. Perhaps Access attributes the hWnd of the form to the Record Selector if these are turned on. In any case, I ran some tests on your Customers form and sure enough, a Check Box or Option Button will work fine until you turn on Record...
3
2616
by: Alex Wisnoski | last post by:
I am trying to adapt Lebans' ReportUtilities to export reports (to preserve formatting) from an Access 97 application. I have made the reference to his mde and copied the modules into my db. I have created a custom toolbar with a custom control, "Export to File". In the On Action property (of the export control) I inserted the code "pf.ExportToMSWord rptApplicantReferral" which I had copied from his sample db except for the name of my...
7
2638
by: Mark Thomas | last post by:
Delighted to find Lebans textbox justification but... ....after you have downloaded the sample database, with its module, what do you do to make your own text boxes in your own database have justified text? I have tried copying the module out of the sample database but that, in itself, didn't do the trick.
1
1478
by: Bob Quintal | last post by:
Hi, I have an application where I need to show detailed information about items in a dropped-down combobox. I have been studying Mr Lebans' examples called Tooltip.mdb and ComboCurrentRow.mdb, but I can't seem to be able to combine the two to get a Tooltip to show data from (a hidden column in) the current row of the combobox.
3
2551
by: Craig G | last post by:
what way do you code it? i tried the following but it wouldnt display it lblAdd_info is a hidden field in the cell itself that contains the data i want to display in the tooltip text. i added the following into the ItemDatabound event for the grif but it wont display If e.Item.ItemType = ListItemType.AlternatingItem Or e.Item.ItemType = ListItemType.Item Then
53
4754
by: Hexman | last post by:
Hello All, I'd like your comments on the code below. The sub does exactly what I want it to do but I don't feel that it is solid as all. It seems like I'm using some VB6 code, .Net2003 code, and .Net2005 code. I'm developing in vb.net 2005. This test sub just reads an input text file, writing out records to another text file, eliminating records that have a '99' in them (it is similar to a CSV file). Some of my concerns are:
0
1629
by: walve_wei | last post by:
<1>use the D3D control panel, enable the debug DLL and maximum validation,for D3D control panel ,you need to install the directx sdk. <2>Start up the debug monitor (<MSVC install directory>\Common7\Tools \Bin\winnt\Dbmon.Exe). <3>If you use the tooltip in native code,then run the program,show the tooltip,then exit the program, the Dbmon.exe will report serious direct3d9 memleak in xp and vista os.but If I use the wpf tooltip in c#,it is...
0
9563
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
9386
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
9998
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8822
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...
1
7366
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6642
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
5270
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
5406
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2793
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.