Re: [Audyssey] game file path

2013-05-21 Thread Jim Kitchen

Hi Thomas,

I now have the VB6 code to check to see if the kitchensinc folder in XP is at 
C:\Documents and Settings\Jim kitchen\My Documents\kitchensinc.  If it does not 
exist, it makes the kitchensinc folder and can write the game files to that 
path.  I am hoping of course that the code does find the My Documents path in 
Windows Vista, 7 and 8.  Guess that it is supposed to.

I personally have never used My Documents, but it might be easier for people to 
find the files there in the kitchensinc folder.

BFN

Jim

Wanted: executive assistant: Kitchensinc: profit sharing and benefits.

j...@kitchensinc.net
http://www.kitchensinc.net
(440) 286-6920
Chardon Ohio USA
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] game file path

2013-05-21 Thread Jim Kitchen

Hi Shaun,

Truthfully I was not looking for sympathy.  My Accent synthesizer served me 
well for about a dozen years.  And now the Triple Talk has been running for 
close to that.  I do still like the Triple Talk, but the Accent was so 
mechanical sounding that I do like Eloquence a bit better.  But I especially 
for games, do like having the totally different and great sounding sapi5 
voices.  And over all I am very happy with my old but running fine XP computers.

BFN

Jim

You're just jealous because the voices only talk to me.

j...@kitchensinc.net
http://www.kitchensinc.net
(440) 286-6920
Chardon Ohio USA
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] A See Munkey in my house!

2013-05-21 Thread Jim Kitchen

Hi Jeremy,

Cool! Thanks! that's great!

And thanks for the code.  I look forward to getting a See Munkey from you and 
programming for it.

Thanks again.

BFN

- Original Message -
Jim, you can use the See Munkey with VB6 quite easily.  Just go to components 
and add Microsoft Comm Control 6.0 and add one to your project.  Toss this code 
into form_load just to set things up.

If MSComm1.PortOpen Then MSComm1.PortOpen = False
MSComm1.Settings = 115200,N,8,1
MSComm1.DTREnable = True
MSComm1.RTSEnable = True
MSComm1.RThreshold = 1
MSComm1.SThreshold = 0
'set the active serial port
MSComm1.CommPort = 2
MSComm1.PortOpen = True

When you want to send data to the device you just run the single line of code:
MSComm1.Output = p

All commands you send to the device are a single lowercase character.  v requests the device firmware version, w requests raw sensor data, p 
requests processed sensor data (recommended at first), c is the command to center the device, u,d,l,r,7, 
and 9 are the calibration commands.  And that's it.

When the See Munkey sends data back to your program, it shows up in the OnCOmm 
section of MSComm1.  Because there is a chance that the data won't arrive in a 
single message (just like when doing multiplayer coding for games) I have it 
store incoming messages into a separate variable that will keep being added to 
until it has everything I've requested.

tempm$ = MSComm1.Input
incomingmessage$ = incomingmessage$  tempm$

For when you request the version, the message will be contained between a set 
of brackets ( ).
If InStr(1, incomingmessage$, ()  0 And InStr(1, incomingmessage$, ))  
0 Then 'we have the version
   tempm2$ = Left(incomingmessage$, InStr(1, incomingmessage$, )) - 1) 
   deviceversion$ = Right(tempm2$, Len(tempm2$) - (InStr(1, tempm2$, ())) 
   msgbox The version is   tempm2$

   incomingmessage$ = 
End If

'For when we request processed data, the message is 3 numbers separated by 
commas, held between square brackets [ ].
If InStr(1, incomingmessage$, [)  0 And InStr(1, incomingmessage$, ])  
0 Then 'we have a full piece
   tempm2$ = Left(incomingmessage$, InStr(1, incomingmessage$, ]) - 1) 'full 
