473,397 Members | 2,116 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,397 software developers and data experts.

Form Timer event fails to fire on heavy database access: Access 2003 bug?

I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until the
user gives the form focus. (Note that the update itself always completes
correctly.)

Case 2: If a copy of the entire backend is made to a different computer,
the form's timer event (from the frontend) again stops firing until the user
gives the form focus. (This is an entirely differnet frontend than the one
in case 1. Note that the copy operation itself always completes correctly.)

Despite being reproducible, this is a hard bug to test, because there is no
"crash": the timer event simply seems to stop firing, and the code operates
normally again (the timer event fires again) once the form at issue (or even
the vba code window) gets the focus.

I've tried isolating various hardware culprits (ide drivers etc.), with no
luck. Any suggestions are welcome.

Nov 13 '05 #1
13 7418
Manuel Lopez wrote:
I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until the
user gives the form focus. (Note that the update itself always completes
correctly.)

Case 2: If a copy of the entire backend is made to a different computer,
the form's timer event (from the frontend) again stops firing until the user
gives the form focus. (This is an entirely differnet frontend than the one
in case 1. Note that the copy operation itself always completes correctly.)

Despite being reproducible, this is a hard bug to test, because there is no
"crash": the timer event simply seems to stop firing, and the code operates
normally again (the timer event fires again) once the form at issue (or even
the vba code window) gets the focus.

I've tried isolating various hardware culprits (ide drivers etc.), with no
luck. Any suggestions are welcome.


I have no suggestion as to the "why" but can't you add the command
Docmd.SelectObject acForm, "YourFormName"
at the end of running the VBA code?

Nov 13 '05 #2
On Wed, 16 Jun 2004 04:11:03 -0400, "Manuel Lopez"
<ma******************************@deadspam.com> wrote:

Timer events are among the lowest-priority events. Early on, MSFT
realized they would not be able to guarantee that the event would be
delivered to the message queue EXACTLY every <interval> seconds. So
they did something really smart: tell developers not to rely on its
accurate delivery. They also provided for timer event consolidation,
meaning that if several events should have happened during some
lengthy processing, only 1 event would be in the message queue.

So it is "by design" that the timer doesn't tick during some lengthy
processing.

Workarounds include processing smaller chunks at a time, with a
DoEvents statement in between.

-Tom.

I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until the
user gives the form focus. (Note that the update itself always completes
correctly.)

Case 2: If a copy of the entire backend is made to a different computer,
the form's timer event (from the frontend) again stops firing until the user
gives the form focus. (This is an entirely differnet frontend than the one
in case 1. Note that the copy operation itself always completes correctly.)

Despite being reproducible, this is a hard bug to test, because there is no
"crash": the timer event simply seems to stop firing, and the code operates
normally again (the timer event fires again) once the form at issue (or even
the vba code window) gets the focus.

I've tried isolating various hardware culprits (ide drivers etc.), with no
luck. Any suggestions are welcome.


Nov 13 '05 #3
Thanks, but to clarify: the problem is not that some timer events are
SKIPPED, but that the timer STOPS firing, period, FOREVER, until the form
gets focus again.
"Tom van Stiphout" <to*****@no.spam.cox.net> wrote in message
news:rc********************************@4ax.com...
On Wed, 16 Jun 2004 04:11:03 -0400, "Manuel Lopez"
<ma******************************@deadspam.com> wrote:

Timer events are among the lowest-priority events. Early on, MSFT
realized they would not be able to guarantee that the event would be
delivered to the message queue EXACTLY every <interval> seconds. So
they did something really smart: tell developers not to rely on its
accurate delivery. They also provided for timer event consolidation,
meaning that if several events should have happened during some
lengthy processing, only 1 event would be in the message queue.

So it is "by design" that the timer doesn't tick during some lengthy
processing.

Workarounds include processing smaller chunks at a time, with a
DoEvents statement in between.

-Tom.

I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until theuser gives the form focus. (Note that the update itself always completes
correctly.)

Case 2: If a copy of the entire backend is made to a different computer,
the form's timer event (from the frontend) again stops firing until the usergives the form focus. (This is an entirely differnet frontend than the onein case 1. Note that the copy operation itself always completes correctly.)
Despite being reproducible, this is a hard bug to test, because there is no"crash": the timer event simply seems to stop firing, and the code operatesnormally again (the timer event fires again) once the form at issue (or eventhe vba code window) gets the focus.

