Re: checkbox_Click called when value changed?
- From: "Ken-Jin" <kevinkhaw@xxxxxxxxx>
- Date: 19 Jan 2006 14:02:42 -0800
I have not used VB6 for a long time so I am a little rusty but your
suggestion works! Thanks a bunch Mike.
Mike Williams wrote:
> "Ken-Jin" <kevinkhaw@xxxxxxxxx> wrote in message
> news:1137703006.275381.118500@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
>
> > Long story short, when i change the checkbox.value outside of
> > the checkbox_click function, it automatically calls the checkbox
> > _click function. Is there a checkbox_MouseUp? seems to be
> > giving me an error.
>
> Yes. There most certainly is a Checkbox MouseUp event. Perhaps you are just
> typing the entire event code into your project (and not quite getting it
> right) instead of just allowing VB to create the Sub and End Sub lines for
> you? What version of VB are you using? In VB6 just place a checkbox on your
> Form and double click it in the VB IDE and select the MouseUp event from the
> drop down list. Otherwise, try typing the following in to your Form code
> (assuming your checkbox is called Check1):
>
> Private Sub Check1_MouseUp(Button As Integer, _
> Shift As Integer, X As Single, Y As Single)
> ' your code here
> MsgBox "The checkbox mouse up event has been triggered."
> End Sub
>
> Mike
.
- Follow-Ups:
- Re: checkbox_Click called when value changed?
- From: Steve Gerrard
- Re: checkbox_Click called when value changed?
- From: Steve Gerrard
- Re: checkbox_Click called when value changed?
- References:
- checkbox_Click called when value changed?
- From: kevinkhaw@xxxxxxxxx
- Re: checkbox_Click called when value changed?
- From: Jay Taplin
- Re: checkbox_Click called when value changed?
- From: Ken-Jin
- Re: checkbox_Click called when value changed?
- From: Mike Williams
- Re: checkbox_Click called when value changed?
- From: Ken-Jin
- Re: checkbox_Click called when value changed?
- From: Mike Williams
- checkbox_Click called when value changed?
- Prev by Date: Re: checkbox_Click called when value changed?
- Next by Date: animated file copy
- Previous by thread: Re: checkbox_Click called when value changed?
- Next by thread: Re: checkbox_Click called when value changed?
- Index(es):
Relevant Pages
|