reading
   tempm2$ = Right(tempm2$, Len(tempm2$) - (InStr(1, tempm2$, [))) 'full 
reading
   incomingmessage$ = 
   myyaw = Left(tempm2$, InStr(1, tempm2$, ,) - 1): myyaw = Round(myyaw, 2)
   tempm2$ = Right(tempm2$, Len(tempm2$) - InStr(1, tempm2$, ,))
   mypitch = Left(tempm2$, InStr(1, tempm2$, ,) - 1): mypitch = 
Round(mypitch, 2)
   tempm2$ = Right(tempm2$, Len(tempm2$) - InStr(1, tempm2$, ,))
   myroll = Left(tempm2$, InStr(1, tempm2$, ,) - 1): myroll = Round(myroll, 2)
   tempm2$ = Right(tempm2$, Len(tempm2$) - InStr(1, tempm2$, ,))
   'here is where I decide what to do with those 3 values.
   Call process
   'to keep the data coming, I request another set of sensor data from the 
device so that we always have another updated message coming in to update our 
head position.
   sendcom p
   DoEvents
End If

To the non programmers or the non-VB programmers, I apologize for the long code 
themed message.  :D  But yeah, that's basically it.  This example hard codes 
COM port 2 as the port the devices is plugged in to, but that's just because I 
recently found that my auto-detect method is broken and doesn't always get the 
right one.  I hope this made at least some sense Jim, since I don't comment my 
code and tried to just toss a few comments in after I pasted it into the email.


Jim

confucious say: woman who slide down banister, make monkey shine

j...@kitchensinc.net
http://www.kitchensinc.net
(440) 286-6920
Chardon Ohio USA
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] A See Munkey in my house!

2013-05-21 Thread john
Aprone, if you've got the space, it might be fun to try playing 
baseball with it, see how well the device recovers from that type 
of impact.


- Original Message -
From: Jeremy Kaldobsky jer...@kaldobsky.com
To: Gamers Discussion list gamers@audyssey.org
Date sent: Mon, 20 May 2013 14:21:02 -0700 (PDT)
Subject: Re: [Audyssey] A See Munkey in my house!

Shaun, I've put the See Munkey through your test.  :D

www.kaldobsky.com/audiodevices/watertest1.wma

--- On Sun, 5/19/13, shaun everiss sm.ever...@gmail.com wrote:

From: shaun everiss sm.ever...@gmail.com
Subject: Re: [Audyssey] A See Munkey in my house!
To: Gamers Discussion list gamers@audyssey.org
Date: Sunday, May 19, 2013, 10:59 PM
Ok man.
wow this does beat the informercials you hear about some
indestructable device.
only to find out they are made from china or somewhere
cheap.
Things I'd like to try.
dropping it in a pool or spilling coffee or water on it.
I say this because it can happen, my cousin's samsung s3 was
with him at a coffee shop when he dumped by accident his
entire cup of coffee on the device.
it still worked after it but smelt of coffee for weeks.
Ofcause if a real zombie were to appear you could always see
if it would survive being eaten  digested by zombie.
Would be a real good selling point.
this device is behemouth proof! grin
Would probably really sell then.
we don't have a zombie but still this device can survive a
lot.


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to 
gamers-unsubscr...@audyssey.org.

You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of 
the list,

please send E-mail to gamers-ow...@audyssey.org.

---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] game file path

2013-05-21 Thread Phil Vlasak

Hi Jim,
I think you will also have to look for,
C:\users\Jim kitchen\Documents\kitchensinc.

That is where Vista and probably windows 7 and 8 would like to put your 
files.


- Original Message - 
From: Jim Kitchen j...@kitchensinc.net

To: Thomas Ward Gamers@audyssey.org
Sent: Tuesday, May 21, 2013 4:58 AM
Subject: Re: [Audyssey] game file path



Hi Thomas,

I now have the VB6 code to check to see if the kitchensinc folder in XP is 
at C:\Documents and Settings\Jim kitchen\My Documents\kitchensinc.  If it 
does not exist, it makes the kitchensinc folder and can write the game 
files to that path.  I am hoping of course that the code does find the My 
Documents path in Windows Vista, 7 and 8.  Guess that it is supposed to.


I personally have never used My Documents, but it might be easier for 
people to find the files there in the kitchensinc folder.


BFN

Jim

Wanted: executive assistant: Kitchensinc: profit sharing and benefits.

j...@kitchensinc.net
http://www.kitchensinc.net
(440) 286-6920
Chardon Ohio USA
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to 
gamers-unsubscr...@audyssey.org.

You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the 
list,

please send E-mail to gamers-ow...@audyssey.org.


-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1432 / Virus Database: 3162/5841 - Release Date: 05/20/13




---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] game file path

2013-05-21 Thread Jim Kitchen

Hi Phil,

I do believe that is what the code is designed to do.  You know just like the 
%appdata% will take you to the application data path on Windows XP, Vista, 7 
and 8.

Of course that is a problem of coding for a system that you do not have.

I probably need people to test this little program just to see if it works on 
Vista, 7 and 8.

BFN

- Original Message -
Hi Jim,
I think you will also have to look for,
C:\users\Jim kitchen\Documents\kitchensinc.

