Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Excel with game is stuck in a loop

I'm at wk and we found a Excel file that contains a golf game in it.
Mine works fine, but some associates of mine will open the file and the
game just runs off in an infinite loop. I'm hoping some one here can
help. Thanks, James

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 274
Default Excel with game is stuck in a loop

It's not like you gave a lot of information to go on. Are you talking
about different versions of Excel (say 2000 vs 2003)?

Just guessing - a kludge that sometimes works is to sprinkle some
DoEvents statements in the offending loops. YMMV

HTH

-John Coleman


wrote:
I'm at wk and we found a Excel file that contains a golf game in it.
Mine works fine, but some associates of mine will open the file and the
game just runs off in an infinite loop. I'm hoping some one here can
help. Thanks, James


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Excel with game is stuck in a loop


John Coleman wrote:
It's not like you gave a lot of information to go on. Are you talking
about different versions of Excel (say 2000 vs 2003)?

Just guessing - a kludge that sometimes works is to sprinkle some
DoEvents statements in the offending loops. YMMV

HTH

-John Coleman


wrote:
I'm at wk and we found a Excel file that contains a golf game in it.
Mine works fine, but some associates of mine will open the file and the
game just runs off in an infinite loop. I'm hoping some one here can
help. Thanks, James


Sorry, For minor info. I believe it's 2000. I did not create this file
but just received it through an E-mail. I open it and it works fine,
but a few guys that received it, and open it, then it starts it's
looping thing. I think that it's something to something that messes
with Excel, like there computer has some issue, the file works fine for
me and everyone else I know that plays it. I was hoping someone may
have seen this before and new a fix. or maybe I need to see able a
patch for this. But to see the source or the code to this I don't know
how. I an proficient w/ manually working Excel, the code witting is a
poor average on my part.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Excel with game is stuck in a loop


John Coleman wrote:
It's not like you gave a lot of information to go on. Are you talking
about different versions of Excel (say 2000 vs 2003)?

Just guessing - a kludge that sometimes works is to sprinkle some
DoEvents statements in the offending loops. YMMV

HTH

-John Coleman


wrote:
I'm at wk and we found a Excel file that contains a golf game in it.
Mine works fine, but some associates of mine will open the file and the
game just runs off in an infinite loop. I'm hoping some one here can
help. Thanks, James


Sorry, For minor info. I believe it's 2000. I did not create this file
but just received it through an E-mail. I open it and it works fine,
but a few guys that received it, and open it, then it starts it's
looping thing. I think that it's something to something that messes
with Excel, like there computer has some issue, the file works fine for
me and everyone else I know that plays it. I was hoping someone may
have seen this before and new a fix. or maybe I need to see able a
patch for this. But to see the source or the code to this I don't know
how. I an proficient w/ manually working Excel, the code witting is a
poor average on my part.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 274
Default Excel with game is stuck in a loop

Alt+F11 brings up the VBA editor - but it's probably not worth the
effort to learn some VBA just to (maybe) debug a game. Assuming this is
a popular game, maybe your best bet is to find a VBA programmer who is
familar with the game. Perhaps you can repost with a different title.
For example, I did find a fairly large number of google hits for an
Exel app called "Golf Tracker." If this is your game then maybe you can
post, say both here and in microsoft.public.excel.misc something along
the lines of : Problems with "Golf Tracker"
You might get lucky.

A hint of paranoia: VBA can do some pretty sneaky things in the hands
of a demented programmer. Make sure you have reasons to trust the file
before allowing macros to run.

Sorry I can't be of more help.

-John Coleman

wrote:
John Coleman wrote:
It's not like you gave a lot of information to go on. Are you talking
about different versions of Excel (say 2000 vs 2003)?

Just guessing - a kludge that sometimes works is to sprinkle some
DoEvents statements in the offending loops. YMMV

HTH

-John Coleman


wrote:
I'm at wk and we found a Excel file that contains a golf game in it.
Mine works fine, but some associates of mine will open the file and the
game just runs off in an infinite loop. I'm hoping some one here can
help. Thanks, James


Sorry, For minor info. I believe it's 2000. I did not create this file
but just received it through an E-mail. I open it and it works fine,
but a few guys that received it, and open it, then it starts it's
looping thing. I think that it's something to something that messes
with Excel, like there computer has some issue, the file works fine for
me and everyone else I know that plays it. I was hoping someone may
have seen this before and new a fix. or maybe I need to see able a
patch for this. But to see the source or the code to this I don't know
how. I an proficient w/ manually working Excel, the code witting is a
poor average on my part.




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default Excel with game is stuck in a loop

make sure the analysis toolpak is loaded

--


Gary


wrote in message
ups.com...

John Coleman wrote:
It's not like you gave a lot of information to go on. Are you talking
about different versions of Excel (say 2000 vs 2003)?

Just guessing - a kludge that sometimes works is to sprinkle some
DoEvents statements in the offending loops. YMMV

HTH

-John Coleman


wrote:
I'm at wk and we found a Excel file that contains a golf game in it.
Mine works fine, but some associates of mine will open the file and the
game just runs off in an infinite loop. I'm hoping some one here can
help. Thanks, James


Sorry, For minor info. I believe it's 2000. I did not create this file
but just received it through an E-mail. I open it and it works fine,
but a few guys that received it, and open it, then it starts it's
looping thing. I think that it's something to something that messes
with Excel, like there computer has some issue, the file works fine for
me and everyone else I know that plays it. I was hoping someone may
have seen this before and new a fix. or maybe I need to see able a
patch for this. But to see the source or the code to this I don't know
how. I an proficient w/ manually working Excel, the code witting is a
poor average on my part.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Stuck in a Sub Loop robzrob Excel Worksheet Functions 4 July 19th 08 11:53 PM
Excel with game is stuck in a loop [email protected] Excel Discussion (Misc queries) 2 December 19th 06 08:11 PM
Stuck in a loop CWillis Excel Discussion (Misc queries) 2 June 5th 06 02:49 PM
HELP - Stuck in loop gti_jobert[_92_] Excel Programming 3 April 27th 06 01:41 PM
Excel 97 stuck in calculation loop - maximum cells problem? dl Excel Programming 1 June 25th 04 06:24 PM


All times are GMT +1. The time now is 12:02 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"