User profile: WSiaB

User info
User name:WSiaB
Name:John
Location:California
Website:http://www.WSiaB.net
History
Joined:
Number of posts:15
Latest posts:

Going through an Enumerated List
Gotcha, guess I was overly excited about the type casting solution working. Many thanks webJose. F...

Going through an Enumerated List
Big time kudos on the [code]dayOfWeek = (DayNames)count;[/code] I had a feeling typecasting was nece...

1+1 and 1+100, theoretically, is there any execution speed difference?
I believe they use bitwise operators. Example: [code]int a = 3; // a=0000011 a = a<<1; // a=0000110...

GUI coding intro tutorial
[quote]I have just completed a Introduction to C++ class and all we did was work in the console. I w...

Going through an Enumerated List
When I try the following: [code]enum DayNames {Sunday, Monday, Tuesday, Wednesday, Thursday, Friday,...