That is where Vista and probably windows 7 and 8 would like to put your 
files.


- Original Message - 
From: Jim Kitchen j...@kitchensinc.net

To: Thomas Ward Gamers@audyssey.org
Sent: Tuesday, May 21, 2013 4:58 AM
Subject: Re: [Audyssey] game file path



Hi Thomas,

I now have the VB6 code to check to see if the kitchensinc folder in XP is 
at C:\Documents and Settings\Jim kitchen\My Documents\kitchensinc.  If it 
does not exist, it makes the kitchensinc folder and can write the game 
files to that path.  I am hoping of course that the code does find the My 
Documents path in Windows Vista, 7 and 8.  Guess that it is supposed to.


I personally have never used My Documents, but it might be easier for 
people to find the files there in the kitchensinc folder.


BFN

Jim

Wanted: executive assistant: Kitchensinc: profit sharing and benefits.

j...@kitchensinc.net
http://www.kitchensinc.net
(440) 286-6920
Chardon Ohio USA
---


Jim

I'd love to poke her in box.

j...@kitchensinc.net
http://www.kitchensinc.net
(440) 286-6920
Chardon Ohio USA
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] game file path

2013-05-21 Thread Phil Vlasak

Hi Jim,
I have a Vista desktop computer, and my wife has a new Windows 8 laptop.
So I could check it out on both systems.
Funny thing in the instructions for the laptop it says do not use the laptop 
on your lap.

Phil

- Original Message - 
From: Jim Kitchen j...@kitchensinc.net

To: Phil Vlasak Gamers@audyssey.org
Sent: Tuesday, May 21, 2013 8:09 AM
Subject: Re: [Audyssey] game file path



Hi Phil,

I do believe that is what the code is designed to do.  You know just like 
the %appdata% will take you to the application data path on Windows XP, 
Vista, 7 and 8.


Of course that is a problem of coding for a system that you do not have.

I probably need people to test this little program just to see if it works 
on Vista, 7 and 8.


BFN

- Original Message -
Hi Jim,
I think you will also have to look for,
C:\users\Jim kitchen\Documents\kitchensinc.

That is where Vista and probably windows 7 and 8 would like to put your 
files.


- Original Message - 
From: Jim Kitchen j...@kitchensinc.net

To: Thomas Ward Gamers@audyssey.org
Sent: Tuesday, May 21, 2013 4:58 AM
Subject: Re: [Audyssey] game file path



Hi Thomas,

I now have the VB6 code to check to see if the kitchensinc folder in XP 
is at C:\Documents and Settings\Jim kitchen\My Documents\kitchensinc.  If 
it does not exist, it makes the kitchensinc folder and can write the game 
files to that path.  I am hoping of course that the code does find the My 
Documents path in Windows Vista, 7 and 8.  Guess that it is supposed to.


I personally have never used My Documents, but it might be easier for 
people to find the files there in the kitchensinc folder.


BFN

Jim

Wanted: executive assistant: Kitchensinc: profit sharing and benefits.

j...@kitchensinc.net
http://www.kitchensinc.net
(440) 286-6920
Chardon Ohio USA
---


Jim

I'd love to poke her in box.

j...@kitchensinc.net
http://www.kitchensinc.net
(440) 286-6920
Chardon Ohio USA
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to 
gamers-unsubscr...@audyssey.org.

You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the 
list,

please send E-mail to gamers-ow...@audyssey.org.


-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1432 / Virus Database: 3162/5843 - Release Date: 05/21/13




---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] game file path

2013-05-21 Thread Thomas Ward
Hi Jim,

That's a good idea. I've thought about writing my own saved games etc
to My Documents as well as they will be easier to find, edit, and/or
delete if someone removes the game.

Anyway, as long as you get the right environment variable it should
work regardless of what OS the person is running. The registry handles
the location of all personal folders regardless if it is something
like
c:\Documents  Settings\Jim\My Documents
or something like
c:\Users\Thomas\My Documents
on Windows Vista and later.

Cheers!

