• Welcome to Smashboards, the world's largest Super Smash Brothers community! Over 250,000 Smash Bros. fans from around the world have come to discuss these great games in over 19 million posts!

    You are currently viewing our boards as a visitor. Click here to sign up right now and start on your path in the Smash community!

Programmers Cafe

Superstar

Smash Champion
Joined
Feb 9, 2007
Messages
2,351
Location
Miami, Florida
Alt said C#, not C++. C# is pretty user friendly. I couldn't use C++ for anything except homebrew, since documentation on windows API is so scarce. So, I went C# for that.
 

TheBuzzSaw

Young Link Extraordinaire
Moderator
BRoomer
Joined
Jul 21, 2005
Messages
10,478
Your personality also plays a big role. Personally, I am a fan of C++ because I am obsessed with having absolute control. Others prefer Java or C# because they simplify much of the process, and they don't mind letting the computer help out at the cost of some performance.
 

SmashChamp

Smash Cadet
Joined
Sep 17, 2004
Messages
74
Location
Flori-tickitickiticki-tock-da!!
Ooops mistook the pound sign for ++ (dislexic at times); apreciate the correction S.S.
Buzz said something I also agree with. It really all depends on the personality; Personally, hate deal with to many 'symbols & numbers' why I love getting help from computer to spot the errors, if possible at times *grumbles*... can't hate to love learning C++ little by little.
 

cman

Smash Ace
Joined
May 17, 2008
Messages
593
Is anyone into game programming? Which languages do you find are best for game development?
 

Raider 88

Smash Journeyman
Joined
Mar 10, 2008
Messages
403
Location
Toledo, Ohio
NNID
Raider704
3DS FC
5086-1674-5462
Anyone know anything about vbs? I'm trying to write a script that will open 3 Internet Explorer Windows to a certain site, play the contents, then either refresh or re-open, depending on whether the windows gets closed or not. I'm having issues with getting it to open again once it gets closed, but everything else works. Any ideas?

wscript.sleep 2000
Set oIE = CreateObject("InternetExplorer.Application")
oIE.Navigate("http://www.youtube.com/watch?v=ZkrQwql2Pc8")
oIE.visible = true
wscript.sleep 2000
Set bIE = CreateObject("InternetExplorer.Application")
bIE.Navigate("http://www.youtube.com/watch?v=ZkrQwql2Pc8")
bIE.visible = true
wscript.sleep 2000
Set aIE = CreateObject("InternetExplorer.Application")
aIE.Navigate("http://www.youtube.com/watch?v=ZkrQwql2Pc8")
aIE.visible = true
wscript.sleep 2000

do
if oIE.visible = false then
Set oIE = CreateObject("InternetExplorer.Application")
oIE.Navigate("http://www.youtube.com/watch?v=ZkrQwql2Pc8")
oIE.visible = true
wscript.sleep 2500
else
wscript.sleep 2800
oIE.refresh
end if
if bIE.visible = false then
Set bIE = CreateObject("InternetExplorer.Application")
bIE.Navigate("http://www.youtube.com/watch?v=ZkrQwql2Pc8")
bIE.visible = true
wscript.sleep 2500
else
wscript.sleep 2800
bIE.refresh
end if
if aIE.visible = false then
Set aIE = CreateObject("InternetExplorer.Application")
aIE.Navigate("http://www.youtube.com/watch?v=ZkrQwql2Pc8")
aIE.visible = true
wscript.sleep 2500
else
wscript.sleep 2800
aIE.refresh
end if
loop
 
Top Bottom