My account: Login | Sign Up
Loading...

CodeProject: Discussion Boards. Free source... - www.codeproject.com | Site profile

rss Atom  |   RSS
Site profile page for http://www.codeproject.com. This report page has aggregated and summarized the online discussions from the Message Board located at http://www.codeproject.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.codeproject.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: CodeProject: Discussion Boards. Free source code and programming help - http://www.codeproject.com CodeProject: Discussion Boards. Free source code and programming help
Url: http://www.codeproject.com
Users activity: 4 posts per thread
site activity: 1,988 active threads during last week
Site rank: 335 (go to rank page)
Domain info for: codeproject.com
 

Posting activity table on CodeProject: Discussion Boards. Free source code and programming help:

  Week Month 3 Months
Threads: 1,988 7,389 21,484
Post: 8,837 33,965 93,762
 

Authority Badge:

CodeProject: Discussion Boards. Free source code and programming help | Forum Authority Badge

CodeProject: Discussion Boards. Free source code and programming help posting activity graph:

Posts by:  day  week  month 
 

http://www.codeproject.com Alexa graph:

Top authors on CodeProject: Discussion Boards. Free source code and programming help during last week:

Name Posts
Oakman 274
Paul Conrad 266
Pete O'Hanlon 219
Dalek Dave 159
leppie 139
Perspx 133
John Simmons / outlaw programmer 110
El Corazon 103
Ennis Ray Lynch, Jr. 102
.netman 93
 

Top 10 active forums on CodeProject: Discussion Boards. Free source code and programming help during last week:

The Lounge - 4,133 new posts The Lounge - forum profile
The Soapbox - off-topic rants - 1,295 new posts The Soapbox - off-topic rants - forum profile
Visual C++ / MFC - 1,037 new posts Visual C++ / MFC - forum profile
C# - 1,022 new posts C# - forum profile
ASP.NET - 662 new posts ASP.NET - forum profile
Visual Basic / VB.NET - 290 new posts Visual Basic / VB.NET - forum profile
SQL / ADO / ADO.NET - 215 new posts SQL / ADO / ADO.NET - forum profile
WPF / WCF / WF - 110 new posts WPF / WCF / WF - forum profile
Coding Horrors - 83 new posts Coding Horrors - forum profile
Web Development - 81 new posts Web Development - forum profile
 

Top 10 forums on CodeProject: Discussion Boards. Free source code and programming help:

The Lounge - 56,253 posts The Lounge - forum profile
The Soapbox - off-topic rants - 35,785 posts The Soapbox - off-topic rants - forum profile
ASP.NET - 17,935 posts ASP.NET - forum profile
Visual C++ / MFC - 12,072 posts Visual C++ / MFC - forum profile
C# - 11,131 posts C# - forum profile
SQL / ADO / ADO.NET - 11,077 posts SQL / ADO / ADO.NET - forum profile
Suggestions and Bug Reports - 5,496 posts Suggestions and Bug Reports - forum profile
Web Development - 5,136 posts Web Development - forum profile
Visual Basic / VB.NET - 3,987 posts Visual Basic / VB.NET - forum profile
General Discussions - 3,830 posts General Discussions - forum profile

Latest active threads on CodeProject: Discussion Boards. Free source code and programming help:

