VOGONS

Common searches


Search results

Display options

Re: Coding help

Excellent feedback! Thanks! To expand on what I'm doing, I am writing a version control utility to ensure my applications are ran together within the same application suite. This gives me some control over the expected functions of a given application within the application suite. So, for example, …

Re: When did you purchase your first 386 / 486 Computer? Availability vs the early 90's affordability norm.

My first 486 also happens to be my first computer. Coming from a poor family that viewed computers as expensive toys - and as devices that were taking my parent's jobs away, they weren't exactly encouraging of my soon-to-be hobby. At any rate, I bought my 486 in 1992. It came with a 486SX 25MHz CPU …

Re: Coding help

Ok, so I think I'm getting the hang of this old school coding. I'm still having some problems using some of the C++ standards in the STLport for the DIgital Mars compiler, such as string and cout (lots of errors about bad header references in the iostream.h file). And I'm still trying to wrap my …

Re: Coding help

Thanks for the links! Seems a bit overly complicated for the array of strings. I have a method I like to use that looks like this: string FormatBytes(long bytes) { string[] Suffix = { "Bytes", "KB", "MB", "GB", "TB" }; int i; double dblByte = bytes; for (i = 0; i < Suffix.Length && bytes >= 1024, …

Coding help

Hi all, I recently got my legacy coding machine up and running. I was using Symantec C++ but downloaded Digital Mars C++ and the STL hoping it would support modern C++ standards. However, I can't seem to use modern types like string, or string arrays. It seems like legacy coding is much more C-like …

Re: Currently recommended C compiler for native DOS?

in DOS
I'm currently trying to rewrite my compiled .BAT files into C/C++ code and applications. I'm mostly using Symantec C++ 7.21 but I also have a copy of Microsoft Visual C++ 1.52. Both have options to create MS-DOS applications. Any emulator worth its weight should be emulating the real thing, so just …

Page 2 of 4