Forum: C++ Jan 5th, 2009 |
| Replies: 11 Views: 881 I have a C++ bible laying around somewhere. Probably around 2000/3000 pages which explain everything you'd ever need to know with great ease and simple examples. I still use it as a reference. If you... |
Forum: C# Jan 2nd, 2009 |
| Replies: 5 Views: 758 It's a problem with the way ViewState is configured on the machine. Have a look at this: http://www.codinghorror.com/blog/archives/000132.html |
Forum: ASP.NET Dec 29th, 2008 |
| Replies: 5 Views: 1,633 When you created each user did you approve their account? Make sure each user is in the 'approved' status, otherwise they won't validate. |
Forum: ASP.NET Dec 29th, 2008 |
| Replies: 8 Views: 1,168 Open your web.config. Look at the <authentication> tag and check the mode. Is it set to "Forms"? If so, change it to "Windows". This *should* work. Note, however, that anybody running that page will... |
Forum: ASP.NET Dec 28th, 2008 |
| Replies: 8 Views: 1,168 Okay, i just saw a reference to Update Panel in your page code, but your upload control is declared outside of it. Use breakpoints and run your page in debug mode. Set break points inside of the... |
Forum: ASP.NET Dec 28th, 2008 |
| Replies: 8 Views: 1,168 FileUploader control does not work in the upload panel. In other words, it isn't Ajax compatible control. You need to do a regular postback through a trigger. It's a security constraint in the design... |
Forum: C# Dec 26th, 2008 |
| Replies: 14 Views: 991 It's designed for a managed platform. That doesn't mean you can't write unmanaged code. You can still write your assembler and use pointers, but that isn't the aim of the .net platform.
As far as... |
Forum: C# Dec 25th, 2008 |
| Replies: 14 Views: 991 C# is the microsoft's version of Java and C++ mix. It's designed for a managed platform. It's more stable, better structured but slower. I think there is managed C++ nowdays, but i've never used it. |
Forum: IT Professionals' Lounge Jul 14th, 2008 |
| Replies: 12 Views: 2,604 It's the sum of the squares of a number. You do not need the second number. But yeah, the term module doesn't make sense.
nova2177, modular programming, at least in reference to the old VB, refers... |
Forum: IT Professionals' Lounge Jul 13th, 2008 |
| Replies: 12 Views: 2,604 Alright, perhaps what you're trying to create is a reusable class which utilizes this algorithm. What languages is this going to be done in? You could probably start looking at object oriented... |
Forum: IT Professionals' Lounge Jul 13th, 2008 |
| Replies: 12 Views: 2,604 What exactly are you refering to, when you say 'modular'? You mean how to write a function/procedure based on an algorithm? Or are you trying to write a pseudo-code using some sort or algorithm?... |
Forum: IT Professionals' Lounge Jul 13th, 2008 |
| Replies: 2 Views: 2,192 MIS is similar to Computer Science, but is more heavier on the business side and IT systems (servers, routers and etc) rather than the actual software engineering. A lot of things you'd learn as an... |