Zoomcat
PC Hardware Forum Index PC Hardware
Dicussion of PC hardware and peripherals
 
 FAQFAQ   MemberlistMemberlist    RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
 
Google
 
Web hwtalk.net
Zoomcat

 
Post new topic   Reply to topic    PC Hardware Forum Index -> Digital Cameras
Author Message
F G Marshall
Guest





Posted: Fri Oct 29, 2004 4:27 pm    Post subject: Zoomcat Reply with quote

Zoomcat are you here?

will ( http://www.geocities.com/zoomkat/byte.htm ) echoo work on Win2000?

Frank
Back to top
Si Ballenger
Guest





Posted: Fri Oct 29, 2004 9:57 pm    Post subject: Re: Zoomcat Reply with quote

On Fri, 29 Oct 2004 13:27:53 +0100, F G Marshall
<fgm@sunspot.co.uk> wrote:

Quote:
Zoomcat are you here?

will ( http://www.geocities.com/zoomkat/byte.htm ) echoo work on Win2000?

Frank

Echoo works on XP pro, so it should work on 2K. Below is a cam
connected to an XP machine that uses echoo to write the bytes to
the servo controller.

http://www.geocities.com/zoomkat/ezservo1.htm
Back to top
F G Marshall
Guest





Posted: Sat Oct 30, 2004 5:01 pm    Post subject: Re: Zoomcat Reply with quote

On Fri, 29 Oct 2004 18:57:51 +0100, Si Ballenger wrote
(in message <41828397.53051734@news.comporium.net>):

Quote:
On Fri, 29 Oct 2004 13:27:53 +0100, F G Marshall
fgm@sunspot.co.uk> wrote:

Zoomcat are you here?

will ( http://www.geocities.com/zoomkat/byte.htm ) echoo work on Win2000?

Frank

Echoo works on XP pro, so it should work on 2K. Below is a cam
connected to an XP machine that uses echoo to write the bytes to
the servo controller.

http://www.geocities.com/zoomkat/ezservo1.htm


Thanks!

It works now on Win 2000 - many thanks to Zoomcat!!!

Can anyone say how to transfer data from a web page click to a Visual Basic 6
program justa as Echoo pics up data and acts on it?
Back to top
Si Ballenger
Guest





Posted: Sat Oct 30, 2004 8:11 pm    Post subject: Re: Zoomcat Reply with quote

On Sat, 30 Oct 2004 14:01:56 +0100, F G Marshall
<fgm@sunspot.co.uk> wrote:


Quote:
Zoomcat are you here?

will ( http://www.geocities.com/zoomkat/byte.htm ) echoo work on Win2000?

Frank

Echoo works on XP pro, so it should work on 2K. Below is a cam
connected to an XP machine that uses echoo to write the bytes to
the servo controller.

http://www.geocities.com/zoomkat/ezservo1.htm


Thanks!

It works now on Win 2000 - many thanks to Zoomcat!!!

Can anyone say how to transfer data from a web page click to a Visual Basic 6
program justa as Echoo pics up data and acts on it?


Most web data is passed using the query_string environmental
variable, which is set by the web server and collected by the
program executed. In the below qbasic example (VB should be
somewhat similar), the web server is told to set the "mydata" as
the "query_string" environmental varable, then the server starts
"myprogram.exe". One of the first things in "myprogram.exe" is
the second line below where it looks for and gets the
"query_string" environmental variable and sets it to "a$".
"Myprogram.exe" now does what ever it needs to do with the "a$".
The web server then takes the output from "myprogram.exe" and
sends it back to the web brouser. The bottom link is a page that
shows how to use qbasic (VB may be similar) to control the
parallel port data pins and read the parallel port status pins
via a web link.

http://127.0.0.1/cgi-bin/myprogram.exe?mydata

a$ = ENVIRON$("QUERY_STRING")

http://www.geocities.com/zoomkat/status.htm
Back to top
F G Marshall
Guest





Posted: Mon Nov 01, 2004 6:41 pm    Post subject: Re: Zoomcat Reply with quote

On Sat, 30 Oct 2004 16:11:31 +0000, Si Ballenger wrote
(in message <4183bd2f.133319994@news.comporium.net>):

Quote:
On Sat, 30 Oct 2004 14:01:56 +0100, F G Marshall
fgm@sunspot.co.uk> wrote:


Zoomcat are you here?

will ( http://www.geocities.com/zoomkat/byte.htm ) echoo work on Win2000?

Frank

Echoo works on XP pro, so it should work on 2K. Below is a cam
connected to an XP machine that uses echoo to write the bytes to
the servo controller.

http://www.geocities.com/zoomkat/ezservo1.htm


Thanks!

It works now on Win 2000 - many thanks to Zoomcat!!!

Can anyone say how to transfer data from a web page click to a Visual
Basic 6
program justa as Echoo pics up data and acts on it?


Most web data is passed using the query_string environmental
variable, which is set by the web server and collected by the
program executed. In the below qbasic example (VB should be
somewhat similar), the web server is told to set the "mydata" as
the "query_string" environmental varable, then the server starts
"myprogram.exe". One of the first things in "myprogram.exe" is
the second line below where it looks for and gets the
"query_string" environmental variable and sets it to "a$".
"Myprogram.exe" now does what ever it needs to do with the "a$".
The web server then takes the output from "myprogram.exe" and
sends it back to the web brouser. The bottom link is a page that
shows how to use qbasic (VB may be similar) to control the
parallel port data pins and read the parallel port status pins
via a web link.

http://127.0.0.1/cgi-bin/myprogram.exe?mydata

a$ = ENVIRON$("QUERY_STRING")

http://www.geocities.com/zoomkat/status.htm



Thanks.

As I understand it most of Zommcat's programs are on win98 and qbasic.exe
will not work on win2000.
I suppose ENVIRON is a system level variable available to any program
including VB

as in

PRINT #1, "<P>Your IP address: "; ENVIRON$("REMOTE_ADDR"); "<BR>"

(none of this in my VB text book!)

I wonder if anyone in this group has an example of a Visual Basic 6 program
that picks up and uses the data returned from a web page on remote browser.

I think VB can even run old qbasic code "as is" - I will try it out
Back to top
Si Ballenger
Guest





Posted: Tue Nov 02, 2004 5:39 am    Post subject: Re: Zoomcat Reply with quote

On Mon, 1 Nov 2004 13:41:51 +0000, F G Marshall
<fgm@removeme_sunspot.co.uk> wrote:

Quote:
As I understand it most of Zommcat's programs are on win98 and qbasic.exe
will not work on win2000.

Qbasic doesn't seem to be able to "open" a com port on XP, but
others have reported using the compiled qbasic application on
win2K machines works without problems. the interpeted qbaisc
programs may also work. As for the parallel port, on NT/2K/XP
machines, an application such as userport needs to be used to set
the registry to allow access to the parallel port hardware. No
hardware access problems on win95/98.

Quote:
I suppose ENVIRON is a system level variable available to any program
including VB

as in

PRINT #1, "<P>Your IP address: "; ENVIRON$("REMOTE_ADDR"); "<BR>"

(none of this in my VB text book!)

I wonder if anyone in this group has an example of a Visual Basic 6 program
that picks up and uses the data returned from a web page on remote browser.

I think VB can even run old qbasic code "as is" - I will try it out

A good group to ask VB serial port questions is in the
microsoft.public.vb.controls news group. Doing a google search
for VB environ$ pulls up some examples.
Back to top
F G Marshall
Guest





Posted: Wed Nov 02, 2005 5:28 am    Post subject: Re: Zoomcat Reply with quote

On Fri, 29 Oct 2004 18:57:51 +0100, Si Ballenger wrote
(in message <41828397.53051734@news.comporium.net>):

Quote:
On Fri, 29 Oct 2004 13:27:53 +0100, F G Marshall
fgm@sunspot.co.uk> wrote:

Zoomcat are you here?

will ( http://www.geocities.com/zoomkat/byte.htm ) echoo work on Win2000?

Frank

Echoo works on XP pro, so it should work on 2K. Below is a cam
connected to an XP machine that uses echoo to write the bytes to
the servo controller.

http://www.geocities.com/zoomkat/ezservo1.htm


As usual - a few minutes after the post I got it to work on Win 2000. This
method of talking to the serial port is new to me, I now have a web page that
can control and see my 2 axis cam like Zoomcat - many thanks to him if he
turns up!!

What I reallly would like is to send data from a web page (say from a slider
control) and have Visual Basic 6 handle the data. Echoo will pick up the data
from web clicks on the remote web page - how can VB do the same?

I am still "lesson 1" standard - any pointers to (free) utilities or info
much appreciated.

Also - how does Zoomcat send sound with his in-browserpage pictures?

Also - my PC browsers can see my streamed video but not my Macintosh
browsers,,, both can see the Zoomcat stream....odd
Back to top
Si Ballenger
Guest





Posted: Wed Nov 02, 2005 6:46 am    Post subject: Re: Zoomcat Reply with quote

On Tue, 1 Nov 2005 23:28:56 +0000, F G Marshall
<fgm@removeme_sunspot.co.uk> wrote:

Quote:
On Fri, 29 Oct 2004 18:57:51 +0100, Si Ballenger wrote
(in message <41828397.53051734@news.comporium.net>):

On Fri, 29 Oct 2004 13:27:53 +0100, F G Marshall
fgm@sunspot.co.uk> wrote:

Zoomcat are you here?

will ( http://www.geocities.com/zoomkat/byte.htm ) echoo work on Win2000?

Frank

Echoo works on XP pro, so it should work on 2K. Below is a cam
connected to an XP machine that uses echoo to write the bytes to
the servo controller.

http://www.geocities.com/zoomkat/ezservo1.htm


As usual - a few minutes after the post I got it to work on Win 2000. This
method of talking to the serial port is new to me, I now have a web page that
can control and see my 2 axis cam like Zoomcat - many thanks to him if he
turns up!!

What I reallly would like is to send data from a web page (say from a slider
control) and have Visual Basic 6 handle the data. Echoo will pick up the data
from web clicks on the remote web page - how can VB do the same?

I am still "lesson 1" standard - any pointers to (free) utilities or info
much appreciated.

Also - how does Zoomcat send sound with his in-browserpage pictures?

The best/cheapest way is to go to ebay and search for Ivista. You
can get the video/audio software for ~$10.

Quote:
Also - my PC browsers can see my streamed video but not my Macintosh
browsers,,, both can see the Zoomcat stream....odd

That probabbly depends on the streaming software you are using.
Webcam32 has some java applet issues with the new Sun java.
Back to top
 
Post new topic   Reply to topic    PC Hardware Forum Index -> Digital Cameras All times are GMT
Page 1 of 1

 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum




Electronics VoIP DSP
New Topics php BB