Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Visual C++ Programming | Forum profile

Forum profile page for Visual C++ Programming on http://www.codeguru.com. This report page is the aggregated overview from a single forum: Visual C++ Programming, located on the Message Board at http://www.codeguru.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 "Visual C++ Programming" on the Message Board at http://www.codeguru.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: CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions - Visual C++ Programming (site profile, domain info codeguru.com)
Title: Visual C++ Programming
Url: http://www.codeguru.com/forum/forumdisplay.php?...
Users activity: 32 posts per thread
Forum activity: 144 active threads during last week
 

Posting activity on Visual C++ Programming:

  Week Month 3 Months
Threads: 144 820 2,310
Post: 480 2,557 7,494
 

Visual C++ Programming Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
hoxsiew
38
user's latest post:
Sine and Cosine Calculations in...
Published (2009-11-12 16:01:00)
Changes are in RED below: Code: #include <iostream> #include <iomanip> #include <fstream> #include <cmath> // Some math headers define M_PI for you; some do not #ifndef M_PI const double M_PI = 3.14159265358979323846; #endif using namespace std; int main() { double x, y, z, t; double omega = 2.0 * M_PI; char *outname = "data.txt"; int i; ofstream outfile(outname); if...
Paul McKenzie
20
user's latest post:
How does Visual C++'s...
Published (2009-11-13 14:04:00)
Quote: Originally Posted by John E Cygwin defines the preprocessor definition __CYGWIN__ MinGW uses __MINGW__ or __MINGW32__ What does Visual C++'s compiler use to identify itself? _MSC_VER Regards, Paul McKenzie
Skizmo
17
user's latest post:
Program to Erase a Folder or File
Published (2009-11-11 10:51:00)
Quote: Originally Posted by anhem115 In Fact, I have an exercise: Write a program can permanently del a file. I don't know wheither this unlink function can del this file completely(means can't recover by any software). _unlink deletes the file (not moving it to the recycle bin), but to make it totally unrecoverable means you have to overwrite all the parts of the file. Each file is split into blocks (the blocksize depends on the...
VictorN
14
user's latest post:
Problem on using VC++ 2008 -...
Published (2009-11-12 12:19:00)
Quote: Originally Posted by arunkr6 It is CString I hope.. Sorry that, am not @ my work place nw...and I can't access internet from ther.. Not good... You was many times asked whether your current build is UNICODE or ANSI. You haven't answer yet... Note that if it is a UNICODE one then you must use wfstream instead of fstream
Lindley
13
user's latest post:
Learn all programing languages
Published (2009-11-11 21:06:00)
Actually it's a combination of syntax and approach. Different languages can take drastically different approaches to solving the same problem, even if their syntax looks similar. Trips people up trying to migrate between languages sometimes.
GCDEF
13
user's latest post:
How to handle the message...
Published (2009-11-13 18:21:00)
How are you envisioning a read only edit changing?
John E
13
user's latest post:
Mental block about DLLs. What am...
Published (2009-11-13 15:14:00)
Quote: Originally Posted by krmed If the third party embedded the manifest in the DLL, it won't get confused because the release DLL they sent will look for the msvcr80.dll, whereas your app (being debug with embedded manifest) will use your msvcr80d.dll. But that's what I'm doing in my tests Karl (embedding manifests in both exe and dll). I can even see that the manifest is present - but whether it works or not is very hit and...
JohnCz
12
user's latest post:
How can show thumbnail of files...
Published (2009-11-11 21:59:00)
PLease define "image files". How do you load "image files"?
Arjay
12
user's latest post:
MFC app listbox drawing bug in...
Published (2009-11-13 22:24:00)
Since, it's owner drawn and you don't have the sources, it's anyone's guess how this was improperly coded.
Igor Vartanov
12
user's latest post:
adding access rights to files
Published (2009-11-13 13:52:00)
Quote: Originally Posted by Amleto Well the download happens from a client process that runs at startup from an admin account ( win xp ), so it should have write access as far as I'm aware. Man, once again, your task requires proper network share setup instead of doing something programmatically. There are two entities participate with their separate rights: file system object (file or folder) and network share object. Both can have...
 

Latest active threads on Visual C++ Programming::

CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 2 days, 8 hours ago (2009-11-14 03:33:00)  by Joeman
does excel state the file that is opened in the window's title? if so, you sure it doesn't contain anything else in the title? like - Microsoft - Excel. Also does it state the directory of the file opened? In short this isn't reliable enough
Thread:  Show this thread (4 posts)   Thread info: FindWindow Size: 257 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: FindWindow :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 6 days ago (2009-11-10 10:48:00)  by Philip Nicoletti
1) Does GetNext() return a CString ? Maybe the streams do not understand how to output a CString and it is using the void* conversion (basically, printing out the address of the object). Try casting to LPCTSTR Code: sourcefile<< (LPCTSTR)parList.GetNext(Pos1)<< ''; 2) Depending an compiler options, you might need to change to wifstream (also why istream types if outputing ?)....
Thread:  Show this thread (27 posts)   Thread info: Problem on using VC++ 2008 Size: 889 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Problem on using VC++ 2008 :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 2 days, 17 hours ago (2009-11-13 18:21:00)  by GCDEF
How are you envisioning a read only edit changing?
Thread:  Show this thread (5 posts)   Thread info: How to handle the message ON_EN_CHANGE for a read only CEdit? Size: 50 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: How to handle the message ON_EN_CHANGE for a read only CEdit? :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 2 days, 13 hours ago (2009-11-13 22:01:00)  by _Superman_
The BOM is not automatically created. You will have to write the it yourself at the begining of the file.
Thread:  Show this thread (3 posts)   Thread info: Appending Unicode text? Size: 112 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Appending Unicode text? :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 2 days, 16 hours ago (2009-11-13 19:16:00)  by Joeman
whats the problem? what do you have done?
Thread:  Show this thread (4 posts)   Thread info: String Change Size: 41 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: String Change :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 2 days, 13 hours ago (2009-11-13 22:24:00)  by Arjay
Since, it's owner drawn and you don't have the sources, it's anyone's guess how this was improperly coded.
Thread:  Show this thread (2 posts)   Thread info: MFC app listbox drawing bug in XP? How to fix? Size: 106 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: MFC app listbox drawing bug in XP? How to fix? :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 2 days, 13 hours ago (2009-11-13 22:20:00)  by Arjay
As a general rule, any time critical code should not go into the UI thread. Windows messaging is priority queue system where certain types of messages get processed before others. I'm not completely sure which message types get higer priority, but moving the mouse rapidly back and forth could interrupt a timer message. Move the time sensitive code into a worker thread and use ...
Thread:  Show this thread (2 posts)   Thread info: Combobox Scrolling Problem Size: 520 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Combobox Scrolling Problem :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
CodeGuru Forums - A Developer.com Community for C++, C#, VB, Java and .NET Solutions
Started 2 days, 18 hours ago (2009-11-13 17:03:00)  by Randor
Hi Philly, You have several options. You could have a look at the CreateProcessAsUser Function ( http://msdn.microsoft.com/en-us/libr...29(VS.85).a spx ) This MSDN article lists several methods for executing a process as Administrator on Vista and above. Perhaps you will find it useful: Redesign for UAC Compatibility (UAC) http://msdn.microsoft.com/en-us/library/bb756922.a spx...
Thread:  Show this thread (2 posts)   Thread info: Execute Command As Administrator Size: 696 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Execute Command As Administrator :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
 

Hot threads for last week on Visual C++ Programming::

Visual C++ Programming
Started 6 days ago (2009-11-10 10:48:00)  by Philip Nicoletti
1) Does GetNext() return a CString ? Maybe the streams do not understand how to output a CString and it is using the void* conversion (basically, printing out the address of the object). Try casting to LPCTSTR Code: sourcefile<< (LPCTSTR)parList.GetNext(Pos1)<< ''; 2) Depending an compiler options, you might need to change to wifstream (also why istream types if outputing ?)....
Thread:  Show this thread (27 posts)   Thread info: Problem on using VC++ 2008 Size: 889 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Problem on using VC++ 2008 :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
Visual C++ Programming
Started 6 days ago (2009-11-10 11:07:00)  by jnmacd
Where/when do you get the error?
Thread:  Show this thread (18 posts)   Thread info: Help with debugging my code Size: 32 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Help with debugging my code :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
Visual C++ Programming
Started 6 days ago (2009-11-10 11:16:00)  by Alex F
Is Dll available during runtime? It should be in the current directory, exe directory, Windows, Windows\System32 or available through PATH.
Thread:  Show this thread (16 posts)   Thread info: Mental block about DLLs. What am I doing wrong?? Size: 139 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Mental block about DLLs. What am I doing wrong?? :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
Visual C++ Programming
Re: Again pls help - 14 new posts
Started 4 days, 20 hours ago (2009-11-11 15:10:00)  by cijagm
pls someone!!
Thread:  Show this thread (14 posts)   Thread info: Again pls help Size: 13 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Again pls help :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
Visual C++ Programming
Started 6 days, 2 hours ago (2009-11-10 08:57:00)  by hoxsiew
If you have the MFC9 feature pack for VS2008, download the samples: Descriptions: http://msdn.microsoft.com/en-us/library/bb983962.a spx Direct Download link: http://www.microsoft.com/downloads/d...displaylang =en There's a lot of neat stuff MS has put together to show off the MFC9 features. This will give you some ideas on what is possible with MFC9 and may be able to push ...
Thread:  Show this thread (14 posts)   Thread info: Help with assignment Size: 730 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Help with assignment :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
Visual C++ Programming
Started 6 days, 4 hours ago (2009-11-10 06:45:00)  by Skizmo
Quote: but I would prefer to avoid this solution because there are too many dialogs to change. I'm afraid that it is the only option. DoModal (as the name says) makes it modal and therefor is blocking.
Thread:  Show this thread (14 posts)   Thread info: Switch between CWnd dialogs and make them active Size: 481 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Switch between CWnd dialogs and make them active :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
Visual C++ Programming
Started 1 week, 4 days ago (2009-11-04 17:30:00)  by hoxsiew
What's the problem? Note that you're "cout" tells the user that the result is in degrees, yet you're using radians implicitly in your trig functions. Also, math.h definse pi for you. Just define "_USE_MATH_DEFINES" before including math.h: Code: define _USE_MATH_DEFINES #include <math.h> That will give you the following to use in math functions: Code: #...
Thread:  Show this thread (20 posts)   Thread info: Sine and Cosine Calculations in C++??? Size: 1,576 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Sine and Cosine Calculations in C++??? :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
Visual C++ Programming
Re: C++ SDL problem - 12 new posts
Started 3 days, 19 hours ago (2009-11-12 16:23:00)  by GCDEF
Run it in the debugger.
Thread:  Show this thread (12 posts)   Thread info: C++ SDL problem Size: 23 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: C++ SDL problem :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
Visual C++ Programming
Started 4 days, 14 hours ago (2009-11-11 20:57:00)  by Momentum
Im far from a C++ Jedi, but I understood "programming" to be language neutral. Once you've grasp the concept of "programming," then the only barrier to learn a new language is syntax.
Thread:  Show this thread (9 posts)   Thread info: Learn all programing languages Size: 211 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Learn all programing languages :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."
Visual C++ Programming
Started 4 days, 10 hours ago (2009-11-12 00:56:00)  by bitshifter420
The idea is to write a shell hook. http://en.wikipedia.org/wiki/Blackbox http://www.bb4win.org/news.php You could write your own or just write a plugin for BB. I found it really fun to customize the shell There are many out there just look for 'windows shell replacements' Edit: BBLean is the simple version i had played with in the past. http://bb4win.sourceforge.net/bblean/
Thread:  Show this thread (9 posts)   Thread info: Lost and need direction please Size: 779 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Lost and need direction please :: Visual C++ Programming :: CodeGuru Forums - A Developer.com Community for C+..."

This page was found by:   You are required to write a program for Movie Rental Store. The basic idea is that user/reader will provide customer information, movie name, and number of days. Upon this information your program will calculate the charged amount for that movie.  You are required to write a program for Movie Rental Store. The basic idea is that user/reader will provide customer information, movie name, and number of days. Upon this information your program will calculate the   You are required to write a program for Movie Rental Store. The basic idea is that user/reader will provide customer information, movie name, and number of days. Upon this information your program will calculate the charged amount for that movie