Re: Is learning visual basic worth it?

2015-09-04 Thread AudioGames . net Forum — Developers room : Alan via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Just curious, all of those libraries provide accessible GUIs? I mean, controls working well using a screen reader. Years ago, I tried some of them (though I cannot remember whitch ones) and usually I was not able to interact properly with the reated windows controls, due the fact that they wasn't using windows apis.

URL: http://forum.audiogames.net/viewtopic.php?pid=230568#p230568




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-09-04 Thread AudioGames . net Forum — Developers room : frastlin via Audiogames-reflector


  


Re: Is learning visual basic worth it?

For most games you don't really want a program to use Window's API.PyQt uses Qt which uses IAccessible2WXPython uses WXWidgets which uses native APIs on each OS (NVDA uses WXPython for example)The others are just OpenGL contexts.I wish there was some way to register your OpenGL Widgets easily to be native Widgets, but currently that has never been developed.But just to give you an idea, I am pretty sure the only native element Swamp uses is the edit box you type in to talk to people on the channels.Shades of Doom doesn't use anyEntombed only uses them if you wish to type in your character's name (I think)and the only game thing that uses native UI elements is VIPMud (And there they only use multiline edit boxes, menuBar, Menu, OK Dialogue and single line edit fields.It is way way way easier for libraries to use OpenGL and be cross-platform. Not that many games are cross-platform, so being able to say that 
 you are is worth not having a couple UI Elements.Also, panda3d's collision detection, solid state machines, built-in fmod and OpenAL support, AI library and web browser plugin (You can play panda 3d games in the web browser) make it more than useful for games.Thus saying, I am using QT for now because I do want native UI Widgets and I would like to move to IOS sometime soon.

URL: http://forum.audiogames.net/viewtopic.php?pid=230610#p230610




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-09-03 Thread AudioGames . net Forum — Developers room : severestormsteve1 via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Let's see, just for craps and giggles, how we can replicate this in pure basic because that's my native language. xd.initSprite()initKeyboard()openWindow(0, 0, 0, 0, 0, "Little hello world program.")openWindowedScreen(0, 0, 0, 1000, 1000)procedure AppMain()messageRequester("hello", "hello dudes. press ok, and that will take you to the main loop. rofl.")repeatevent = windowEvent()examineKeyboard()if KeyboardReleased(#pb_key_m)messageRequester("hello", "hello again!")endIfif KeyboardReleased(#pb_key_c)endendIfdelay(5) ;that line isn't even really necessary for an app like thisuntil event = #pb_event_closeWindowendProcedureAppMain()

URL: http://forum.audiogames.net/viewtopic.php?pid=230412#p230412




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-09-03 Thread AudioGames . net Forum — Developers room : Alan via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Interesting, first contact with pure basic... THanks.

URL: http://forum.audiogames.net/viewtopic.php?pid=230488#p230488




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-09-03 Thread AudioGames . net Forum — Developers room : frastlin via Audiogames-reflector


  


Re: Is learning visual basic worth it?

There are probably near 50 python libraries for making GUIs. Some more that have not been said are:Kivy (for IOS, Android, Windows, OSX and Linux)PyQt (For IOS, Android, Windows, Linux, OSX)WXPython (for Windows, Linux and OSX)panda3d (for Linux, Windows and OSX)tkinter (Windows, OSX, Windows)PySide (I'm not sure if you get IOS and Android, but for sure Windows, Linux and OSX)Then what's been said before:pyglet (Windows, OSX and Linux)pygame (Windows, OSX and Linux)PySDL1 and 2 (Windows, Linux and OSX)Cocos2d (Not sure about IOS and Android, but for sure Windows, Linux and OSX)I think part of the reason why people have not developed any audio games in python is that there are so many choices for libraries that is kind of over-whelming.Here are my choices:PyQt5 is probably the most versatile, but it is GPL and Qt Itself is LGPL. So if you would like to sell your game it will cost l
 ike $500 for a life-time license on the PC and I think $6000 for a life-time license for Qt and PyQt. (You only need the Qt Licence if you are going to bundle it as a single executable, I don't know if you can make an app that is several files on IOS)On top of that, the documentation is kind of complex, the API is only in C++.But there are standard widgets like buttons, edit boxes, combo boxes, menus and whatnot. There is also a web browser.panda3d is just for Windows, Linux and OSX, but it is for games and is free. It is great, but does not have standard widgets and does not have a port to IOS. It is made for games though and the documentation is really good.Both these libraries have both a C++ and python version.Here is an example in panda3d:from direct.showbase.ShowBase import ShowBasefrom accessible_output import speechspk = speech.Speaker().outputapp = ShowBase()app.accept('space', spk, ["Hello 
 world"])app.run()Here is the same in PyQt5 (*note the above was using python2, the next is using python3, so accessible_output2 is used)import sys
from PyQt5.QtWidgets import QApplication, QWidget
import accessible_output2.outputs.auto
spk = accessible_output2.outputs.auto.Auto().output

class Window(QWidget):
def keyPressEvent(self, key):
if key.text() == " ":
spk("Hello world")

app = QApplication(sys.argv)
window = Window()
window.show()
sys.exit(app.exec_())

URL: http://forum.audiogames.net/viewtopic.php?pid=230518#p230518




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-09-02 Thread AudioGames . net Forum — Developers room : Alan via Audiogames-reflector


  


Re: Is learning visual basic worth it?

I there!Well, I am curious and like to experiment, so, after reading this discusion, I wondered: why so many people recommens python and not visual basic?It's a language that depens on iddentation, and last night I had a nightmare about debugging 1000 lines trying to figure out how many spaces and tabs are on each line So, let's give visual basic a try.The results? In 15-20 minutes I finished a rendering window (without using windows forms), a  basic gameloop, whitch accepts keyboard input, so if you press M, it shows a message from a string variable, and if you press C, the game closes.It took 15-20 minutes (with pauses to research how to declare variables and include refferences, etc), and there are no more than 20-30 lines.Note: I used sfml (an external media library), and tried to minimize .net framework elements.It's my
  first experience with visual basic, so, my opinion is that you can use it to make games easily (though intelli-sense works much better with c#). If you know a bit of basic, even the old one, go ahead, it's easy and your way will be much more easy with all that previous knowledge.Some advantages:Visual basic has a good readability, no {}, no semicolons, and statements use some english words instead.Fast and easy integration with .net framework (now open source).A free accessible ide (visual studio community 2013, or 2015, though it still have some accessibility bugs).Fast and easy windows form designer, etc.I can post the  code here if anyone is interested. If someone could repeat the experiment using python we could compare results.Have a nice day!

URL: http://forum.audiogames.net/viewtopic.php?pid=230203#p230203




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-09-02 Thread AudioGames . net Forum — Developers room : Alan via Audiogames-reflector


  


Re: Is learning visual basic worth it?

I there!Well, I am curious and like to experiment, so, after reading this discusion, I wondered: why so many people recommens python and not visual basic? Let's give it a try.The results? In 15-20 minutes I finished a rendering window (without using windows forms), a  basic gameloop, whitch accepts keyboard input, so if you press M, it shows a message from a string variable, and if you press C, the game closes.It took 15-20 minutes (with pauses to research how to declare variables and include refferences, etc), and there are no more than 20-30 lines.It's my first experience with visual basic, so, my opinion is that you can use it to make games easily (though intelli-sense works much better with c#). If you know a bit of basic, even the old one, go ahead, it's easy and your way will be much more easy with all that previous knowledge.I can post the  code here if anyone is interested. If someone could repeat the experiment u
 sing python we could compare results.Have a nice day!

URL: http://forum.audiogames.net/viewtopic.php?pid=230203#p230203




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-09-02 Thread AudioGames . net Forum — Developers room : severestormsteve1 via Audiogames-reflector


  


Re: Is learning visual basic worth it?

post code please. if it is possible, please create a basic menu, and a start game option that lets you walk around on a little map. I don't doubt you I'm just curious as well as to what it is capable of. Because of the form designer I was thinking of building a small autosaving notepad in it with some basic tools on it like s quad word, but having forms makes it easier than it is in pure basic.

URL: http://forum.audiogames.net/viewtopic.php?pid=230256#p230256




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-09-02 Thread AudioGames . net Forum — Developers room : Alan via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Good job, magurp244, those comparisons are so useful (at least for me).Thanks

URL: http://forum.audiogames.net/viewtopic.php?pid=230305#p230305




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-09-02 Thread AudioGames . net Forum — Developers room : Alan via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Hi there,Sorry, Steve, but as I said, visual basic is totally new for me and I have no time to code examples (anyway, my examples will not be more useful, my visual basic knowledge is near to 0).THis is what I tried yesterday:1. CCreates and shows a window.2. Subscribe two methods to their events, and each method is declared below.3. WHen you press m: displays a message.4. when you press c, the application closes.Please, note that this code could be buggy and probably a real visual basic developer will never forget me for doing this... thing.You need references to sfml library on your project in order to make it work:Imports SFML.SystemImports SFML.WindowModule MainModule    Dim MainWindow As New Window(SFML.Window.VideoMode.DesktopMode, "Hello, world")    Sub Main()        AddHandler MainWindow.KeyPressed, AddressOf OnKeyPressedEvent
 p;       AddHandler MainWindow.Closed, AddressOf OnClosedEvent        MainWindow.Display()        While True            MainWindow.DispatchEvents()        End While    End Sub    Public Sub OnClosedEvent(source As Object, e As EventArgs)        MainWindow.Close()    End Sub    Public Sub OnKeyPressedEvent(source As Object, e As KeyEventArgs)        Select Case e.Code            Case Keyboard.Key.M                MsgBox("Hello, world, again!")            Case Keyboard.Key.C                CloseWindow()        End Select    End Su
 bEnd Module

URL: http://forum.audiogames.net/viewtopic.php?pid=230266#p230266




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-09-02 Thread AudioGames . net Forum — Developers room : magurp244 via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Replicated it in a few minutes using Pyglet/Python. Same function, opens window, M to post "hello world" text to screen, C to close.import pyglet
from pyglet.window import key

class Example(pyglet.window.Window):
def __init__(self):
super(Example, self).__init__(640, 480, resizable=False, fullscreen=False, caption="Example")
self.clear()

self.key_input = []

pyglet.clock.schedule_interval(self.update, .01)

def update(self,dt):
if 'M press' in self.key_input:
pyglet.text.Label('hello world!',x=20,y=20).draw()

if 'C press' in self.key_input:
self.close()

self.key_input = []

def on_key_press(self,symbol,modifiers):
self.key_input.append(key.symbol_string(symbol) + " press")

if __name__ == '__main__':
window = Example()
pyglet.app.run()

URL: http://forum.audiogames.net/viewtopic.php?pid=230295#p230295




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-30 Thread AudioGames . net Forum — Developers room : Kyleman123 via Audiogames-reflector


  


Re: Is learning visual basic worth it?

RSGames is written in python. but thats not a very good example of a good game. its very laggy. but that shouldnt turn you off from python. python shouldnt be that laggy and no one can figure out why their game lags so much. other games are soundRTS, im working on a monopoly game, and camlorn is working on several projects one of which is a shades of doom MMO. it is very possible to write audiogames in python. it can be tricky wading through all of the information for visuals but you get little bits of good info out of it here and there. but youll have to learn the language first. i highly recommend that learn python the hard way tutorial i linked to in my first post. its how i learned and what i send to anyone who wants to learn how to code.

URL: http://forum.audiogames.net/viewtopic.php?pid=229820#p229820




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-30 Thread AudioGames . net Forum — Developers room : dhruv via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Hello,Learn Python The Hard Way might not be right for you. It assumes that the reader is a beginner, not only to Python, but to programming as well. While this may be right for some, I think, as steve has programmed before, its probably not entirely right for him. May I recommend learning python with Mark lutz in stead? if you like lengthy, in-depth books, you cant have anything better than learning python.Then again, if you like a quick and dirty introduction, this is good 

URL: http://forum.audiogames.net/viewtopic.php?pid=229832#p229832




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-29 Thread AudioGames . net Forum — Developers room : severestormsteve1 via Audiogames-reflector


  


Re: Is learning visual basic worth it?

The only problem Id have with learning python is that Ive been told that there is only 1 library for python games, and that library has many bugs, but if that was wrong Id be happy to learn that one. but thanks for the insite on vb.net and games. if I actually end up learning it it would likely just be for software.

URL: http://forum.audiogames.net/viewtopic.php?pid=229629#p229629




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-29 Thread AudioGames . net Forum — Developers room : Kyleman123 via Audiogames-reflector


  


Re: Is learning visual basic worth it?

no python has several. pygame, the rather buggy one; pyglet; and a few others im forgetting. if you want to go more of the direct audiogame root, there is PyAudioGame and AudioGameEngine

URL: http://forum.audiogames.net/viewtopic.php?pid=229650#p229650




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-29 Thread AudioGames . net Forum — Developers room : tward via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Severestormsteve1, a lot depends on what version of Visual Basic you mean. Do you mean VB 6 and earlier, or do you mean Visual Basic .NET?If you are talking about Visual Basic 6 and prior versions Id say no. Although, it was used for games in the past the language, tools, etc are extremely old and deprecated. SO I would not recommend using it for any new projects.However, as for VB .NET it depends on the project, but Id say it still has some use to developers. It is fairly easy to work with and while I might not suggest it for games it is fairly handy for creating other applications and stuff. I rather like VB .NET as a quick and dirty programming language. Although, you could certainly develop games in it if you wanted too.As for Python there is certainly more than one library available for game development. Not sure where you got the idea there is only one library for game development, but it is not true. Off the top of my head there is PyS
 DL, PySDL2, Pygame, Pyglet, etc. Those are just the more common ones. So if you ever decide to take up Python for game development there is a lot more out there than you seem to think.

URL: http://forum.audiogames.net/viewtopic.php?pid=229686#p229686




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-29 Thread AudioGames . net Forum — Developers room : severestormsteve1 via Audiogames-reflector


  


Re: Is learning visual basic worth it?

[[wow]]! I didnt really know that. And theres an audio game library for python itself? Thats cool. But I was referring to vb.net... I was just curious because it seems as though Aprone uses that for his games but maybe Im wrong about that. Also is vb.net the language built in to windows, used for creating those vbs files?

URL: http://forum.audiogames.net/viewtopic.php?pid=229719#p229719




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-29 Thread AudioGames . net Forum — Developers room : Guitarman via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Hi Severestormsteve.Yes with python you can delete and add arrays at anytime. I dont know why purebasic wont let you do this.After you mentioned it I looked into vbs its very limited. Somebody was talking to me about autoit the other day and I realized autoit is just a puffed up version of vbs. Applescript and vbs are the same thing they just run on different systems.For python game examples the only one I know of is usa black jack. Basically it demonstrates how variables, random, and message boxes are used in python. Ive never seen any other python audio game examples. In the pygame and pyglet documentation theres examples on how to do certain things but it mostly shows you how to deal with graphics. Ill look around for audio game python code but Im not sure where to find some you might check stackoverflow they have people on there write about all kinds of stuff.Hth.

URL: http://forum.audiogames.net/viewtopic.php?pid=229767#p229767




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-29 Thread AudioGames . net Forum — Developers room : severestormsteve1 via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Yeah Guitarman I did research on vbs and outright new it wouldnt be good for audio games, even before research was done. That language is speciffically meant for scripting tasks for your computer to perform, I.E. when you are away and unable to act with the GUI but things still need to be done. That one was out of the question from the beginning, I was just curious as to whether or not it was based off the same sintax as vb.net.As for Python does anyone know of anywhere I could find audio game examples in that language? Perhaps Ill need to learn the language first, obviously , but it would be nice to know what an audio game looks like in Python before I go into it,  the only reason I even went! Into pure basic was because Danny gave me a copy, and had me writing code the first day, so I was able to decide then.Also, with Python, is it possible to de
 lete items from an array, as well as inserting them at the beginning or middle of the array? Thats one thing pure basic doesnt have that I wish it did.

URL: http://forum.audiogames.net/viewtopic.php?pid=229755#p229755




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-29 Thread AudioGames . net Forum — Developers room : Guitarman via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Hi Severestormsteve.That is visual basic script not visual basic .net. Visual basic .net you download when you download a version of visual studio that you want. I dont know much about _vbscript_ but imagine its something like applescript so I wouldnt think it would be good for audio games.I dont know who youve been talking to but its obviously somebody who knows nothing about python. Im not going to list any libraries because tward pretty much got them all, at least all the python gaming libraries I know of.Pygame is very buggy indeed but its still easy to play and position sounds create menus stuff like that. I like pyglet I used to use that all the time when I did programming. Its great for creating menus and sub menus do timed events and a whole lot more. The only really disappointing thing is that the developer is abandoning pyglet so it probably wont be up to date for much longer.Hth.

URL: http://forum.audiogames.net/viewtopic.php?pid=229730#p229730




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-28 Thread AudioGames . net Forum — Developers room : Guitarman via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Hi Severestormsteve. Visual basic isnt perfect but its pretty good. You have a lot more freedom then you do in other basic languages. I say since you already have programming experience try something like python, c#, java. One thing I would recommend is install a whole lot of interpreters on your computer so you can try a lot of languages so you can see what you like and what you dont.Myself I would suggest python the indentation takes some getting used too but I have used it in the passed and its very easy to learn especially if you have programming experience already.Hth.

URL: http://forum.audiogames.net/viewtopic.php?pid=229594#p229594




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-28 Thread AudioGames . net Forum — Developers room : momo7807 via Audiogames-reflector


  


Re: Is learning visual basic worth it?

HiIm using python and bgt, but I think Im not brave enough for start actual coding lol

URL: http://forum.audiogames.net/viewtopic.php?pid=229606#p229606




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Re: Is learning visual basic worth it?

2015-08-28 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector


  


Re: Is learning visual basic worth it?

Hi,Visual Basic is a language that isnt exactly meant for making games. If your speaking about VB6, games have been made for that, but if your talking about VB.NET, dont even try making a game. You will find that it isnt worht the pain.As for other languages, Id recommend Ruby. Ruby is a very easy to learn language and is very easy to understand (although it has many different symbols like ., #, and :: for function separators, but those are the only three). It can get very confusing at first, but you will find that it becomes easy to understand after a while. It has OOP as well, allowing you to find out why lots of people love OOP. (you dont have to learn OOP immediately, but be warned! (hint): Youll find that everything is an object.)

URL: http://forum.audiogames.net/viewtopic.php?pid=229596#p229596




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector

Is learning visual basic worth it?

2015-08-28 Thread AudioGames . net Forum — Developers room : severestormsteve1 via Audiogames-reflector


  


Is learning visual basic worth it?

Hi all,the first programming language I ever messed with, was Visual Basic. Back in that time, though, I simply copied things from the internet which, as you all know, is not real programming. Recently, though, something sparked my interest in the language again. And I ask you, is it worth learning? Is vb a good language in terms of game developement, or does it absolutely suck? Im not really in tune with what languages are and are not good, Ive just been using and will likely continue using pure basic, but think that, if this is a good language, Ill give it a try. What are your thoughts?

URL: http://forum.audiogames.net/viewtopic.php?pid=229589#p229589




___
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector