Results 1 to 12 of 12

Thread: how do i

  1. #1

    Thread Starter
    New Member oakenfold's Avatar
    Join Date
    Nov 2001
    Location
    Creamfields
    Posts
    6

    how do i

    how do i play vb?

  2. #2
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649

    Re: how do i

    Originally posted by oakenfold
    how do i play vb?
    ????????????
    VB isn't a game.

  3. #3
    Fanatic Member rudvs2's Avatar
    Join Date
    Mar 2001
    Location
    NZ
    Posts
    935
    to play volley ball get yourself a net and 1 other person

    place the net 6ft off the ground

    get a ball (leather) and punch the ball over the net

    object of game dont let the ball touch the ground using only your arms

  4. #4

    Thread Starter
    New Member oakenfold's Avatar
    Join Date
    Nov 2001
    Location
    Creamfields
    Posts
    6
    i'm not taking about volley ball u f#cking dickhead. i'm taking about playin grand turismo 2 on vb6 & and making a game like max payne?

  5. #5
    Fanatic Member rudvs2's Avatar
    Join Date
    Mar 2001
    Location
    NZ
    Posts
    935
    Sorry to offend you mate!!!

    You SHOULD HAVE STATED THAT IN YOUR ORIGINAL POST!!!

    How did we know what you were talking about!!?????

    I would suggest you place this question in the games and graphics forum !!

  6. #6
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649
    Originally posted by oakenfold
    i'm not taking about volley ball u f#cking dickhead. i'm taking about playin grand turismo 2 on vb6 & and making a game like max payne?
    Please keep the language nice in this forum, thank you.
    When you post a question like: "How do I play VB" you should expect to get answers like the one rudvs2 gave you.

    VB isn't a game VB is a programming environment. You don't play games within VB. It's possible to create simple games in VB even though it isn't the best environment to do so.

    Before trying to make a game like grand turismo 2 you must learn the basics of the language.
    What kind of an answer did you expect? The source for the game????

  7. #7

    Thread Starter
    New Member oakenfold's Avatar
    Join Date
    Nov 2001
    Location
    Creamfields
    Posts
    6
    YES the source code would b nice please post it ere

  8. #8
    Conquistador
    Join Date
    Dec 1999
    Location
    Australia
    Posts
    4,527
    he was being sarcastic

    it's not written in VB

    You better calm it down if you want to continue your membership at vbf

  9. #9

    Thread Starter
    New Member oakenfold's Avatar
    Join Date
    Nov 2001
    Location
    Creamfields
    Posts
    6

    flashin txt

    ONLY JOKING B4!!!! I know how do make txt flash but is it possible to make the txt rotate or spin about & is it possible to make a picture flash 2? IBCNUL8RZ

  10. #10
    Conquistador
    Join Date
    Dec 1999
    Location
    Australia
    Posts
    4,527
    don't speak hax0r talk, coz i probably won't be seeing you later

    There's an example on allapi that may hold some relevance..

  11. #11
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538
    http://www.microsoft.com/directx/
    http://msdn.microsoft.com/library/de...entid=28000410

    You can write DirectX games from VB which cover all of this, all the games for the XBox are written in DirectX too.

    You want to get yourself the DirectX SDK (software development kit). You can download the SDK from this page and there are a load tof tutorial papers and samples in with this.

    Good luck

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

  12. #12
    Conquistador
    Join Date
    Dec 1999
    Location
    Australia
    Posts
    4,527
    VB Code:
    1. 'In general section
    2. Private Declare Function CreateFontIndirect Lib "gdi32" Alias "CreateFontIndirectA" (lpLogFont As LOGFONT) As Long
    3. Private Declare Function SelectObject Lib "gdi32" (ByVal hdc As Long, ByVal hObject As Long) As Long
    4. Private Const LF_FACESIZE = 32
    5. Private Type LOGFONT
    6.     lfHeight As Long
    7.     lfWidth As Long
    8.     lfEscapement As Long
    9.     lfOrientation As Long
    10.     lfWeight As Long
    11.     lfItalic As Byte
    12.     lfUnderline As Byte
    13.     lfStrikeOut As Byte
    14.     lfCharSet As Byte
    15.     lfOutPrecision As Byte
    16.     lfClipPrecision As Byte
    17.     lfQuality As Byte
    18.     lfPitchAndFamily As Byte
    19.     lfFaceName(LF_FACESIZE) As Byte
    20. End Type
    21. 'In form
    22. Private Sub Form_Load()
    23.     'KPD-Team 1998
    24.     'URL: [url]http://www.allapi.net/[/url]
    25.     'E-Mail: [email][email protected][/email]
    26.  
    27.     Dim RotateMe As LOGFONT
    28.     'Set graphic-mode to 'persistent graphic'
    29.     Me.AutoRedraw = True
    30.     'Rotate degrees
    31.     Deg = 270
    32.     'Size (in points)
    33.     Size = 20
    34.     'Set the rotation degree
    35.     RotateMe.lfEscapement = Deg * 10
    36.     'Set the height of the font
    37.     RotateMe.lfHeight = (Size * -20) / Screen.TwipsPerPixelY
    38.     'Create the font
    39.     rFont = CreateFontIndirect(RotateMe)
    40.     'Select the font n the Form's device context
    41.     Curent = SelectObject(Me.hdc, rFont)
    42.     'Print some text ...
    43.     Me.CurrentX = 500
    44.     Me.CurrentY = 200
    45.     Me.Print ":-)"
    46. End Sub

    Don't know if it's relevant, got it off allapi.net

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width