-
Replied To a Post in Is C++ enough?
I developed risk analysis software for the options trading industry in Chicago up to 2007. C++ was what was required. -
Replied To a Post in need help ASAP
We don't write your code for you. We will help you fix it once you post it! I've been writing professional C++ code since 1992... -
Replied To a Post in while multiple condition help
while(fgets(line, sizeof line, stdin) { if (sscanf_counter != 2) #breakout here# } -
Replied To a Post in Help needed for Microsoft Remote Desktop
Have you checked on the MS website for help with this? -
Replied To a Post in motherboard for Linux, Windows, & SteamOS
Asus boards are of good quality. Myself, I like Intel mobos, but they are quite a bit more expensive. I purchased a dual core mobo from them in 2007 for … -
Replied To a Post in Help needed for Microsoft Remote Desktop
I also use MS Remote Desktop, about 10 or so years ago. Worked well. Haven't used it since so I don't know what MS has done with it. -
Gave Reputation to rproffitt in Help needed for Microsoft Remote Desktop
Sorry no. I'm more of a VNC and telnet over ssh type person. -
Gave Reputation to rproffitt in Help needed for Microsoft Remote Desktop
Sorry no. I'm more of a VNC and telnet over ssh type person. -
Replied To a Post in motherboard for Linux, Windows, & SteamOS
This mobo seems to an intel processor tuned device - no mention of AMD support. It seems to run a core i7 processor, so games should be good on it, … -
-
Gave Reputation to rproffitt in Complex Username and Password System
When this question comes up, I reply with "never store passwords in a database." You can store the names but never the passwords. So you may wonder how to verify … -
Replied To a Post in Software to diagnose processor health
There are a lot of free system testing tools to do this. Try Googling for that! -
Gave Reputation to khakilang in You Want Linux to Run What?
[QUOTE=evstevemd;1281185]What Linux Distro are you using? I have Ubuntu Lucid and everything runs fine but I use HP Printers. I added it and I never installed anything. If you use … -
Gave Reputation to Stefano Mtangoo in You Want Linux to Run What?
[QUOTE=khakilang;1280980]Since I use Linux about a year ago. I never look back to Window. Yeah Window 7 looks great but the security still sucks. Games are great but once the … -
Gave Reputation to metvacetz in You Want Linux to Run What?
Well, still using windows to play windows games :) Linux take good care of the rest -
Gave Reputation to khess in You Want Linux to Run What?
Someone left a comment on one of my posts similar to, "Linux won't be popular on the Desktop until it runs [URL="http://www.microsoft.com"]Windows[/URL] applications." To which I silently responded, "Huh? and, … -
Replied To a Post in Which is the most reliable free antivirus for USB flash drives?
Check out WinClam - a free AV. There is also a Unix/MacOSX/Linux version available (called ClamAV). I use it all the time, and have never had a problem with it … -
Replied To a Post in 8086 assembly
Last time I used 8086 assembler was when I wrote a TCP/IP stack for QNX in the early 90's (work for the US Navy). At this point, I really can't … -
Replied To a Post in Generating sentences in Android Studio
Just remember, Android is primarily Java (with a different back-end), so if you can code it in Java, you can use the same code for Android. -
Replied To a Post in C++ p.o.s system
A C or C++ switch statement is just a code branch that is delineated by the value specified by the statement. So, I don't really understand what your conundrum may … -
Replied To a Post in 1 Malware in 20 years
Reverend Jim, Windows is much more susceptible to malware and virus attacks than Linux. Yes, you can harden your MS system against them, but the design of Linux makes such … -
Replied To a Post in Coding
Select a subject that is of interest to you and then decide how your coding can improve or alter it to your desires. -
Replied To a Post in PUP.Optional.ASK
My solution is to not run Win-whatever. I Run Linux and never had a problem!And I have run Linux for the past 12 years! -
Replied To a Post in Increment / decrement (x++, ++x...) not producing expected output
There are two kinds of increments for integers - pre-fix and post-fix. X++ is one and ++X is the other. You figure it out! Or read your C/C++ programming manual! -
Gave Reputation to JamesCherrill in Increment / decrement (x++, ++x...) not producing expected output
No reply from a C++ buff yet? At the risk of making a fool of myself I'll try. I'm no C++ expert, but this looks to me like another example … -
Replied To a Post in Convert the print from left to right datagridview content
So, 200+ lines of code but no explanation of what your problem is. Sorry, but that does not work! -
Replied To a Post in runtime error on voting system
And, you want us to comment on 500+ lines of code? Sorry, but that isn't going to happen! Show us where the error is, and then we may be able … -
Replied To a Post in Accessing the address of pointer within structure
My sanskrit name is also Vikrant! How amazing is that? In any case, p++ works. You allocated buffptr and assigned it to p. So, p should be the address of … -
Replied To a Post in please help me with this program. i need to use IDE Pascal for it.
Pascal is a defunct language. Even the inventor of it redid it as Modula! If your school is still teaching Pascal, go somewhere else! -
Replied To a Post in Hii i want to convert the following source code in c++.
Get rid of all the "goto" statements! That isn't C++, it is badly written C code!
The End.