On 5/21/13, Jim Kitchen j...@kitchensinc.net wrote:
 Hi Thomas,

 I now have the VB6 code to check to see if the kitchensinc folder in XP is
 at C:\Documents and Settings\Jim kitchen\My Documents\kitchensinc.  If it
 does not exist, it makes the kitchensinc folder and can write the game files
 to that path.  I am hoping of course that the code does find the My
 Documents path in Windows Vista, 7 and 8.  Guess that it is supposed to.

 I personally have never used My Documents, but it might be easier for people
 to find the files there in the kitchensinc folder.

 BFN

  Jim

 Wanted: executive assistant: Kitchensinc: profit sharing and benefits.

 j...@kitchensinc.net
 http://www.kitchensinc.net
 (440) 286-6920
 Chardon Ohio USA
 ---
 Gamers mailing list __ Gamers@audyssey.org
 If you want to leave the list, send E-mail to
 gamers-unsubscr...@audyssey.org.
 You can make changes or update your subscription via the web, at
 http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
 All messages are archived and can be searched and read at
 http://www.mail-archive.com/gamers@audyssey.org.
 If you have any questions or concerns regarding the management of the list,
 please send E-mail to gamers-ow...@audyssey.org.


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] game file path

2013-05-21 Thread Trouble
That is because of there heat build up. Also why they give them short 
battery life. There are youtubes of people getting burned from there  laptop.


At 08:48 AM 5/21/2013, you wrote:

Hi Jim,
I have a Vista desktop computer, and my wife has a new Windows 8 laptop.
So I could check it out on both systems.
Funny thing in the instructions for the laptop it says do not use 
the laptop on your lap.

Phil

- Original Message - From: Jim Kitchen j...@kitchensinc.net
To: Phil Vlasak Gamers@audyssey.org
Sent: Tuesday, May 21, 2013 8:09 AM
Subject: Re: [Audyssey] game file path



Hi Phil,

I do believe that is what the code is designed to do.  You know 
just like the %appdata% will take you to the application data path 
on Windows XP, Vista, 7 and 8.


Of course that is a problem of coding for a system that you do not have.

I probably need people to test this little program just to see if 
it works on Vista, 7 and 8.


BFN

- Original Message -
Hi Jim,
I think you will also have to look for,
C:\users\Jim kitchen\Documents\kitchensinc.

That is where Vista and probably windows 7 and 8 would like to put 
your files.


- Original Message - From: Jim Kitchen j...@kitchensinc.net
To: Thomas Ward Gamers@audyssey.org
Sent: Tuesday, May 21, 2013 4:58 AM
Subject: Re: [Audyssey] game file path



Hi Thomas,

I now have the VB6 code to check to see if the kitchensinc folder 
in XP is at C:\Documents and Settings\Jim kitchen\My 
Documents\kitchensinc.  If it does not exist, it makes the 
kitchensinc folder and can write the game files to that path.  I 
am hoping of course that the code does find the My Documents path 
in Windows Vista, 7 and 8.  Guess that it is supposed to.


I personally have never used My Documents, but it might be easier 
for people to find the files there in the kitchensinc folder.


BFN

Jim

Wanted: executive assistant: Kitchensinc: profit sharing and benefits.

j...@kitchensinc.net
http://www.kitchensinc.net
(440) 286-6920
Chardon Ohio USA
---


Jim

I'd love to poke her in box.

j...@kitchensinc.net
http://www.kitchensinc.net
(440) 286-6920
Chardon Ohio USA
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to 
gamers-unsubscr...@audyssey.org.

You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 10.0.1432 / Virus Database: 3162/5843 - Release Date: 05/21/13



---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.



---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] game file path

2013-05-21 Thread Thomas Ward
Hi Shaun,

Sure 1.5 GB should be enough for an XP virtual machine. I've run XP on
a PC with 256 MB of ram at one time so 1.5 should be plenty of ram for
an XP virtual machine. Even with service pack 3 it is nowhere near the
memory hog Vista and Windows 7 are with all that Windows Arrow stuff
enabled. :D

Cheers!

On 5/20/13, shaun everiss sm.ever...@gmail.com wrote:
 well I have a 4gb box with win7 32 bit right now.
 so if I give something like 1.5 to say an xp vm then it should be ok,
 xp has run on 512 mb its a joke but it runs.
 I have xp running on 1 gb this current box does 2gb ram but 1.5 is probably
 ok.


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] game file path

2013-05-21 Thread Thomas Ward
Hi,

You are absolutely right. Running XP in a virtual machine isn't the
same is running it on a PC natively. There is going to be a bit of a
performance hit no matter what you do just because it is running
inside a piece of software like VMWare Player on top of say Windows 7,
and some updates in service pack 3, for whatever reason, seems to
aggravate the situation by slowing the virtual machine down.