I've tried isolating various hardware culprits (ide drivers etc.), with noluck. Any suggestions are welcome.

Nov 13 '05 #4
Catch 22: your code to get the timer event to fire will never run because
the code would have to be in the timer event to do any good. (The form's
having the focus doesn't PREVENT the problem from happening, but when it
receives the focus AFTER the problem, then the timer event resumes firing.)
Of course, I could have another form with another timer event running to
give the focus to the first form, or to call the code at issue directly, but
it all gets very messy and leads to other problems (and I have no guarantee
the second form's timer would run either).
I have no suggestion as to the "why" but can't you add the command
Docmd.SelectObject acForm, "YourFormName"
at the end of running the VBA code?


"Salad" <oi*@vinegar.com> wrote in message
news:3c****************@newsread1.news.pas.earthli nk.net... Manuel Lopez wrote:
I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until the user gives the form focus. (Note that the update itself always completes correctly.)

Case 2: If a copy of the entire backend is made to a different computer, the form's timer event (from the frontend) again stops firing until the user gives the form focus. (This is an entirely differnet frontend than the one in case 1. Note that the copy operation itself always completes correctly.)
Despite being reproducible, this is a hard bug to test, because there is no "crash": the timer event simply seems to stop firing, and the code operates normally again (the timer event fires again) once the form at issue (or even the vba code window) gets the focus.

I've tried isolating various hardware culprits (ide drivers etc.), with no luck. Any suggestions are welcome.


I have no suggestion as to the "why" but can't you add the command
Docmd.SelectObject acForm, "YourFormName"
at the end of running the VBA code?

Nov 13 '05 #5
Manuel Lopez wrote:
Catch 22: your code to get the timer event to fire will never run because
the code would have to be in the timer event to do any good.
You may be in a catch-22, but my solution handles it. You were talking
about code in the front end to perform some updates. Why would you want
to put my solution in the timer event when you can put it at the end of
the code that performs/initiates the updates?

If my solution won't work then you have not described the problem correctly.
(The form's having the focus doesn't PREVENT the problem from happening, but when it
receives the focus AFTER the problem, then the timer event resumes firing.)
Of course, I could have another form with another timer event running to
give the focus to the first form, or to call the code at issue directly, but
it all gets very messy and leads to other problems (and I have no guarantee
the second form's timer would run either).

I have no suggestion as to the "why" but can't you add the command
Docmd.SelectObject acForm, "YourFormName"
at the end of running the VBA code?



"Salad" <oi*@vinegar.com> wrote in message
news:3c****************@newsread1.news.pas.earthli nk.net...
Manuel Lopez wrote:
I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until
the
user gives the form focus. (Note that the update itself always
completes
correctly.)

Case 2: If a copy of the entire backend is made to a different
computer,
the form's timer event (from the frontend) again stops firing until the
user
gives the form focus. (This is an entirely differnet frontend than the
one
in case 1. Note that the copy operation itself always completes
correctly.)
Despite being reproducible, this is a hard bug to test, because there is
no
"crash": the timer event simply seems to stop firing, and the code
operates
normally again (the timer event fires again) once the form at issue (or
even
the vba code window) gets the focus.

I've tried isolating various hardware culprits (ide drivers etc.), with
no
luck. Any suggestions are welcome.


I have no suggestion as to the "why" but can't you add the command
Docmd.SelectObject acForm, "YourFormName"
at the end of running the VBA code?



Nov 13 '05 #6
I don't have 2003 loaded to test, but on A97, the timer
form gets focus every time a timer event happens. (At little
bit strange if you don't expect it: you can't actually see
the form get focus, but you can feel it happening....)
So I guess the timer is reset when the form gets focus.

(david)
"Tom van Stiphout" <to*****@no.spam.cox.net> wrote in message
news:rc********************************@4ax.com...
On Wed, 16 Jun 2004 04:11:03 -0400, "Manuel Lopez"
<ma******************************@deadspam.com> wrote:

Timer events are among the lowest-priority events. Early on, MSFT
realized they would not be able to guarantee that the event would be
delivered to the message queue EXACTLY every <interval> seconds. So
they did something really smart: tell developers not to rely on its
accurate delivery. They also provided for timer event consolidation,
meaning that if several events should have happened during some
lengthy processing, only 1 event would be in the message queue.

So it is "by design" that the timer doesn't tick during some lengthy
processing.

Workarounds include processing smaller chunks at a time, with a
DoEvents statement in between.

-Tom.

I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until theuser gives the form focus. (Note that the update itself always completes
correctly.)

Case 2: If a copy of the entire backend is made to a different computer,
the form's timer event (from the frontend) again stops firing until the usergives the form focus. (This is an entirely differnet frontend than the onein case 1. Note that the copy operation itself always completes correctly.)
Despite being reproducible, this is a hard bug to test, because there is no"crash": the timer event simply seems to stop firing, and the code operatesnormally again (the timer event fires again) once the form at issue (or eventhe vba code window) gets the focus.

I've tried isolating various hardware culprits (ide drivers etc.), with noluck. Any suggestions are welcome.

Nov 13 '05 #7
"Manuel Lopez" <ma******************************@deadspam.com> wrote:
I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until the
user gives the form focus. (Note that the update itself always completes
correctly.)
What happens if you put a DoEvents in between each recordset update?

Have you tried this in A2002 or A2000 if available to you?
Case 2: If a copy of the entire backend is made to a different computer,
the form's timer event (from the frontend) again stops firing until the user
gives the form focus. (This is an entirely differnet frontend than the one
in case 1. Note that the copy operation itself always completes correctly.)


In A97 I have a hidden form with a timer that kicks users out. It never gets the
focus and yet works fine.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 13 '05 #8
> In A97 I have a hidden form with a timer that kicks users out. It never
gets
focus and yet works fine.

It is however 'restored' (which can mess up your 'maximized' forms)
on every timer event if it is hidden, and the VBA IDE temporarily
looses focus on every timer event.

(david)

"Tony Toews" <tt****@telusplanet.net> wrote in message
news:a3********************************@4ax.com... "Manuel Lopez" <ma******************************@deadspam.com> wrote:
I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until theuser gives the form focus. (Note that the update itself always completes
correctly.)
What happens if you put a DoEvents in between each recordset update?

Have you tried this in A2002 or A2000 if available to you?
Case 2: If a copy of the entire backend is made to a different computer,
the form's timer event (from the frontend) again stops firing until the usergives the form focus. (This is an entirely differnet frontend than the onein case 1. Note that the copy operation itself always completes

correctly.)
In A97 I have a hidden form with a timer that kicks users out. It never gets the focus and yet works fine.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm

Nov 13 '05 #9
"david epsom dot com dot au" <david@epsomdotcomdotau> wrote:
In A97 I have a hidden form with a timer that kicks users out. It nevergets
focus and yet works fine.

It is however 'restored' (which can mess up your 'maximized' forms)
on every timer event if it is hidden,


Hmm, I never realized that. That would explain some interesting problems for which
we've always used a work around. Thanks.

"Also print preview would sometimes not allow the users to run a menu item to export
the report to Excel or others. So you had to right click on the Previewed report to
get some type of internal focus back on the report so they could then export it.
This was also helped by extending the timer to five minutes."
and the VBA IDE temporarily
looses focus on every timer event.


Ayup, and you should be turning timers off when doing VBA stuff anyhow. (Actually I
turn the timer on when the first form loads and it's an MDE.) Otherwise, as I'm sure
you know but lurkers may not, Intellisense gets royally screwed up.

Not sure what that has to do with Manuels problem though.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 13 '05 #10
Sorry, you're absolutely right, my explanation did in fact leave out
something crucial in case #1 (and was unclear in case #2).

In case #1, there are actually at least two processes (two forms in separate
databases accessing the backend), and I was assuming that the "contention"
between the two, heavy drive access to the same database, is what caused the
first process to "die" (i.e. stop firing its timer event): Form A updates
the backend and finishes executing its timer event code; then form B, C, D,
etc. or a user kicks in a few seconds later and also accesses the backend
while changes ordered by form A are being written from cache to the drive;
and this later access, I assumed, is what kills form A's timer code. (In
case #2, there's also contention between two processes, the process making
the copy of the database and the code in the form's timer event.)

But I realize now I don't even know if form A by itself could be responsible
for killing off the timer event, in which case your solution has a chance of
working, IF the cause occurs before the line to give focus is reached. The
vague way I was thinking about it, it was the lengthy disk writing set off
by form A WHEN still executing later (writing from cache to disk) AT THE
TIME the timer event should fire again, is somehow to blame, which would be
AFTER the line to give focus to form A.

I'm glad you brought out those assumptions in my thinking; I'll certainly
test out your suggestion, but it might take me a few days to schedule in an
interruption.

(Also, most of the time, I have no control over when there is heavy disk
access affecting the database, so it would be complicated to ensure any
process causing such access, esp. by the user, also forced all the forms of
the other processes running with timer events to get focus.)
"Salad" <oi*@vinegar.com> wrote in message
news:Zn*****************@newsread2.news.pas.earthl ink.net...
Manuel Lopez wrote:
Catch 22: your code to get the timer event to fire will never run because the code would have to be in the timer event to do any good.
You may be in a catch-22, but my solution handles it. You were talking
about code in the front end to perform some updates. Why would you want
to put my solution in the timer event when you can put it at the end of
the code that performs/initiates the updates?

If my solution won't work then you have not described the problem

correctly.

(The form's
having the focus doesn't PREVENT the problem from happening, but when it
receives the focus AFTER the problem, then the timer event resumes firing.) Of course, I could have another form with another timer event running to
give the focus to the first form, or to call the code at issue directly, but it all gets very messy and leads to other problems (and I have no guarantee the second form's timer would run either).

I have no suggestion as to the "why" but can't you add the command
Docmd.SelectObject acForm, "YourFormName"
at the end of running the VBA code?



"Salad" <oi*@vinegar.com> wrote in message
news:3c****************@newsread1.news.pas.earthli nk.net...
Manuel Lopez wrote:

I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing
until
the
user gives the form focus. (Note that the update itself always


completes
correctly.)

Case 2: If a copy of the entire backend is made to a different


computer,
the form's timer event (from the frontend) again stops firing until the


user
gives the form focus. (This is an entirely differnet frontend than the


one
in case 1. Note that the copy operation itself always completes


correctly.)
Despite being reproducible, this is a hard bug to test, because there
is
no
"crash": the timer event simply seems to stop firing, and the code


operates
normally again (the timer event fires again) once the form at issue (or


even
the vba code window) gets the focus.

I've tried isolating various hardware culprits (ide drivers etc.), with


no
luck. Any suggestions are welcome.
I have no suggestion as to the "why" but can't you add the command
Docmd.SelectObject acForm, "YourFormName"
at the end of running the VBA code?


Nov 13 '05 #11
I didn't see that behavior happen in A97, but you also said you couldn't see
it happen. What do you mean by "feeling" it--you mean the timer event
triggered a focus event but did not actually give any visible focus to the
form? (Re the timer event reset--I did not get a reset in A97, if you mean
that if the timer is set for 1 minute intervals, giving the focus resets it
to waits another minute.)
"david epsom dot com dot au" <david@epsomdotcomdotau> wrote in message
news:40***********************@news.syd.swiftdsl.c om.au...
I don't have 2003 loaded to test, but on A97, the timer
form gets focus every time a timer event happens. (At little
bit strange if you don't expect it: you can't actually see
the form get focus, but you can feel it happening....)
So I guess the timer is reset when the form gets focus.

(david)
"Tom van Stiphout" <to*****@no.spam.cox.net> wrote in message
news:rc********************************@4ax.com...
On Wed, 16 Jun 2004 04:11:03 -0400, "Manuel Lopez"
<ma******************************@deadspam.com> wrote:

Timer events are among the lowest-priority events. Early on, MSFT
realized they would not be able to guarantee that the event would be
delivered to the message queue EXACTLY every <interval> seconds. So
they did something really smart: tell developers not to rely on its
accurate delivery. They also provided for timer event consolidation,
meaning that if several events should have happened during some
lengthy processing, only 1 event would be in the message queue.

So it is "by design" that the timer doesn't tick during some lengthy
processing.

Workarounds include processing smaller chunks at a time, with a
DoEvents statement in between.

-Tom.

I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until
the
user gives the form focus. (Note that the update itself always
completescorrectly.)

Case 2: If a copy of the entire backend is made to a different computer,the form's timer event (from the frontend) again stops firing until the
usergives the form focus. (This is an entirely differnet frontend than the onein case 1. Note that the copy operation itself always completes correctly.)
Despite being reproducible, this is a hard bug to test, because there
is no"crash": the timer event simply seems to stop firing, and the code operatesnormally again (the timer event fires again) once the form at issue (or eventhe vba code window) gets the focus.

I've tried isolating various hardware culprits (ide drivers etc.), with noluck. Any suggestions are welcome.


Nov 13 '05 #12
> What happens if you put a DoEvents in between each recordset update?
Good point (in another words, it could be the failure of the form to
"breathe" for an extended time that kills the timer event--though still a
bug; of course that implies I might not be able to work around it given one
sufficiently "big" update). I'll give it a try next time I get a chance to
alter the code.
Have you tried this in A2002 or A2000 if available to you? The problem is definitely not in A2000 or A2002, but there were other
changes that accompained by switch to A2003, so I'm not 100% sure A2003 is
to blame--I had to violate my ideal of making only one minor change at a
time, each separated by ten years of testing and waiting to see if any bugs
appear.).
In A97 I have a hidden form with a timer that kicks users out. It never gets the focus and yet works fine. Right, I never had this problem in A97.
"Tony Toews" <tt****@telusplanet.net> wrote in message
news:a3********************************@4ax.com... "Manuel Lopez" <ma******************************@deadspam.com> wrote:
I have a puzzling form timer problem that I didn't experience prior to
Access 2003 (though I'm not sure access 2003 is to blame).

Here's the situation: a computer has two access 2003 databases on it, a
frontend and a backend.

Case 1: If vba code on the frontend updates many rows (360,000) on the
backend, a form's timer event (from the frontend) will stop firing until theuser gives the form focus. (Note that the update itself always completes
correctly.)
What happens if you put a DoEvents in between each recordset update?

Have you tried this in A2002 or A2000 if available to you?
Case 2: If a copy of the entire backend is made to a different computer,
the form's timer event (from the frontend) again stops firing until the usergives the form focus. (This is an entirely differnet frontend than the onein case 1. Note that the copy operation itself always completes

correctly.)
In A97 I have a hidden form with a timer that kicks users out. It never gets the focus and yet works fine.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm

