My account: Login | Sign Up
Loading... 

Computer Programming | Forum profile

Forum profile page for Computer Programming on http://www.codingforums.com. This report page is the aggregated overview from a single forum: Computer Programming, located on the Message Board at http://www.codingforums.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Computer Programming" on the Message Board at http://www.codingforums.com is also shown in the following ways:

1) Latest Active Threads
2) 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 forum's popularity and/or exact posting volumes at any given reporting period.

Site: CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more! - Computer Programming (site profile, domain info codingforums.com)
Title: Computer Programming
Url: http://www.codingforums.com/forumdisplay.php?s=...
Users activity: 2 posts per thread
Forum activity: 18 active threads during last week
 

Posting activity on Computer Programming:

  Week Month 3 Months
Threads: 18 72 185
Post: 36 148 361
 

Computer Programming Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name Posts
primefalcon 4
BobLewiston 4
Millenia 3
jazikhan001 2
oracleguy 2
chiefbutz 2
sir pannels 2
jmac555 2
Fou-Lu 2
Fumigator 2
 

Latest active threads on Computer Programming::

CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more!
Started 2 days, 7 hours ago (2008-11-19 03:38:00)  by chiefbutz
I need to convert from type "char (*)[256]" to "char*" because I have a function that requires it. I have tried changing the function, I have tried all kinds of things, but none have worked. I have tried casting too. Anyone have any suggestions. What I am trying to do is copy a string onto a fixed size character array, and I have having more trouble that I should. Any help would be appreciated.
Thread:  Show this thread (4 posts)   Thread info: C++ Type Conversion Size: 417 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "C++ Type Conversion :: Computer Programming :: CodingForums.com- Web coding and development forum..."
CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more!
Started 3 days, 2 hours ago (2008-11-18 08:19:00)  by TurkeyMaster77
Working in C++ here. Here's the simplified problem: I need multiple classes to all inherit from the base class, let's say "Fruit" for now. I keep all of my classes in separate files (.cpp and .h files), where .h has mainly prototypes and .cpp contains function defs. I'm having issues with the #include statements. Apple works fine, but when I incorporate Orange, I get errors concerning class ...
Thread:  Show this thread (2 posts)   Thread info: Multiple classes inheriting parent Size: 2,265 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Multiple classes inheriting parent :: Computer Programming :: CodingForums.com- Web coding and development forum..."
CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more!
Started 4 days, 10 hours ago (2008-11-17 00:32:00)  by BobLewiston
I installed VC# 2008 Express. Following the lessons at C# School at programmersheaven.com, I tried to compile the sample app HelloWorld from the command prompt via: csc HelloWorld.cs but I got back: 'csc' is not recognized as an internal or external command, operable program or batch file. As far as I know, the VC# install is OK. When I did the install, it said it was ...
Thread:  Show this thread (1 post)   Thread info: VC# compile problem Size: 919 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "VC# compile problem :: Computer Programming :: CodingForums.com- Web coding and development forum..."
CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more!
Started 4 days, 13 hours ago (2008-11-16 20:59:00)  by jazikhan001
Code: #include<iostream.h> #include<string.h> enum Status{outoforder,ok}; //enum bool{false,true}; template <class T> class List{ public : List () { } List (int s){ maxSize=s; used=0; a= new T [maxSize]; } //~List () { delete []a;} bool addObjects(T p){ if (!isFull()){ a[used]=p; used ++; return true; } else return false...
Thread:  Show this thread (3 posts)   Thread info: plz help error remove urgent Size: 5,786 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "plz help error remove urgent :: Computer Programming :: CodingForums.com- Web coding and development forum..."
CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more!
Started 4 days, 15 hours ago (2008-11-16 18:56:00)  by Millenia
Can you be more specific about you're problem? In more detail Also can you wrap you're code in [code] tags please Thanks
Thread:  Show this thread (1 post)   Thread info: file handling in c Size: 224 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: file handling in c :: Computer Programming :: CodingForums.com- Web coding and development forum..."
CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more!
Started 5 days, 4 hours ago (2008-11-16 06:28:00)  by tanv@vice
hi...i desperately need a project in C that involves use of graphics.. plz help.. i m a newbie..
Thread:  Show this thread (1 post)   Thread info: c program of graphics Size: 104 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "c program of graphics :: Computer Programming :: CodingForums.com- Web coding and development forum..."
CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more!
Started 5 days, 9 hours ago (2008-11-16 01:06:00)  by jmac555
I was recently writing a program for windows that implemented a colored output, done with code: Code: void setcolor(unsigned short color) //The function that you'll use to { //set the colour HANDLE hcon = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleTextAttribute(hcon,color); } now i plan to port this ...
Thread:  Show this thread (1 post)   Thread info: Colored Output in C++ Size: 1,265 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Colored Output in C++ :: Computer Programming :: CodingForums.com- Web coding and development forum..."
CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more!
Started 5 days, 17 hours ago (2008-11-15 17:11:00)  by abduraooft
I'd give a different name . Seriously, which is your programming language?
Thread:  Show this thread (2 posts)   Thread info: Save a file, need help with filename... plz help? Size: 163 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Save a file, need help with filename... plz help? :: Computer Programming :: CodingForums.com- Web coding and development forum..."
CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more!
Started 1 week, 1 day ago (2008-11-12 22:13:00)  by BobLewiston
I was a programmer for 4 years ending 12 years ago. Back then it was all procedural, not object oriented. Now I'm 45. On the other hand, I'm bright and motivated (and for what it's worth, I've got a Bachelor's degree in engineering from 20 years ago). If I work hard and learn what I need to, is there any way in hell I can break back into programming? No doom and gloom, no "happy crap", just what ...
Thread:  Show this thread (9 posts)   Thread info: honest opinion, please Size: 438 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "honest opinion, please :: Computer Programming :: CodingForums.com- Web coding and development forum..."
CodingForums.com- Web coding and development forums. Get help on
JavaScript, PHP, CSS, XML, mySQL, ASP, and more!
Started 1 week ago (2008-11-14 00:14:00)  by BobLewiston
Are consulting firms or temp agencies a good way to get an entry-level programming job?
Thread:  Show this thread (2 posts)   Thread info: consulting firms / temp agencies Size: 87 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "consulting firms / temp agencies :: Computer Programming :: CodingForums.com- Web coding and development forum..."
 

Hot threads for last week on Computer Programming::

Computer Programming
Started 1 week, 1 day ago (2008-11-12 22:13:00)  by BobLewiston
I was a programmer for 4 years ending 12 years ago. Back then it was all procedural, not object oriented. Now I'm 45. On the other hand, I'm bright and motivated (and for what it's worth, I've got a Bachelor's degree in engineering from 20 years ago). If I work hard and learn what I need to, is there any way in hell I can break back into programming? No doom and gloom, no "happy crap", just what ...
Thread:  Show this thread (9 posts)   Thread info: honest opinion, please Size: 438 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "honest opinion, please :: Computer Programming :: CodingForums.com- Web coding and development forum..."
Computer Programming
Started 1 week, 1 day ago (2008-11-12 17:28:00)  by sir pannels
hi there, trying to work out if a checkbox is checked or not in delphi.. Have been googling but to no success. My checkbox is called 'dtfiles' and I tried this: Code: if (TForm1.dtfiles.asInteger>0) then //Checked:= true ShowMessage('ticked'); else //Checked:= false; ShowMessage('not ticked'); end; However that errors and says "method...
Thread:  Show this thread (5 posts)   Thread info: delphi 7, is checkbox ticked? Size: 813 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "delphi 7, is checkbox ticked? :: Computer Programming :: CodingForums.com- Web coding and development forum..."
Computer Programming
C++ Type Conversion - 4 new posts
Started 2 days, 7 hours ago (2008-11-19 03:38:00)  by chiefbutz
I need to convert from type "char (*)[256]" to "char*" because I have a function that requires it. I have tried changing the function, I have tried all kinds of things, but none have worked. I have tried casting too. Anyone have any suggestions. What I am trying to do is copy a string onto a fixed size character array, and I have having more trouble that I should. Any help would be appreciated.
Thread:  Show this thread (4 posts)   Thread info: C++ Type Conversion Size: 417 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "C++ Type Conversion :: Computer Programming :: CodingForums.com- Web coding and development forum..."
Computer Programming
Started 4 days, 13 hours ago (2008-11-16 20:59:00)  by jazikhan001
Code: #include<iostream.h> #include<string.h> enum Status{outoforder,ok}; //enum bool{false,true}; template <class T> class List{ public : List () { } List (int s){ maxSize=s; used=0; a= new T [maxSize]; } //~List () { delete []a;} bool addObjects(T p){ if (!isFull()){ a[used]=p; used ++; return true; } else return false...
Thread:  Show this thread (3 posts)   Thread info: plz help error remove urgent Size: 5,786 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "plz help error remove urgent :: Computer Programming :: CodingForums.com- Web coding and development forum..."
Computer Programming
Started 2 weeks, 1 day ago (2008-11-05 20:00:00)  by edbtzy
I am new to the C++ programming and i have an assignment due but not sure where to start and how to actually set the program up to do what is needed... it says to write a program that reads integers that the user inputs (ex: 3475) then outputs each individual integer (ex: 3 4 7 5 ). THEN gives the sum of the numbers...can anybody help me out please ??? also i just started learning about ...
Thread:  Show this thread (11 posts)   Thread info: need help with c++ CODE PLEASE Size: 504 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "need help with c++ CODE PLEASE :: Computer Programming :: CodingForums.com- Web coding and development forum..."
Computer Programming
Started 1 week ago (2008-11-13 23:42:00)  by BobLewiston
I'm trying to break back into programming after 12 years away. I was a programmer for only about 4 years but I was good at it. I coded mostly in C and Pascal. I have no degree in computer science but I have a 20 year old four-year engineering degree. People have suggested I go back to school. I'm middle aged and I don't have time for a four- or even two-year degree. Some have suggested ...
Thread:  Show this thread (2 posts)   Thread info: How's this for an approach to a career in programming? Size: 1,443 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "How's this for an approach to a career in programming? :: Computer Programming :: CodingForums.com- Web coding and development forum..."
Computer Programming
Started 1 week ago (2008-11-14 00:14:00)  by BobLewiston
Are consulting firms or temp agencies a good way to get an entry-level programming job?
Thread:  Show this thread (2 posts)   Thread info: consulting firms / temp agencies Size: 87 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "consulting firms / temp agencies :: Computer Programming :: CodingForums.com- Web coding and development forum..."
Computer Programming
Started 5 days, 17 hours ago (2008-11-15 17:11:00)  by abduraooft
I'd give a different name . Seriously, which is your programming language?
Thread:  Show this thread (2 posts)   Thread info: Save a file, need help with filename... plz help? Size: 163 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Save a file, need help with filename... plz help? :: Computer Programming :: CodingForums.com- Web coding and development forum..."
Computer Programming
Started 3 days, 2 hours ago (2008-11-18 08:19:00)  by TurkeyMaster77
Working in C++ here. Here's the simplified problem: I need multiple classes to all inherit from the base class, let's say "Fruit" for now. I keep all of my classes in separate files (.cpp and .h files), where .h has mainly prototypes and .cpp contains function defs. I'm having issues with the #include statements. Apple works fine, but when I incorporate Orange, I get errors concerning class ...
Thread:  Show this thread (2 posts)   Thread info: Multiple classes inheriting parent Size: 2,265 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Multiple classes inheriting parent :: Computer Programming :: CodingForums.com- Web coding and development forum..."
Computer Programming
Started 1 week ago (2008-11-13 21:44:00)  by xenoranger
I'm using Share Point 2007 with MS Access 2007 as an inexpensive contact management system. The trouble is when I run a query, I receive a 3027 (Destination is Read Only) error. If I go to the Table and open it, I can easily add whatever I want without error messages. But, if I run a SQL query or run a query (created through Access' Query Builder), both will tell me that I can't. Any ...
Thread:  Show this thread (1 post)   Thread info: Access 3027 Error, but I can still add records Size: 422 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Access 3027 Error, but I can still add records :: Computer Programming :: CodingForums.com- Web coding and development forum..."