|
More site info...
Visual C++ / MFC | Forum profile
|
|
Forum profile page for Visual C++ / MFC on http://www.codeproject.com.
This report page is the aggregated overview from a single forum: Visual C++ / MFC, located on the Message Board at http://www.codeproject.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++ / MFC" on the Message Board at http://www.codeproject.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.
|
|
|
|
|
Posting activity on Visual C++ / MFC:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
155
|
554
|
1,450
|
|
Post:
|
575
|
2,101
|
5,073
|
|
|
Visual C++ / MFC Posting activity graph:
|
Top authors during last week:
user's latest post:
[Message Deleted]
Published (2009-11-09 20:11:00)
zweberhardt wrote: a fellow student mentioned in passing that you can get "free" answers by asking questions that way . If you had not included those last two words, that would have been a true statement. People here are more than willing to help .
user's latest post:
Confused in linked lists
Published (2009-11-09 03:09:00)
Razanust wrote: I think it declares a structure 'node' comprising of a data value and other one is an address. Yes, the address field points to another 'node': this way linked lists work.
user's latest post:
Increase mainframe window if...
Published (2009-11-09 14:02:00)
If your view is going to be bigger than the frame size, you must ideally use CScrollView so that the view is scrollable and you can also use CScrollView::ResizeParentToFit [ ^ ] to resize the frame to the size of the view.
user's latest post:
Ribbon Bar creates multiple menu...
Published (2009-11-09 19:15:00)
Hi Dale, I have confirmed the behavior you are describing. I am now getting the same results. I do not know if this behavior is by design. However do you really need the "Peep &Help" to have a menu handler? If you give this menu item an ID of zero it will be ommitted from the customization dialog. Best Wishes, -David Delaune
user's latest post:
popup menus
Published (2009-11-08 12:24:00)
doug25 wrote: I can create the popup menu with TrackPopupMenu but I only know how to change the background colour of the items. Checkout these sections on Fonts and Text [ ^ ] in MSDN. They should tell you everything you need.
user's latest post:
Help Needed Controlling other...
Published (2009-11-07 06:12:00)
Use FindWindow() and then EnumChildWindows() to find that button .Refer MSDN for both functions.That will surely help u. Mark this ans as good if u feel it helped. Kushagra
user's latest post:
[Message Deleted]
Published (2009-11-09 18:41:00)
Hey, at least you seem to get it. I just love the individuals who seem to think they're entitled to a free ride. Take a crack at the assignment and if you have trouble, identify a specific problem(s) and I'm sure people will be willing to help.
user's latest post:
How to get Windows Handler from...
Published (2009-11-07 16:29:00)
I suggest you DO NOT ask your silly questions everywhere. If you don't know what a window handle is, you still have a choice: shut up.
user's latest post:
mysql_query
Published (2009-11-09 03:54:00)
MsmVc wrote: mysql_query(conn, ct); Does that return a value? If so, you should be checking the return value. Also, what if a different exception that _com_error is thrown? You aren't handling that case either. PS: This is not a C++ question.
user's latest post:
Is there a way to register an...
Published (2009-11-09 11:34:00)
when you register an ActiveX object, its CLSID is added to HKEY_CLASSES_ROOT/CLSID and a path to the DLL is added below that. so if the debug and release versions use the same CLSIDs for their interfaces (which they typically do), there's no way to have multiple versions, regardless of where the DLLs live.
|
|
|
|
Latest active threads on Visual C++ / MFC::
Started 17 hours, 39 minutes ago (2009-11-10 23:08:00)
by «_Superman_»
There is no such API available. You have to write code to do this. Check this article - How to create a timed message box [ ^ ]
Started 22 hours, 47 minutes ago (2009-11-10 18:00:00)
by «_Superman_»
You can use CDocument::AddView [ ^ ] to add a new view to the existing document. You have to create a new view class which is derived from CView and then add it to the view. You can use the ShowWindow API to show and hide the views. Look at the sample code in the documentation.
Started 1 day ago (2009-11-10 16:44:00)
by «_Superman_»
This sounds like the default button styles. The black border denotes a default button and the grey dots indicate that the button has focus.
Started 1 day, 2 hours ago (2009-11-10 14:30:00)
by «_Superman_»
Chris0812 wrote: if( c > = '0' && c =0; i--) strcat(rpass, passwd[i]); The if condition looks like it is creating repass if the condition is met and nothing more. I believe the first parameter of strcat must be repass which is a character array and not rpass which is an integer passed in as parameter. Chris0812 wrote: int main(int argc,char *argv[], int rpass, int passwdlen, int ...
Started 1 day, 2 hours ago (2009-11-10 14:24:00)
by «_Superman_»
So are you trying to place the OpenCV window as a child in the Form? How this is done with Window Media Player is that WMP has an activex control which can be placed in a form and instantiated. The activex exposes some methods that can be used to control the video that is played. Check if OpenCV has such an activex control. If not you should check the OpenCV documentation on how this can be ...
Started 1 day, 2 hours ago (2009-11-10 14:18:00)
by «_Superman_»
This is how the splitter works. First there is a view. You create a splitter in that view. Now you have to create 2 views, one for each pane. The initial parent view now only hosts the splitter and does nothing more. In your case, after you create the splitter, create two instances of the Child View class, one in each pane.
Started 1 day, 3 hours ago (2009-11-10 12:59:00)
by LunaticFringe
Assuming the CComboBox is a public variable, you can get at it something like this: CMyApp* app = (CMyApp*)AfxGetApp(); CMainFrame* frame = (CMainFrame*)app-> m_pMainWnd; and then int selected_item = frame-> m_comboBox.GetCurSel();
Started 1 day, 13 hours ago (2009-11-10 03:05:00)
by Richard MacCutchan
Pardhu2 wrote: f(RegQueryValueEx (hKey,"DWORDSample", NULL, NULL, NULL, &dw)==ERROR_SUCCESS) { pbData = (LPBYTE)malloc(dw); RegQueryValueEx (hKey, "StringSample", NULL, &dwValType, pbData , &dw); You get the size information for "DWORDSample" and then try to retrieve the value of "StringSample"! What is the correct name of your value variable?
|
|
Hot threads for last week on Visual C++ / MFC::
Started 5 days, 13 hours ago (2009-11-06 02:48:00)
by CPallini
Karthika85 wrote: it should open a tiff file in Paint and save it as jpg file. Karthika85 wrote: What are the Windows API fnctions used to open,save and close a image file. If you need to open Paint for the purpose, why are you asking for image related Windows API ?
Started 1 week ago (2009-11-04 15:49:00)
by DavidCrow
nikhil_86 wrote: char buf[] = "NOOB_ME" The preprocessor is not going to mess with string literals. In other words, buf is going to contain " NOOB_ME" not " 1" . The rest of your post is nonsensical. What exactly are you trying to do?
Started 6 days, 11 hours ago (2009-11-05 05:00:00)
by Michael Schubert
yogeshs wrote: I created a .exe How? yogeshs wrote: Any Ideas????? Yes, click on OK to terminate the application.
Started 1 week ago (2009-11-03 16:51:00)
by DavidCrow
egerving wrote: Can anyone make this clearer using the above function as example. How about: char deviceBuffer[ 1024 ]; DWORD bufferLength = sizeof (deviceBuffer); LONG defaultDevice = ITCSCAN_GetDefaultDevice(deviceBuffer, &bufferLength);
Started 3 days, 23 hours ago (2009-11-07 16:53:00)
by Jacob Dixon
Nevermind after looking at it again I figured out why. I still have to include int add( int x, int y) { return x + y; } in the HelloWorld.cpp file right? The tutorial didn't show this. IF thats why then whats the point of putting that other code in the header file when you could add int add( int x, int y) at the top of the HelloWorld.cpp file? Or I'm guessing you would...
Started 1 week, 1 day ago (2009-11-03 11:58:00)
by DavidCrow
transoft wrote: Do you have any experience with "wifstream"? Could you share it with me? This works for me: void main( void ) { wofstream out ( " c:\\data.dat" , ios::binary); out << 123 ; out .close(); wifstream in ( " c:\\data.dat" , ios::binary); int x; in > > x; in .close(); }
Started 6 days, 21 hours ago (2009-11-04 19:35:00)
by CPallini
timbk wrote: hello, is there any way to declare an indexed array in base one on VC++? thanks. You can even use ten-based array: just remember to subract 10 to the index before using it inside the [] operator...
Started 5 days, 13 hours ago (2009-11-06 03:11:00)
by Adam Roderick J 09
Check the call stack to trace the location of the expection on debugging!!!!
Started 1 day, 8 hours ago (2009-11-10 08:11:00)
by LunaticFringe
What about the 'infocardapi.dll' cited in the first error message? Does it exist on the target machine?
Started 1 week, 1 day ago (2009-11-03 07:21:00)
by PrafullaShirke27
char **argv = NULL; argv = ( char **) malloc( 3 * sizeof ( char *)); argv[ 1 ] = ( char *)malloc(( 20 )* sizeof ( char )); argv[ 1 ] = " D:\\Input.jpg" ; cout < < argv[ 1 ]; Its working guy.
|
|