is there a vb 6 newsgroup somewhere? 
Author Message
 is there a vb 6 newsgroup somewhere?

How do i find the VB6 newsgroup?  Ive looked all over for
it in the navigation menus on the left of the internet
explorer window but i can't find it.  Only this VB .net
NG.  

Also, while i'm here, if anyone would happen to be able to
answer the question i was gonna post in the VB6 NG that
would be greatly appreciated.

I used this code in trying to make a ship fly around in an
arcade game, but the ship flys in what seems like random
directions.  (in this code direction is a measure of
degrees, 0 being the ship pointing straight up, 90
pointing right, 180 down, 270 left, and so forth)

Ship.Left = Ship.Left + (Sin(direction) * (speed))
Ship.Top = Ship.Top - (Cos(direction) * (speed))

This may definitely be a problem with math as im not very
good with Trig.

THANX!



Fri, 11 Nov 2005 00:49:38 GMT  
 is there a vb 6 newsgroup somewhere?
Hello,


Quote:
> How do i find the VB6 newsgroup?  Ive looked all over for

Set up your news reader (for example Outlook Express), create a new news
account, choose news.microsoft.com as news server. On this server you
will find microsoft.public.vb[.*] newsgroups.

Regards,
Herfried K. Wagner
--
http://www.mvps.org/dotnet



Fri, 11 Nov 2005 00:56:18 GMT  
 is there a vb 6 newsgroup somewhere?
The sin() and cos() functions expect their parameters to be
in radians. To use values in degrees, you must convert them
to radians first. VB 6 does not have a built-in function to do
this. So you have to calculate it yourself.

If I'm not mistaking, it is:  radians = degrees / 180 * pi
And pi is 3.141592654

So you use Sin(angle / 180 * pi) for an angle in degrees.

Kevin



Quote:
> How do i find the VB6 newsgroup?  Ive looked all over for
> it in the navigation menus on the left of the internet
> explorer window but i can't find it.  Only this VB .net
> NG.

> Also, while i'm here, if anyone would happen to be able to
> answer the question i was gonna post in the VB6 NG that
> would be greatly appreciated.

> I used this code in trying to make a ship fly around in an
> arcade game, but the ship flys in what seems like random
> directions.  (in this code direction is a measure of
> degrees, 0 being the ship pointing straight up, 90
> pointing right, 180 down, 270 left, and so forth)

> Ship.Left = Ship.Left + (Sin(direction) * (speed))
> Ship.Top = Ship.Top - (Cos(direction) * (speed))

> This may definitely be a problem with math as im not very
> good with Trig.

> THANX!



Fri, 11 Nov 2005 01:12:46 GMT  
 is there a vb 6 newsgroup somewhere?

Try  comp.lang.basic.visual.misc

Quote:

> How do i find the VB6 newsgroup?  Ive looked all over for
> it in the navigation menus on the left of the internet
> explorer window but i can't find it.  Only this VB .net
> NG.  

> Also, while i'm here, if anyone would happen to be able to
> answer the question i was gonna post in the VB6 NG that
> would be greatly appreciated.

> I used this code in trying to make a ship fly around in an
> arcade game, but the ship flys in what seems like random
> directions.  (in this code direction is a measure of
> degrees, 0 being the ship pointing straight up, 90
> pointing right, 180 down, 270 left, and so forth)

> Ship.Left = Ship.Left + (Sin(direction) * (speed))
> Ship.Top = Ship.Top - (Cos(direction) * (speed))

> This may definitely be a problem with math as im not very
> good with Trig.

> THANX!



Fri, 11 Nov 2005 01:10:56 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. is this newsgroup archived somewhere?

2. Am I in the right Newsgroup?

3. I am learning VB.NET and am wondering....

4. Corruption in .vb file somewhere HELP

5. I am trying to update a record, i am not using data control

6. I am trying to update a record, i am not using data control

7. A setting somewhere Perhaps?

8. Somewhere to learn the standards

9. How do I store a macro somewhere other than normal.dot

10. Word Printing Somewhere Else

11. refer to a label somewhere else..

12. It must be there somewhere..... SqlParameterCollection builder

 

 
Powered by phpBB® Forum Software