Search:
Type: Posts; User: TheCPUWizard
Search:
Search took 0.77 seconds.
-
January 13th, 2021, 11:07 AM
(17 years later)....:wave::wave::wave::wave::wave:
There is a VERY real difference. It is physically possible to that multiple instances of theApp in different conditions (multiple DLLs', et....
-
August 29th, 2020, 09:48 AM
Hey Arjay, good to see you are still here also :)
I had found the full list previously, but had not realize you could sort it on posts, and then just count from the top...
-
August 28th, 2020, 01:26 PM
Victor, good to see you are still here :)
There once was a page that shows the people with the most lifetime posts, and then in decreasing order of posts.... I can't find it in the navigation....
-
August 28th, 2020, 12:56 PM
Can't find it in the navigation....
-
March 26th, 2015, 01:58 PM
Synchronization is critical (And can be done in many ways)....but that does not address:
A valid XML file *must* have matching tags...so the last content at any point (where the file can be...
-
March 26th, 2015, 06:43 AM
As an XML File???? Or as some type of "log"/cvs/etc. Linear file?
-
March 13th, 2015, 08:04 PM
No, YOU missed the point....the statement was "the casino looses out big over time" with extra aces. This is a conclusion about the impact of the difference, which does not seem to be supported by...
-
March 13th, 2015, 03:35 PM
OReubens - All very good points, thanks for providing them. Being somewhat of a gambler, I ran a few simulations to test your hypothesis "a minute imbalance in probabilities could cause you to draw...
-
March 13th, 2015, 08:26 AM
I don't find it surprising based on the way I read it... The "many classes" could easily refer to all of the changes in the "language/libraries", few of which may actually be used in the program(s)...
-
March 13th, 2015, 07:11 AM
I agree with 2kaud and am glad you have followed the advice to "clean up the code"....On the topic of "to document every level 4 warning as to why", I strongly suggest that this be done in the code...
-
March 12th, 2015, 03:45 PM
I never said "need to"... The "WaitForExit" could be removed and logic written to use the "Exited" event [ https://msdn.microsoft.com/en-us/library/system.diagnostics.process.exited(v=vs.110).aspx ]....
-
March 12th, 2015, 11:51 AM
One way (which I use a lot) is to wrap the synchronous code (that is working) into a clean class structure, and then invoke the method on that class asynchronously (e.g. so that it runs on a separate...
-
March 12th, 2015, 11:46 AM
Some really great information in this thread. What can be the most challenging is actually understanding what the "randomness" is attempting to achieve. As an example, one element is security, and...
-
March 12th, 2015, 11:26 AM
Sure...(this was typed in here, so errors are likely)
int main () {
string line;
ifstream myfile ("example.txt");
int line = 0;
if (myfile.is_open())
{
-
March 12th, 2015, 08:57 AM
This could be done *without* actually parsing the XML file [think how various text comparison programs work]...I wonder if such an approach would be accepted.
As stated previously, writing an XML...
-
March 12th, 2015, 08:53 AM
Basic algebra....not really a programming question....
-
March 12th, 2015, 08:51 AM
Actually he said this was an interview question....I hope his potential employer (at least the person conducting the interview) is a member here on CodeGuru.....
-
March 11th, 2015, 09:23 PM
candidate % 2 == 0
HINT: How does you code (which does not even reference "number") determine "IF candidate divides number evenly"....
EXTRA HINT: "Evenly" does not have anything to do with...
-
March 11th, 2015, 04:10 PM
Actually there is no "sign bit" with 2s complement (which is that is almost universally used). With a sign bit notation (still used in a few places) the pattern would be 10000....0001 (first bit is...
-
March 11th, 2015, 04:04 PM
The simple answer is NO.... This is because in order to Read a valid XML file it must have the closing tag. However to APPEND, the closing tag must not yet have been written.
I would give SERIOUS...
-
March 11th, 2015, 03:56 PM
If the controls (not just labels) are static, then one can iterate through the Controls collection of the parent, and once a reference to the control has been found access the appropriate properties.
-
March 11th, 2015, 03:52 PM
1) Don't use macros.
2) Realize that changing from an exposed member variable to a getter and/or setter is a BREAKING CHANGE.
-
March 11th, 2015, 03:40 PM
Not sure what you are laughing about, but I am still here.
-
June 23rd, 2011, 05:53 AM
Just remember there is a DIFFERENT forum here for WPF....
http://www.codeguru.com/forum/forumdisplay.php?f=99
-
June 23rd, 2011, 05:07 AM
Michal,
For WPF that is indeed a good solution. When the question was posted about 3 years ago, the presumption was that it was WinForms....
|
Click Here to Expand Forum to Full Width
On-Demand Webinars (sponsored)
|