Nov 13 '05 #13
"Manuel Lopez" <ma******************************@deadspam.com> wrote:
I had to violate my ideal of making only one minor change at a
time, each separated by ten years of testing and waiting to see if any bugs
appear.).


<chuckle>

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 13 '05 #14

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

Similar topics

9
by: MLH | last post by:
If you have these lines in code on MyForm1... DoCmd OpenForm "MyForm2`" MsgBox "I opened MyForm2" Is it #ALWAYS# true that all form events on MyForm2 will occur before the MsgBox statement...
10
by: Wayne Aprato | last post by:
I have a database that was written in Access 2003 using the Access 2000 file format. When I run the mdb in Access 2003 everything works fine. If I run it in Access 2000 the timer event won't fire...
4
by: Brett | last post by:
Say I have a chat page. The bottom has a FORM text box with send button. The middle and upper part of this page display the chat text. A user submits their chat text and sees it displayed in the...
3
by: aprivate | last post by:
Hi I am having some problem with a form timer. I added a progress bar to increment its value and the timer works when I use form1.showdialog() However when I use form1.show, form1.refresh()...
6
by: Rob | last post by:
This is a curious problem. It seems like it should be quite easy. Of course a timer is used to determine when form should be closed, but how do you consistently reset the timer when the mouse is...
12
by: martin1 | last post by:
All, is there window form refresh property? I try to set up window form refresh per minute. Thanks
7
by: Jayyde | last post by:
Is there any way to accomplish this? The forms _Load event fires off several other small ones that I'd like to track time for. I can't get either the Mdi Parent form's timer _Tick event or the...
10
by: igor | last post by:
I have recently discovered that the system.Timers.Timer from.Net Framework v1.1 is not reliable when used on Windows 2003 server. When incorporated into a Windows Service, the timer_elapsed event...
6
by: ewokspy | last post by:
I have a C# program in 2003 that creates a reminder bubble (windows form) to remind a user to pick up their printout. The bubbles show up fine, and they have 2 buttons, a yes and a snooze. The yes...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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...
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
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...
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,...

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.