473,698 Members | 2,360 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

"This Action Will Reset Your Project"....whi le editing code?

I don't *think* anything's running.... I haven't interrupted the code
or anything.

But the message seems to imply that some process really is running.
Anybody been here?
Nov 13 '05 #1
7 4794
PeteCresswell wrote:
I don't *think* anything's running.... I haven't interrupted the code
or anything.

But the message seems to imply that some process really is running.
Anybody been here?


It's "them". "They" are watching you. Be careful...

8)
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Whatcha doin?" - Ditto "TIM-MAY!!" - Me
Nov 13 '05 #2
Timer event ?

Arno R

"PeteCressw ell" <x@y.z.Invali d> schreef in bericht news:j2******** *************** *********@4ax.c om...
I don't *think* anything's running.... I haven't interrupted the code
or anything.

But the message seems to imply that some process really is running.


Anybody been here?

Nov 13 '05 #3
Per Arno R:
Timer event ?


That was my first reaction - and, indeed, one of my forms runs a timer event.

But if that form is closed, shouldn't it's Timer event be out of the picture?
--
PeteCresswell
Nov 13 '05 #4
PeteCresswell <x@y.z.Invali d> wrote in
news:j2******** *************** *********@4ax.c om:
I don't *think* anything's running.... I haven't interrupted the
code or anything.

But the message seems to imply that some process really is
running.

Anybody been here?


Yes. As far as I can tell, every version of Access from A2K on is
f*cked up in regard to the way code executes. It certainly behaves
completely differently from what I've always experienced with A97.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #5
PeteCresswell wrote:
I don't *think* anything's running.... I haven't interrupted the code
or anything.

But the message seems to imply that some process really is running.
Anybody been here?


There may be no code running at the time but there was and there will be
and any global variables that are normally carried from back then to the
next time will be reset.

--
[Oo=w=oO]

Nov 13 '05 #6
David W. Fenton wrote:
PeteCresswell <x@y.z.Invali d> wrote in
news:j2******** *************** *********@4ax.c om:

I don't *think* anything's running.... I haven't interrupted the
code or anything.

But the message seems to imply that some process really is
running.

Anybody been here?

Yes. As far as I can tell, every version of Access from A2K on is
f*cked up in regard to the way code executes. It certainly behaves
completely differently from what I've always experienced with A97.


You mean it just reset the code without warning?

--
[Oo=w=oO]

Nov 13 '05 #7
Trevor Best <no****@besty.o rg.uk> wrote in
news:42******** **************@ news.zen.co.uk:
David W. Fenton wrote:
PeteCresswell <x@y.z.Invali d> wrote in
news:j2******** *************** *********@4ax.c om:
I don't *think* anything's running.... I haven't interrupted the
code or anything.

But the message seems to imply that some process really is
running.

Anybody been here?


Yes. As far as I can tell, every version of Access from A2K on is
f*cked up in regard to the way code executes. It certainly
behaves completely differently from what I've always experienced
with A97.


You mean it just reset the code without warning?


No. What I mean is that it reports code still executing in
circumstances where none is executing. I've never been able to
figure it out (though I finally figured out why that happens with
forms opened as acDialog; d'oh; I'm talking about non-dialogs,
though, and no timers).

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #8

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

Similar topics

4
11157
by: Armel Asselin | last post by:
Hello, I'm working on a Javascript interpreter; when I execute this code I cannot figure out why the inner "c" function returns the input widget as "this"... could someone tell ?? <input type=button onclick=" function myobject(a) { function c() { return this; } var prop1=a; this.youpla = c(); } var i = new myobject();
10
2150
by: solosnake | last post by:
Whilst browsing Flipcode I noticed this code: class CConsole: public I_TextOutput { public: ... void Release() { delete this; } ... };
3
1572
by: Aryeh M. Friedman | last post by:
Why is the value of "Instance" whacked in the following code. Note this only happens in Graph::*Wrapper. Also please note that if I hardcode WalkFunc and PrintFunct to be BredthFirst and BredthFirstPrint and make both approriate func ptrs it works fine. void print(void *data); #define R 'r'-'r' #define S 's'-'r'
1
2682
by: PeteCresswell | last post by:
I'm working on a new report in an MS Access DB. The first anomaly was a message "This action will reset the current code in break mode." when the report was run. Seems TB something about my Detail1_Print(): if I answer "No" to the dialog the report just runs. If I answer "Yes", it pops a new dialog seemingly at every line. Code is below. The real zinger, however, started on Friday. When I run the report in question somehow MS...
5
2472
by: ChrisB | last post by:
Hello: An object that is a field in another object has a constructor that requires a reference to the containing object: // object fields ChildObject childObject = new ChildObject(this); When attempting to compile this code, a message is returned that states that the "this" keyword is not available in this context.
7
2241
by: relient | last post by:
Question: Why can't you access a private inherited field from a base class in a derived class? I have a *theory* of how this works, of which, I'm not completely sure of but makes logical sense to me. So, I'm here for an answer (more of a confirmation), hopefully. First let me say that I know people keep saying; it doesn't work because the member "is a private". I believe there's more to it than just simply that... Theory: You inherit,...
11
3075
by: Joseph S. | last post by:
Hi all, how do I avoid typing the keyword "$this->" every time I need to reference a member of a class inside the class? (coming from a world of cozy auto-complete enabled Java / .Net IDEs I find it a bit annoying) TIA, JS
10
4794
by: craig.keightley | last post by:
I am trying to get the next row within a loop for a script i am developing... I need to display a final table row within the table that i have displayed on the page, but i only want to show it if value of the current field is not the same value of the next row. eg:
1
1766
by: piotr.korzeniewski | last post by:
I'm really confused with this one, first please take a look at code below: function Class(obj) { if(!obj) obj = new Object(); obj.Extend = function(obj) { this.__parent__ = new Object();
0
8678
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
8609
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
9030
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...
1
8899
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
4371
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
4621
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3052
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2333
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2007
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.