GIDForums  

Go Back   GIDForums > Computer Programming Forums
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Post New Thread
Threads in Forum : MS Visual C++ / MFC Forum Forum Tools Search this Forum
  Rating Thread / Thread Starter Last Post Reverse Sort Order Replies Views
 
by dpreznik
Maybe somebody could please help me understand why I fail to write stl's map of vectors into a file using CFile::Write()? typedef std::vector<CLocation> LocationArray; typedef std::map<int, LocationArray > MapLocationArray; int iSize = sizeof(m_mapLocations);
17-Sep-2009 06:09
by dpreznik Go to last post
2 124
 
by dpreznik
I am facing a problem with a CArray. I have a class member of type CArray<MyType, MyType&> m_MyArray; When the object is destroyed, of course the destructor of CArray<MyType, MyType&> is called. Here is the destructor: Help with Code Tags C++ Syntax (Toggle Plain Text) template<class TYPE, class...
15-Sep-2009 07:29
by dpreznik Go to last post
0 113
 
by ahbi82
I have a sequence of images in uncompressed bmp format which are frames of a video in 25fps. I was wondering how can i display them just like a media player. Using a timer, draw them upon timer expire?? I don't really need code. Some explanation will be nice form someone who done before a media...
09-Sep-2009 21:24
by ahbi82 Go to last post
0 75
 
by nicholasamh
Hi, I am using visual studio 2008, C++ MFc. I have create 2 edit box. I will let user key in at the editbox1. Then i will get line and paste what user have key in to editbox2. I want it to be something like hyper terminal format. That mean when user key in "how r u" in editbox1 then press...
31-Aug-2009 00:30
by nicholasamh Go to last post
0 214
 
by emilija
My problem in fact is how to access to variables in secondary dialog from the primary dialog?My dialog based application consists of two dialogs, and i know that to access from the secondary to the primary dialog's variables with using GetParent() function but i don't know the reverse way. please...
25-Aug-2009 16:00
by emilija Go to last post
0 121
 
by BobLewiston
Hi, everybody. I've been studying C# (using Visual C# 2008 Express) for several months and I think I've got the basics down pretty well at this point, so now I want to create a moderately ambitious application to consolidate and grow my skills. Any suggestions for what kind of app would utilize the...
21-Aug-2009 03:27
by ahbi82 Go to last post
2 113
 
by arifliminto86
Hi Guys, I am still a new bie in c++, specially in sdi application. I want to create CListCtrl in my sdi. As I know, sdi core component is divided by 3 part : cdocument,cview,cmainframe I've build my clistctrl is cmainframe by creating new function m_StationList.Create(WS_CHILD...
19-Aug-2009 00:25
by arifliminto86 Go to last post
0 122
 
by BobLewiston
Can anybody recommend good online courses for SQL and/or data controls? (I guess I should master the regular data controls before going on to Silverlight, right?)
12-Aug-2009 17:02
by BobLewiston Go to last post
0 75
 
by thefoo
As I'm a beginner in MFC I'm trying to develop a simple MFC application. I've prepared main application class, and tried to use CListCtrl. So I've used resource editor: added a dialog and a CListCtrl. Finaly I've bound m_listMain of type CListCtrl to the list using "right->add variable". And here...
07-Aug-2009 18:16
by thefoo Go to last post
0 152
 
by rag84dec
HI all, I need to create a thread of 2 functions belonging to a same class.Can any one help me write a class with 2 functions being threads?. Is there any predefined thread class from which i can inherit? Thanks in advance....
07-Aug-2009 04:35
by rag84dec Go to last post
0 95
 
by Bradd
void main() { LPCWSTR source; LPCWSTR destination; source = L"D:\\Test\\redmonnt.dll"; //C:\\Users\\sebiz\\Desktop\\redmon17x64\\redmonnt.dll"; //destination = L"C:\\Test\\redmonnt.dll"; destination = L"C:\\Windows\\system32\\redmonnt.dll";
06-Aug-2009 02:54
by Bradd Go to last post
0 117
Arrow
by vk10
Hi, I have X data points and Y- data points. Pls let me know how to plot a graph using these x-y data points using C++/Visual Studio 2008 MFC. Cheers
30-Jul-2009 15:48
by vk10 Go to last post
2 473
 
by r_iglaive
hello I have been trying to understand mfc doc./view arc. but it seems i have messed up the things, let me ask you a few questions then i hope everything will be fine Q: Alright, i have registered a doc template at the point of CWinApp::InitInstance, and now i want to create a copy of it and i am...
28-Jul-2009 13:23
by r_iglaive Go to last post
0 90
Post
by noaktree
I'm using VS2008 CPP to develop a simple MFC Dialog Based application. First I create a dialog, to be used as child, in the resource editor (IDD_THE_FLOATER). I give the dialog the style:Child setting and place two controls on it: Combo and Edit. Next I create a class for the dialog and add it as...
27-Jul-2009 09:59
by noaktree Go to last post
0 108
 
by bcompt143
Hello every body, I’m computer science student in Ethiopia, I want to write program that customize windows xp, that show start menu, my document, my computer and other object folders to in my language(Amharic). I have read windows shell programming but still I don’t get any clue. Plz help me by...
27-Jul-2009 01:02
by bcompt143 Go to last post
0 105
 
by tempnode
I know this sounds weird, but I want to see if I can do it. Basically, I've written code to take a screenshot of my desktop and store the data as an HBITMAP. I want to display this screenshot, fullscreen, on an MFC app window. What would be the best way to do this? Using a picturebox? making...
26-Jul-2009 18:32
by george135 Go to last post
1 157
 
by BobLewiston
Can someone please break down a simple statement for a relative newbie? Thread firstThread = new Thread (new ThreadStart (Method1)); In other words, what is happening at each stage here: new ThreadStart (Method1) new Thread (new ThreadStart (Method1))
21-Jul-2009 09:43
by tempnode Go to last post
1 156
 
by littlehead
Hi, I just started learning MFC. I want to make a graphical interface for my program instead of using command window. My program was coded in C. So how can I pass the input values from dialog box to my C program and how can I show the calculation results on dialog box? Thanks, Yuping
15-Jul-2009 10:54
by pixelereSet Go to last post
2 157
 
by spgonzalez
Does anybody know why when calling GetScrollInfo for a CRichEditCtrl, my nPos would be the exact same as my nTrackPos even though I've been dragging the scrollbar? I set up a break point to hit when I'm clicking and dragging the vertical scroll bar and the nTrackPos is the same as nPos, which is...
07-Jul-2009 18:13
by spgonzalez Go to last post
0 123
 
by 'P.V.
Hi I want to use an OpenFileDialog box. But when I try to show the dialog box, I get the following error: "Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it. This exception is only...
02-Jul-2009 12:44
by 'P.V. Go to last post
0 212
Post New Thread

Recent GIDBlogAccepted for Ph.D. program by crystalattice

Display Options Moderators
Showing threads 21 to 40 of 1489 Moderators : 1
Sorted By Sort Order
From The
LuciWiz  
Forum Tools Search this Forum
Search this Forum :

Advanced Search

New posts New posts More than 15 replies or 150 views Hot thread with new posts
No new posts No new posts More than 15 replies or 150 views Hot thread with no new posts
Closed Thread Thread is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 14:47.


vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.