Still, over all, I agree with your point about upgrades in general. If
it weren't running in a virtual machine I'd probably put service pack
3 on their for the security fixes, bug fixes, and of course to get
updates like Internet Explorer 8, Windows Media Player 11, and a few
other updates that require service pack 3 to run. I generally upgrade
when and where possible unless there is a specific reason not to do so
such as this case where service pack 3 slows my virtual machine down,
and since I am only playing older Dos and Windows games in the virtual
machine anyway a lot of the updates in service pack 3 don't really
apply to what I'm doing in the virtual machine in the first place. So
I can forgo the updates in that particular instance.

Cheers!


 At 10:49 PM 5/20/2013, you wrote:
I can see some updates of xp not being very fast in a VM. You have
to remember that when running a VM the original op along with the VM
and second op are running. So you have 2 ops running with a
connected interface translating. With out a lot of ram to offset
this it is possible to see conflicts in operation on the VM.
However, running that op as a stand alone op on the box will not run
the same as it does in a VM. upgrades not only fixes bugs and holes.
But also replace bad code with good code and if not left to get
these upgrades can make very many bugs to deal with on latter ops.
There is a reason you can not buy VB6 anymore and that is because
they have made it better. I would also state that it is probably not
able to be installed on win7 and up for dropped dependency and libs.
which would make it less likely to be used. Moving up may be ruff,
but is worth it in the long run from headaches, and there are going
to be many more.
Microsoft just sent out email on win 8.1 as free upgrade for win8.
And yes, they changed a lot in how it runs.


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] A See Munkey in my house!

2013-05-21 Thread Jeremy Kaldobsky
John I thought of that too, haha.  The problem is, I don't have a baseball bat.

--- On Tue, 5/21/13, john jpcarnemo...@comcast.net wrote:

 From: john jpcarnemo...@comcast.net
 Subject: Re: [Audyssey] A See Munkey in my house!
 To: Gamers Discussion list gamers@audyssey.org
 Date: Tuesday, May 21, 2013, 6:29 AM
 Aprone, if you've got the space, it
 might be fun to try playing baseball with it, see how well
 the device recovers from that type of impact.


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] A See Munkey in my house!

2013-05-21 Thread john

You could always just use a big stick.

- Original Message -
From: Jeremy Kaldobsky jer...@kaldobsky.com
To: Gamers Discussion list gamers@audyssey.org
Date sent: Tue, 21 May 2013 09:11:56 -0700 (PDT)
Subject: Re: [Audyssey] A See Munkey in my house!

John I thought of that too, haha.  The problem is, I don't have a 
baseball bat.


--- On Tue, 5/21/13, john jpcarnemo...@comcast.net wrote:

From: john jpcarnemo...@comcast.net
Subject: Re: [Audyssey] A See Munkey in my house!
To: Gamers Discussion list gamers@audyssey.org
Date: Tuesday, May 21, 2013, 6:29 AM
Aprone, if you've got the space, it
might be fun to try playing baseball with it, see how well
the device recovers from that type of impact.


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to 
gamers-unsubscr...@audyssey.org.

You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of 
the list,

please send E-mail to gamers-ow...@audyssey.org.

---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


[Audyssey] i'm back to gaming

2013-05-21 Thread James Bartlett
hI all

My computer got fried like 2 weeks ago. So I've been out of the loop. I 
have like over 2 thousands email in my inbox. So please fergive me if reply to 
a old message. Well it's good to be back.

bfn
James
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] i'm back to gaming

2013-05-21 Thread Chris H

Welcome back and happy gaming!


Chris
E-mail and Facebook:
challswor...@sky.com
Skype:
chrishallsworth7266
Twitter:
http://www.twitter.com/@christopherh40
Find my blog at
challsworth2.wordpress.com

On 21/05/2013 20:04, James Bartlett wrote:

hI all

 My computer got fried like 2 weeks ago. So I've been out of the loop. I 
have like over 2 thousands email in my inbox. So please fergive me if reply to 
a old message. Well it's good to be back.

bfn
James
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.



---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] i'm back to gaming

2013-05-21 Thread Chris H
In addition, I have bought nearly all the games from Draconis 
Entertainment, both for Windows and Mac, along with a game from X-Sight 
Interactive. I plan to purchase Pacman Talks and Super Egg Hunt very soon.



Chris
E-mail and Facebook:
challswor...@sky.com
Skype:
chrishallsworth7266
Twitter:
http://www.twitter.com/@christopherh40
Find my blog at
challsworth2.wordpress.com

On 21/05/2013 20:04, James Bartlett wrote:

hI all

 My computer got fried like 2 weeks ago. So I've been out of the loop. I 
