Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~6K People Reached
Favorite Forums

11 Posted Topics

Member Avatar for jchaike

No, it is NOT possible to create an operating system with Visual Basic (any version), because they require certain runtime libraries. Pre .NET versions require a file called vbrunxxx.dll (where 'xxx' is the version, such as '300' would be version 3.0) VB for DOS (version 1.0) requires a VBRUN100.LIB in …

Member Avatar for Comatose
1
2K
Member Avatar for janice_2k

The short answer is "You can't". It *is* possible, but the MP3 format is proprietary, so if you created an MP3 you could be facing a lawsuit. There are plugins and libraries that offer MP3 export functions, but you'll probably pay quite a bit for them, since they also had …

Member Avatar for dennis651
0
901
Member Avatar for bigpoppapumpg

KDevelop is also supposed to capable of using the mcs compiler (Linux's C# compiler). If you're interested in that, check out [url="http://www.go-mono.org"]www.go-mono.org[/url]

Member Avatar for 8route
0
293
Member Avatar for Mr Gates

[QUOTE=freesoft_2000]Vb.net can only be used for learning and nothing else. No serious programmer will ever use vb.net for his projects as it is an insult to the programmer.[/QUOTE] Without trying to start a feud here, I have to respectfully disagree. In fact, VB.NET is superb for creating business applications, utilities, …

Member Avatar for dmohanty
0
821
Member Avatar for QB_Pete

[QUOTE=QB_Pete]Right now, unless I am way off-base about the size of a .NET Framework installation, I think they missed the mark for any developer that wants to make commercial applications.[/QUOTE] Actually, .NET has become a HUGE tool for developers of commercial software. The idea behind the 23 MB file is …

Member Avatar for cypher
1
235
Member Avatar for cypher

I've got a situation where I have an array declared: [code] [COLOR=Blue]Dim[/COLOR] limit(255, 31) [COLOR=Blue]As Integer[/COLOR] ... DecodeTable(limit(index), ... ) [/code] Later in my code, I have to pass the second rank by reference to a sub. This would be simple in a C-based language: [code] [COLOR=Blue]int[/COLOR] limit[255][31]; ... DecodeTable( …

Member Avatar for cypher
0
137
Member Avatar for red_evolve

It is possible. Look into the API "SetParent" You might want to download the API-Guide Network. (Sorry, can't recall the URL off hand)

Member Avatar for red_evolve
0
1K
Member Avatar for MoNkEe

Saving games is a matter of saving all of your variables that pertain to items, player status, location, events, etc to a file. This can easily be done with the OPEN statement to ope a file, and CLOSE to close it. When I taught myself QBasic, I found that the …

Member Avatar for Puckdropper
0
218
Member Avatar for 3maddy3

Are you asking for how to check for the keys, or a formula for determing the rate of accelleration? If you're looking for a formula, that can be as simple as decreasing the speed by X% for each loop (where X also increases with each iteration of the loop), or …

Member Avatar for 3maddy3
1
304
Member Avatar for red_evolve

If you know VB 6 pretty well, then making the switch to VB.NET isn't really hard at all. Especially if you've ever tinkered with C/C++ or Visual C++ (especially VC++). Just keep a few things in mind. Everything in VB.NET is an object, even your string and integer variables. Also, …

Member Avatar for cypher
0
190
Member Avatar for HiTleR83

The only way I know of off hand is to use API to define a process, hook into it, and set its STDOUT to a stream, that you can read. That would take a WHOLE lot of API programming, and is likely not going to be an acceptible answer for …

Member Avatar for cypher
0
116

The End.