|
More site info...
CodeGuru Forums - A Developer.com Community for... - www.codeguru.com | Site profile
|
|
Site profile page for http://www.codeguru.com.
This report page has aggregated and summarized the online discussions from the Message Board located at http://www.codeguru.com.
This site profile page outlines general site statistics such as: Users Activity, Site Activity, Site Rank, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional site profile information for http://www.codeguru.com is also shown in the following divisions:
1) Top 10 Active Forums during Last Week
2) Top 10 Site Forums
3) Latest Active Threads
4) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a site's popularity and/or exact posting volumes at any given reporting period.
|
|
Title:
|
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
|
|
Url:
|
http://www.codeguru.com
|
|
Users activity:
|
3 posts per thread |
|
site activity:
|
895 active threads during last week |
|
Site rank:
|
1,153 (go to rank page)
|
|
Domain info for:
|
codeguru.com
|
|
|
|
Posting activity table on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
895
|
2,960
|
8,770
|
|
Post:
|
2,248
|
7,686
|
24,508
|
|
|
Authority Badge:
|
|
|
BoardReader Authority Badge code for CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions (http://www.codeguru.com)
|
|
Put this code anywhere on your forum page:
|
|
|
|
|
|
|
|
Rating - The position measured by activity among all forum sites tracked by BoardReader.
If rating is 10 there are 9 forum sites which have higher activity.
Posts - Number of posts on forum site during last 7 days.
Threads - Number of threads on forum site active during last 7 days.
Authors - Number of authors which contributed to the site within last 7 days.
|
|
|
|
|
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions posting activity graph:
|
|
http://www.codeguru.com Alexa graph:
|
Top authors on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions during last week:
user's latest post:
Compose functor question for...
Published (2009-11-19 23:08:00)
Quote: Originally Posted by Paul McKenzie Second, you are trying to bind a temporary to a non-const parameter, which is illegal. Even if the first error didn't trip you up, the non-const/temporary binding error would. The constructor for Composer takes non-const arguments, but you are passing in temporaries as the arguments. This is illegal in C++, unfortunately there are a lot of compilers that let you get away with it (not so with the...
user's latest post:
DLL without LIB - a couple of...
Published (2009-11-20 05:52:00)
Quote: Originally Posted by cristane - Is there any way to include the library in the console application by only using the DLL (without the LIB file)? You don't need a LIB file for any DLL. Look at LoadLibrary() and GetProcAddress(). These functions load and obtain the pointer to the exported DLL functions at run-time. By using these functions, the LIB file is no longer necessary. Regards, Paul McKenzie
user's latest post:
Dialog : How to update an Edit Box?
Published (2009-11-20 08:03:00)
Forget about what are you doing, and tell us what you want to achieve. If you don't append to the edit text, then it's normal that you only see the last updated text.
user's latest post:
fade effects like winxp
Published (2009-11-20 03:26:00)
Visual Studio is FREE (in the Express versions, for hobbyists) Why not use the right tool for the job?
user's latest post:
getaddrinfo
Published (2009-11-20 09:00:00)
Passing NULL should return INADDR_ANY which is 0.0.0.0 and binding to that interface means the server will listen on ALL interfaces. To get the loopback, pass "localhost" or "::localmachine" as the nodename paramater.
user's latest post:
Localization MessageBoxEx
Published (2009-11-20 10:47:00)
Quote: Originally Posted by olivthill2 Where is the problem? The problem, IMHO, is in the fact that MessageBoxEx does not work as it described in MSDN (or, at least not as OP has expected it to work)
user's latest post:
fade effects like winxp
Published (2009-11-20 08:36:00)
I was hoping for a change mahii would start trying to think for himself this time, hence my attachment. Ah well, perhaps one day
user's latest post:
How to create button in mfc ?
Published (2009-11-20 09:19:00)
Quote: Originally Posted by dskp thanks hoxsiew , i got it .thank u very much. can u plz suggest me tutorials and books to learn MFC. THANKS AGAIN. Is it really that much trouble to write complete words? Really? Every time I see that I get the impression the writer is eight years old. It's hard to take you seriously.
user's latest post:
ListView replacement
Published (2009-11-19 19:33:00)
Quote: Originally Posted by vincentroggero2 Pulling Refresh() makes it perform better, but I still get a complete repaint of the view when the VirtualListSize increments. Try Code: private void capViewFileSystemWatcher_Changed(object sender, FileSystemEventArgs e) { if (listView1.Items.Count != (int)SWCaptureLength / CapRecordLen) { LockWindowUpdate(listView1.Handle); listView1.VirtualListSize = (int)SWCaptureLength / CapRecordLen;...
|
|
|
Top 10 active forums on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions during last week:
|
|
Top 10 forums on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions:
Visual C++ Programming
- 106,624 posts
|
C++ (Non Visual C++ Issues)
- 65,655 posts
|
C-Sharp Programming
- 31,039 posts
|
Visual Basic 6.0 Programming
- 30,828 posts
|
General Discussion / Chit Chat
- 16,126 posts
|
Java Programming
- 13,891 posts
|
Visual Basic .NET
- 12,665 posts
|
C++ and WinAPI
- 10,447 posts
|
Network Programming
- 4,919 posts
|
ASP.NET
- 4,393 posts
|
|
|
|
|
Latest active threads on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions:
Started 2 days, 1 hour ago (2009-11-20 11:40:00)
by peejavery
Code:
function onlyNumbers(evt) {
var charCode = (evt.which) ? evt.which : event. keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57)) {return false;}
else {return true;}
}
Started 4 days, 19 hours ago (2009-11-17 16:51:00)
by Paul McKenzie
Quote:
Originally Posted by jamesleighe
Let's say I have the following classes, inheriting each-other as shown...
First, please use code tags when posting, like this:
Code:
class ISystem
{
public:
virtual ~ISystem () {;}
virtual BOOL isInitialized () = 0;
};
class CSystem : public ISystem
...
Started 2 days, 7 hours ago (2009-11-20 05:10:00)
by Londbrok
Please be specific as to what you ask. Your post title talks of ArrayList and post itself of Array. Different things, requiring different answers. For now, assuming that you talk of array.
Array has a length, in your case 100. You can ask for an item from the array using this range of indexes, simply by int value=myArray[index]. Thus writing a for loop that calculates a sum of n first values...
Started 2 days, 11 hours ago (2009-11-20 01:13:00)
by HanneSThEGreaT
I found this somewhere some time ago by someone
This fades in and fades out. It should give you a good start.
Started 2 days, 1 hour ago (2009-11-20 11:44:00)
by peejavery
Started 2 days, 3 hours ago (2009-11-20 09:40:00)
by olivthill2
Where is the problem? If a user has selected English, in his settings, then it is ok to have "Yes" and "no" instead of "Oui" and "Non", isn't it?
Quel est le problème ? Si un utilisateur choisit l'anglais dans sa configuration, il est normal qu'il ait "Yes" et "No" au lieu de "Oui" et "Non", ne croyez vous pas ?
Started 2 days, 1 hour ago (2009-11-20 11:11:00)
by laserlight
I usually refer to this FAQ whenever I forget the incantation needed to work with template friends:
Why do I get linker errors when I use template friends?
Started 2 days, 14 hours ago (2009-11-19 22:02:00)
by hoxsiew
Call me silly, but why not just call it directly from the first dll?
That said, check your UNICODE settings. your prototype is LPCSTR so it could be either wchar_t or char depending on _UNICODE. Also, are you checking the return from GetProcAddress? Looking at the header, I'd expect the function name to be " decorated" for C++.
Started 3 days, 12 hours ago (2009-11-19 00:45:00)
by FayazNizami
Anyone there who can suggest me some idea on this !
|
|
Hot threads for last week on CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions:
Started 1 week, 3 days ago (2009-11-12 12:44:00)
by Zaccheus
Quote:
Originally Posted by rhboarder
obj->release();
delete obj;
Why are you using delete here? You said yourself that release() deletes the object.
Started 5 days, 8 hours ago (2009-11-17 04:48:00)
by florivucu
Started 5 days, 13 hours ago (2009-11-16 23:09:00)
by laserlight
Quote:
Originally Posted by turbosupra
I think most of the errors are similiar, but I'm not sure what's causing them, for example the first error looks like it wants a semi-colon after my after my switch??? Which I don't think is correct based on my switch example googling?
You might want to read an introductory book ...
Started 3 days, 19 hours ago (2009-11-18 16:53:00)
by Martin O
The SSCCE you posted works fine. It also doesn't match the pictures you posted.
Started 3 days, 1 hour ago (2009-11-19 11:36:00)
by hoxsiew
How is "m_pBkBrushMe" declared? is it a valid GDIObject at the time WM_CTLCOLOR is handled?
Started 3 days, 16 hours ago (2009-11-18 20:44:00)
by ninja9578
Is there a reason that you can't use a vector? It expands dynamically, but has a constant time for member manipulation. I'm not sure where it goes though, I'm pretty sure it goes to the stack.
Started 2 days, 11 hours ago (2009-11-20 01:13:00)
by HanneSThEGreaT
I found this somewhere some time ago by someone
This fades in and fades out. It should give you a good start.
Started 1 week, 1 day ago (2009-11-13 20:29:00)
by couling
Well converting to hex isnt too hard:
Just read in 1,2,3 or 4 bytes at a time and use the itoa() function to do the conversion for you.
In terms of putting it into a c++ file, why not just quote it and put a "\x" before every pair. so:
Code:
0619ab01
becomes the quoted string:
"\x06\x19\xab\x01"
\x tells c++ to interpret the next two characters as a hex representation for a ...
Started 1 week, 5 days ago (2009-11-10 08:35:00)
by hoxsiew
It's probably in the .def file. You say above you get a def file, but typically those are not generated by the compiler, but created by the programmer to tell the compiler what to export from the .dll. .def files are an alternative to the macros we've become familiar with in modern VS compilers.
Started 4 days, 9 hours ago (2009-11-18 03:33:00)
by VictorN
Quote:
Originally Posted by lion.king
hi i have a problem with toolstripmenuitem .
What is a toolstripmenuitem ?
Is it somewhere in C#? In Windows.Forms? In .Net?
In either case it would be better to ask it in some of the .Net Forums .
|
|