have like over 2 thousands email in my inbox. So please fergive me if reply to 
a old message. Well it's good to be back.

bfn
James
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.



---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] A See Munkey in my house!

2013-05-21 Thread Dakotah Rickard
I know that this would kill the thing, but I'd love to know what
happens if you leave it on an active railroad section for a little
while... *grins*

Signed:
Dakotah Rickard

On 5/21/13, john jpcarnemo...@comcast.net wrote:
 You could always just use a big stick.

  - Original Message -
 From: Jeremy Kaldobsky jer...@kaldobsky.com
 To: Gamers Discussion list gamers@audyssey.org
 Date sent: Tue, 21 May 2013 09:11:56 -0700 (PDT)
 Subject: Re: [Audyssey] A See Munkey in my house!

 John I thought of that too, haha.  The problem is, I don't have a
 baseball bat.

 --- On Tue, 5/21/13, john jpcarnemo...@comcast.net wrote:

  From: john jpcarnemo...@comcast.net
  Subject: Re: [Audyssey] A See Munkey in my house!
  To: Gamers Discussion list gamers@audyssey.org
  Date: Tuesday, May 21, 2013, 6:29 AM
  Aprone, if you've got the space, it
  might be fun to try playing baseball with it, see how well
  the device recovers from that type of impact.


 ---
 Gamers mailing list __ Gamers@audyssey.org
 If you want to leave the list, send E-mail to
 gamers-unsubscr...@audyssey.org.
 You can make changes or update your subscription via the web, at
 http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
 All messages are archived and can be searched and read at
 http://www.mail-archive.com/gamers@audyssey.org.
 If you have any questions or concerns regarding the management of
 the list,
 please send E-mail to gamers-ow...@audyssey.org.

 ---
 Gamers mailing list __ Gamers@audyssey.org
 If you want to leave the list, send E-mail to
 gamers-unsubscr...@audyssey.org.
 You can make changes or update your subscription via the web, at
 http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
 All messages are archived and can be searched and read at
 http://www.mail-archive.com/gamers@audyssey.org.
 If you have any questions or concerns regarding the management of the list,
 please send E-mail to gamers-ow...@audyssey.org.


---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


[Audyssey] Aprone's Audio devices page

2013-05-21 Thread Jeremy Kaldobsky
The webpage is still being worked on, the manuals are still being worked on, 
and the mapping software isn't finished...
*heavy sigh*
But!  People have requested the page link so here it is!
http://www.kaldobsky.com/audiodevices/
If anyone wants to grab one of the devices I have left, there is an online 
store at the bottom of the page.  Please keep in mind that even if you have the 
device in your hands right this moment, you may still have to wait for me to 
work the bugs out of the mapping software and stuff before you can really start 
having fun with it.  Also please look through the questions and answers 
section, because I want to make sure people know what they are getting before 
they spend any money.

This is talking about the See Munkey, by the way.  :)

---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.


Re: [Audyssey] i'm back to gaming

2013-05-21 Thread James Bartlett

hI

   Thank you and happy gaming to you to.

bfn
James

--
From: Chris H christopher...@gmail.com
Sent: Tuesday, May 21, 2013 2:29 PM
To: Gamers Discussion list gamers@audyssey.org
Subject: Re: [Audyssey] i'm back to gaming


Welcome back and happy gaming!


Chris
E-mail and Facebook:
challswor...@sky.com
Skype:
chrishallsworth7266
Twitter:
http://www.twitter.com/@christopherh40
Find my blog at
challsworth2.wordpress.com

On 21/05/2013 20:04, James Bartlett wrote:

hI all

 My computer got fried like 2 weeks ago. So I've been out of the 
loop. I have like over 2 thousands email in my inbox. So please fergive 
me if reply to a old message. Well it's good to be back.


bfn
James
---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to 
gamers-unsubscr...@audyssey.org.

You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the 
list,

please send E-mail to gamers-ow...@audyssey.org.



---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to 
gamers-unsubscr...@audyssey.org.

You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the 
list,

please send E-mail to gamers-ow...@audyssey.org.



---
Gamers mailing list __ Gamers@audyssey.org
If you want to leave the list, send E-mail to gamers-unsubscr...@audyssey.org.
You can make changes or update your subscription via the web, at
http://audyssey.org/mailman/listinfo/gamers_audyssey.org.
All messages are archived and can be searched and read at
http://www.mail-archive.com/gamers@audyssey.org.
If you have any questions or concerns regarding the management of the list,
please send E-mail to gamers-ow...@audyssey.org.