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
Post
by kiranpreddy05
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/ // Source file originally created by PegWindowBuilder // // // Class Name: ecgclass // // ...
05-Nov-2009 08:39
by TurboPT Go to last post
1 47
 
by alice09
Hi all, I now using Visual C++ (Visual Studio 2005) for my project. i face some problem in set the maximum length for my edit control(text box). i have 3 edit control in the same dialog. i want set the maximum length for each edit control = 5. following are the 3 ID of edit control in same...
04-Nov-2009 20:49
by alice09 Go to last post
2 46
 
by ahbi82
I'm working on a GUI which displays image images after being processed. It would be in full screen mode, something like "Alt+ENTER" full screen in Media Player. Any idea how can i achieve this? Some webbies would be nice. Thanks in advance!!
29-Oct-2009 20:50
by ahbi82 Go to last post
0 35
 
by alice09
Hi, all.. i'm now using Visual c++ in Visual Studio 2005 for my project. i faced problem in getting other tab value in main tab ..Below are details of my problem. In the main tab control(CTabDialogControl), i have another sub tab namely CTabFourthDialog inside CTabFourthDialog, have a...
23-Oct-2009 10:38
by fakepoo Go to last post
3 82
 
by dpreznik
Dear friends, I have a view derived from CScrollView. When my document is long enough, and I grab the scroll bar handle and drag it to the bottom, the handle immediately jumps back to the top after I release it, and the view contents is displayed accordingly. Could anybody tell me what can cause...
22-Oct-2009 07:14
by dpreznik Go to last post
0 44
 
by fali
Hello, I have the following situation: I created a program with Visual C++ 2008 express which receive and interpret data from a µC. Now I want to send this data from the Visual C++ program to an OPC server. Both programs run on the same PC. Therefore I need to integrate an OPC client in my...
22-Oct-2009 06:57
by fali Go to last post
0 39
 
by bcompt143
Hello, I read windows shell programing book, which wiriten on windows 98, I have seen customizing the start button. right now I want to customize the start button of windows xp, I know shell32.dll is responsible for this but the problem I face is I cant able to change the lanugage of the start...
22-Oct-2009 03:45
by bcompt143 Go to last post
0 41
 
by timbk
Hello, I hope that somebody can help me, the thing is this: the context: my application has one main dialog and one non-main dialog. the question: When I press a specific button in the non-main dialog, a line has to be drawn in the client area of the main dialog. how can I do this? Actually I...
17-Oct-2009 11:40
by timbk Go to last post
0 72
 
by mfc_newbie
Hello all, I have a small problem with dialog box background image. I am adding a background image in my OnPaint() function, Now it is displaying perfectly. But if i am moving any other application(exe) on this dialogbox, so i am getting so much scratches on my dialogbox image. i am unable to...
12-Oct-2009 23:26
by mfc_newbie Go to last post
0 56
 
by tempnode
I'm writing an app where I want to ignore normal keyboard input, such as any letter/number/symbol key. I'm not worried about catching protected key sequences (such as ALT+TAB or CTRL+ALT+DEL). However, I'm a newbie to MFC and was wondering if there is a quick and easy way to do this. Thanks!
09-Oct-2009 07:57
by pur Go to last post
1 107
 
by esc123
Hello, I am creating a new window in MFC and have found out that the m_hWnd is not getting initialized. Here is my code: void MainDialog::OnBnClickedButton1() { NewDialog *dlg; dlg = new NewDialog( this );
09-Oct-2009 07:54
by pur Go to last post
1 111
 
by dpreznik
Hi, The task I am facing is this: I need to take a CString containing text from .rtf file with various .rtf tags, strip out all .rtf tags accept \b and \i (bold and italics). Maybe somebody could give me an advice how I could do that? Thanks, Dmitriy
09-Oct-2009 06:57
by dpreznik Go to last post
0 57
 
by pur
I use CPEN to draw lines on a DC from out the onmousemove event. I can draw lines with the mouse that works, but when i move the window everything disapears. How can i fix this?
08-Oct-2009 07:20
by pur Go to last post
0 58
 
by dpreznik
Hi, Maybe somebody could help me set a popup menu item text at runtime in MFC? Because of some reason, the following code doesn't work for me: if(pDoc->m_pCurChapter->m_pMarkedParagraph->m_bFlagged) menu.GetSubMenu(0)->ModifyMenu(ID_FLOATING_MENU_FLAG_PICKUP, MF_BYCOMMAND|MF_STRING|MF_POPUP,...
05-Oct-2009 08:11
by dpreznik Go to last post
0 87
Unhappy
by nawal
hi, i'm looking for visual c++ versus 6 but it's not found!! someone can tel me where can i download it thanks a lot
29-Sep-2009 17:49
by nawal Go to last post
2 93
 
by ahbi82
Hi all, i would like to know what are the coding styles and guidelines that some of you are practicing. Here can i source for more information. I know Microsoft (MFC/ATL), google and many others follow a set of their own styles. For example in MFC, the class is prefix by a "C", member variables are...
24-Sep-2009 00:46
by ahbi82 Go to last post
0 66
 
by dpreznik
Dear friends, I need a help with a Wait (Hour Glass) cursor. In my MFC program, I have the following code: void CBookDoc::SomeMethod() { AfxGetApp()->DoWaitCursor(1); // display the hourglass cursor ... // Some stuff is done ...
17-Sep-2009 08:34
by dpreznik Go to last post
0 126
 
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 116
 
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 105
 
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 69
Post New Thread

Recent GIDBlogProgramming ebook direct download available by crystalattice

Display Options Moderators
Showing threads 1 to 20 of 1486 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 13:16.


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