Search:

Type: Posts; User: mholmes_3038

Page 1 of 2 1 2

Search: Search took 0.08 seconds.

  1. Replies
    3
    Views
    2,791

    Re: Vb .Net RPg Project

    Likely be in win forms or xna. I think I'll start with win forms. I've done a lot of games with winforms. It can handle it just got use option strict on to get thst smooth draw
  2. Replies
    3
    Views
    2,791

    Vb .Net RPg Project

    Hello everyone, I hope this is the right place to post this request. I’m looking to put a small VB .Net team together to build a fun old school style RPG. Just email me at uokgamesATgmailDOTcom if...
  3. Replies
    0
    Views
    589

    Selling Games + Source

    I need money for child support so I'm selling the rights to some of my software with Vb .Net source code. Not sure if this is the correct place but if you want to buy it make me an offer. Here are...
  4. Replies
    2
    Views
    9,478

    Re: My SQL .Net

    Not sure, if not please move the thread. This is a great tool for testing SQL stuff and this is a pretty good post so if it needs moved please let me know
  5. Replies
    0
    Views
    13,085

    Ant Farms Beta: Seeking Testers

    Looking for testers to help test my new game Ant Farms Gold

    Video:
    http://youtu.be/Tw2AV1NWA0U

    Please PM me or email me at uokgames {AT} g mail {DOT} com if you want to sign up. I'll do my...
  6. Replies
    0
    Views
    2,230

    Partnership

    Seeking a Vb .Net dev to make games with and build a business partnership. I've created several games by my self but I would like to build a MMO or a RPG at some point and I would like to have help...
  7. Replies
    94
    Views
    11,511

    Re: Note to community

    Well on the bright side looks like I've created a good topic to discuss. I've learned a little here and I hope everyone else has picked up something as well. I really joy these discussions. So nice...
  8. Re: Can I build this in ASP or has it already been built?

    how?
  9. Replies
    94
    Views
    11,511

    Re: Note to community

    This is overly wordy commenting but thats just my thoughts. Here is how I comment:


    Private Sub frmGame_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    ...
  10. Replies
    94
    Views
    11,511

    Re: Note to community

    I think the arguments for not commenting our weak to be honest. Most of us appear to have worked in this field for a long time and have seen the horror that awaits if you don’t document or comment. I...
  11. Replies
    4
    Views
    2,059

    Re: Move Object Left

    I got it working thanks for helping.
  12. Replies
    4
    Views
    2,059

    Re: Move Object Left

    Kinda working:


    Public Class frmGame
    Dim Rand As Random = New Random
    Dim BallNumber As Integer

    'Bingo List
    Private Numbers As List(Of Integer)
  13. Replies
    4
    Views
    2,059

    Re: Move Object Left

    Got this so far but keeps showing system.genric list etc. Likely would work if the list only displayed the values and not everything else.


    Public Class frmGame
    Dim Rand As Random = New...
  14. Replies
    4
    Views
    2,059

    Move Object Left

    I want my lbl to move to the left every tick but I want the new number to be centered.

    Code:

    Public Class frmGame
    Dim Rand As Random = New Random
    Dim BallNumber As Integer

    ...
  15. Re: Custom mesh rotating and collision detect

    Hope this helps


    Public Class Form1
    Dim Image1 As Bitmap
    Dim BGround As Bitmap
    Dim angle As Integer
    Dim RunLoop As Boolean

    Private Sub Form1_Load(sender As...
  16. [VB.NET] Re: how to draw thousands of lines quickly to a picturebox

    I guess ill ask the obvious, what is the point of this application?
  17. Replies
    8
    Views
    1,235

    VS 2010 Re: Help with login form

    Just a suggestion use try catch finally. You appear to only close connection if it was sucessful. Should close it no matter what happens to prevent memory leaks and other problems.
  18. Replies
    94
    Views
    11,511

    Re: Note to community

    Well what do you think im making/tools im using? I dont know of any VB tilemap editors so I have to build samples sometimes. I need x,y values/location values to get started. Saves me time instead of...
  19. Replies
    27
    Views
    8,610

    Re: Help with Windows media player events

    Ohh Microsoft when will you learn Silverlight sucks lol Is there a third party open source media player you could use and import ref etc?
  20. Replies
    13
    Views
    1,489

    VS 2010 Re: Another code problem !

    Thansk Shaggy kinda enforced my logic I was thinking of in my head. He could place his variables up top and just alter them via function instead of making a new variable for each function.
  21. Replies
    94
    Views
    11,511

    Re: Note to community

    Yeah i hate generators, they get you in serious trouble and just bad practice to use/depend on. @ the other mark; I like the designer it helps me lay things out visually. Almost everything I build...
  22. Replies
    27
    Views
    8,610

    Re: Help with Windows media player events

    ahh be something like axwindowsmediaplayer.width = screen.primary.workingarea.width and
    same for height I think or at least a shot. Hope that helps, if not try setting it to equal the forums width...
  23. Replies
    13
    Views
    1,489

    VS 2010 Re: Another code problem !

    Sorry but can someone explain why you remake num1, num2 and different version of answer variable? Maybe its just me but not understanding the point in the repetative code. Also going to share The New...
  24. Re: getting run time error 424 or 1004 when using Saveas method

    Grabbed a snippet from my game called "Ant Farms" hope this helps:

    Load:

    'Load Action
    Dim AntFarmGameObject As Game_Settings
    ' Construct an instance of the XmlSerializer...
  25. VS 2010 Re: Use of a text file as code inside a program?

    I guess the question you need to ask your self is what values are static and what ones are dynamic. Create something to allow you to modify anything dynamic and just let the static values set as they...
  26. Replies
    94
    Views
    11,511

    Re: Note to community

    I see most everyones point and I agree for the most part. Their are certain things you dont need to comment. However, their are parts that need commented and often dont get commented. I'm not...
  27. Replies
    27
    Views
    8,610

    Re: Help with Windows media player events

    If your using ax couldn’t you just edit the properties of the video player object via designer?
  28. Can I build this in ASP or has it already been built?

    Hey guys I want to start learning more about ASP and I thought a good way would be to build a posting Forum/board like this one or simple machines. I'm not sure about the mechaincs of how to do it...
  29. VS 2010 Re: Use of a text file as code inside a program?

    What about using/building something you can change or alter variables. I often build myself admin panels for my applications and I allow my self to change values by hand. I hope that made since....
  30. Re: Registry: "Copies the current selection onto the clipboard" syntax.

    Using kebo's suggestion above you could store that information in a temp string or in a hidden text doc and run it later.
  31. Replies
    27
    Views
    8,610

    Re: Help with Windows media player events

    You might try asking around on the MSDN if there is a way to capture the ax media players ticker. It should hold that data somewhere because it too tracks video length. So it should be just a matter...
  32. Replies
    0
    Views
    1,486

    Tut Request

    I've been looking for a How To video tut on how to make a simple Network chat program using Vb 2010 .Net but I can't find one in English. Does anyone have a link or could someone make one/post it....
  33. [VB 6] Re: hey, want helping to make small game breakout

    Feel free to hate me after i say this but programming is taking human language and converting it into math/logic. If you’re not ready to learn new things or learn about physics & math; It’s a good...
  34. Replies
    94
    Views
    11,511

    Re: Note to community

    100% agree with you on documenting as well. For the past few years I've been consulting on the side/updating old Vb6 to .Net and rarely there is a doc created. It is really annoying as well when I...
  35. Replies
    13
    Views
    1,489

    VS 2010 Re: Another code problem !

    Maybe its a little late to suggest this but have you considered using a select case statment with key press or key down instead of the million subs/functions you created and doing something like...
  36. [VB 6] Re: hey, want helping to make small game breakout

    No you don't need trig but it makes it easier and its good pratice. Plus your suggesting a million if statments that could be optimized into a simple formula using basic trig. I personally think its...
  37. Replies
    94
    Views
    11,511

    Re: Note to community

    Sorry but I'm going to stand my ground and say you should always comment your code even if its only a line of code. I often find my self going back and reviewing those little snippets I made my self...
  38. Replies
    27
    Views
    8,610

    Re: Help with Windows media player events

    You could create a "ticker" based on each videos length and use a select case to track which video is playing to track the "ticker" value. Not sure if that relates to your post above but sounds like...
  39. Re: Please explain why these are two 'No No !' commands.

    A lot of people would hate me for saying this but really there is no direct "no no" in development. It’s all a matter of preference and what is good practice or what is viewed as the best/industry...
  40. Replies
    94
    Views
    11,511

    Note to community

    Hello everyone, my name is Micah Holmes and I’ve been developing in Vb .Net for about 5 years professionally as a game developer. Anyway, I've been looking at everyone’s source code and I see a...
Results 1 to 40 of 79
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width