CodeProject: Discussion Boards. Free source code and programming help
Started 13 hours, 11 minutes ago (2008-09-07 16:06:00)  by coolsatty
Hi, I want to import data from Tally to Ms Access or SQL using VB.net,how will i do it, Thank you.
Forum:  Visual Basic / VB.NET Visual Basic / VB.NET - forum profile
Thread:  Show this thread (2 posts) Size: 142 bytes
Customize:  Customize "how to import data from Tally to Ms Access or Sql. :: Visual Basic / VB.NET :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 3 days, 2 hours ago (2008-09-05 02:24:00)  by AndieDu
i have this xml here, and now i would like to use xsl to transform into sql statement like this: update OrderDetails set Quantity = 2 where OrderID = 10248 and ProductID = 11 Here is the XML document: <Order ID="10248"> <OrderItem ProductID="11"> <QuantityIncrease>2</QuantityIncrease> </OrderItem> </Order> Here is a bit i did: <?xml version="1.0" encoding="UTF-8"> <xsl:...
Forum:  XML / XSL XML / XSL - forum profile
Thread:  Show this thread (3 posts) Size: 1,600 bytes
Customize:  Customize "XML transform to SQL by XSL :: XML / XSL :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 5 hours, 19 minutes ago (2008-09-07 23:58:00)  by RYU^^
Hi, Currently, I have a form application (written in MFC). Lets call it AppsTest.exe . But I wanted to change this application (exe) into exe + COM. What I mean is that I wanted to be able to call a COM function in my other application (eg. VB or C#) and launch a message box in my MFC application (AppsTest.exe). I am just wondering, where to start and is there any tutorial site that I can ...
Forum:  Visual C++ / MFC Visual C++ / MFC - forum profile
Thread:  Show this thread (1 post) Size: 625 bytes
Customize:  Customize "Executable COM :: Visual C++ / MFC :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 2 days, 4 hours ago (2008-09-06 00:39:00)  by priyajeni
I have done a project in c# of chat server application using which i have made a connection with server machine using ip address and send datas to the server database but what i need is to instead of sending datas to the server machine database i want to store it in a server text file ...is it possible
Forum:  C# C# - forum profile
Thread:  Show this thread (8 posts) Size: 333 bytes
Customize:  Customize "TCP chat :: C# :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 5 hours, 23 minutes ago (2008-09-07 23:54:00)  by toprogramminguy
hey, is there any way to set values to charachter arrays that you enter for example: int main() { int a1, a2, a3, a4,...........a11, x; cin >> a1;............cin >> a11; char str[10][40] for(x = 0; x < 10; x++){ gets(str[x]); } int "str[0]" = a1, "str[1]" = a2,.........................."str[9]" = a11; return 0; } thanks modified on Sunday, September 7, 2008 8:06 PM
Forum:  Visual C++ / MFC Visual C++ / MFC - forum profile
Thread:  Show this thread (1 post) Size: 608 bytes
Customize:  Customize "set values to charachter arrays which are entered [modified] :: Visual C++ / MFC :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 19 hours, 24 minutes ago (2008-09-07 09:53:00)  by mistyangel
I. Overview 1. Create a program that will accept the necessary inputs and generate the proper outputs based on the processing instructions. 2. The program should meet all the requirements. II. Inputs 1. Employee’s ID Number – an 8 digit integer 1st four digits signifies the year the employee started. 5th digit signifies employment type. 0 for regular, 1 for contract. Other values are invalid...
Forum:  C# C# - forum profile
Thread:  Show this thread (7 posts) Size: 2,543 bytes
Customize:  Customize "Please help on this :: C# :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 17 hours, 24 minutes ago (2008-09-07 11:53:00)  by MorganSim
unfortunatly am only able to write a simple program on one form being the parent form.How can I advance and maybe try to use two or more forms.Don't know how to create a new form and how to call it from my main form.Please help.....
Forum:  C# C# - forum profile
Thread:  Show this thread (3 posts) Size: 337 bytes
Customize:  Customize "Multiple forms for one program :: C# :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 6 hours, 15 minutes ago (2008-09-07 23:02:00)  by Mohammad Dayyan
Hi. I saw this [ ^ ] somewhere. Is it right ?
Forum:  The Lounge The Lounge - forum profile
Thread:  Show this thread (5 posts) Size: 298 bytes
Customize:  Customize "Is it true about Chrome? :: The Lounge :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 6 hours, 33 minutes ago (2008-09-07 22:44:00)  by Steve_Harris
Lewis Hamilton loses out when given a 25s penalty despite dropping back after skipping through the chicane. Disgraceful. [ ^ ]
Forum:  The Lounge The Lounge - forum profile
Thread:  Show this thread (6 posts) Size: 428 bytes
Customize:  Customize "Hamilton robbed :: The Lounge :: CodeProject: Discussion Boards. Free source code a..."
CodeProject: Discussion Boards. Free source code and programming help
Started 11 hours, 57 minutes ago (2008-09-07 17:20:00)  by Ravi Bhavnani
A little old lady was among a group at exhibition in a newly opened art gallery. Suddenly a contemporary painting caught her eye. "What on earth," she inquired of the artist standing nearby, "is that?" The artist smiled condescendingly and said, "That, my dear lady, is supposed to be a mother and her child." "Well, then" snapped the little old lady, "why isn’t it?" /ravi
Forum:  The Lounge The Lounge - forum profile
Thread:  Show this thread (11 posts) Size: 441 bytes
Customize:  Customize "Art, Modern :: The Lounge :: CodeProject: Discussion Boards. Free source code a..."
 

Hot threads for last week on CodeProject: Discussion Boards. Free source code and programming help:

The Soapbox - off-topic rants
Started 2 days, 7 hours ago (2008-09-05 21:52:00)  by John Carson
Bill Maher: Republicans, stop calling Obama an elitist: New Rule: Republicans need to stop saying Barack Obama is an elitist, or looks down on rural people, and just admit you don't like him because of something he can't help, something that's a result of the way he was born. Admit it, you're not voting for him because he's smarter than you. In her acceptance speech, Gov. Sarah Palin accused ...
Forum:  The Soapbox - off-topic rants The Soapbox - off-topic rants - forum profile
Thread:  Show this thread (122 posts) Size: 2,876 bytes
Customize:  Customize "Bill Maher provides his insight :: The Soapbox - off-topic rants :: CodeProject: Discussion Boards. Free source code a..."
The Lounge
Started 1 week ago (2008-09-01 03:11:00)  by rahul_sindhu
I am wondering how programmers around the world relax after hours of hard work. energy drink? coffee? nap? ......????
Forum:  The Lounge The Lounge - forum profile
Thread:  Show this thread (103 posts) Size: 161 bytes
Customize:  Customize "How do programmers relax? :: The Lounge :: CodeProject: Discussion Boards. Free source code a..."
The Soapbox - off-topic rants
The vetting of Palin - 95 new posts
Started 6 days, 3 hours ago (2008-09-02 01:56:00)  by 73Zeppelin
Ooops. McCain didn't do his homework: Among other less attention-grabbing news of the day: it was learned that Ms. Palin now has a private lawyer in a legislative ethics investigation in Alaska into whether she abused her power in dismissing the state’s public safety commissioner; that she was a member for two years in the 1990s of the Alaska Independence Party, which has at times sought a ...
Forum:  The Soapbox - off-topic rants The Soapbox - off-topic rants - forum profile
Thread:  Show this thread (95 posts) Size: 1,030 bytes
Customize:  Customize "The vetting of Palin :: The Soapbox - off-topic rants :: CodeProject: Discussion Boards. Free source code a..."
The Soapbox - off-topic rants
Started 1 day, 3 hours ago (2008-09-07 02:11:00)  by My Paranoid Hubby
http://www.foxnews.com/story/0,2933,418025,00.html [ ^ ] A 17-year old girl, forced to marry when she was NINE YEARS OLD and forced to marry a 45 year old man was killed by a group of men hired by her own parents. Why? She was asking for an annulment. Which she got before she was killed. I love how these are called "honor" killings. It must feel so good to treat your daughter less than your ...
Forum:  The Soapbox - off-topic rants The Soapbox - off-topic rants - forum profile
Thread:  Show this thread (88 posts) Size: 634 bytes
Customize:  Customize "Another example of how Pakistan respects its women :: The Soapbox - off-topic rants :: CodeProject: Discussion Boards. Free source code a..."