Click here to Skip to main content
15,890,579 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Remove exe from task manager [modified] Pin
Madhu Nair11-May-09 19:18
Madhu Nair11-May-09 19:18 
GeneralRe: Remove exe from task manager Pin
Naveen11-May-09 19:28
Naveen11-May-09 19:28 
AnswerRe: Remove exe from task manager Pin
Rajesh R Subramanian11-May-09 20:02
professionalRajesh R Subramanian11-May-09 20:02 
AnswerRe: Remove exe from task manager Pin
Stuart Dootson11-May-09 20:21
professionalStuart Dootson11-May-09 20:21 
AnswerRe: Remove exe from task manager Pin
«_Superman_»11-May-09 20:25
professional«_Superman_»11-May-09 20:25 
AnswerRe: Remove exe from task manager Pin
Stuart Dootson11-May-09 22:02
professionalStuart Dootson11-May-09 22:02 
GeneralRe: Remove exe from task manager Pin
Rajesh R Subramanian11-May-09 22:19
professionalRajesh R Subramanian11-May-09 22:19 
JokeRe: Remove exe from task manager Pin
Stuart Dootson11-May-09 22:23
professionalStuart Dootson11-May-09 22:23 
JokeRe: Remove exe from task manager Pin
Rajesh R Subramanian11-May-09 23:12
professionalRajesh R Subramanian11-May-09 23:12 
JokeRe: Remove exe from task manager Pin
CPallini11-May-09 23:53
mveCPallini11-May-09 23:53 
JokeRe: Remove exe from task manager Pin
Rajesh R Subramanian12-May-09 0:40
professionalRajesh R Subramanian12-May-09 0:40 
GeneralRe: Remove exe from task manager Pin
CPallini12-May-09 0:48
mveCPallini12-May-09 0:48 
AnswerRe: Remove exe from task manager Pin
krmed12-May-09 0:35
krmed12-May-09 0:35 
QuestionI need help to make a program Pin
Wiland123411-May-09 17:52
Wiland123411-May-09 17:52 
AnswerRe: I need help to make a program Pin
Chandrasekharan P11-May-09 18:02
Chandrasekharan P11-May-09 18:02 
AnswerRe: I need help to make a program Pin
CPallini11-May-09 21:29
mveCPallini11-May-09 21:29 
Questionide channel communication Pin
Mr.S.Wolf.11-May-09 15:59
Mr.S.Wolf.11-May-09 15:59 
QuestionErase text in transparent window Pin
gcorrea11-May-09 13:10
gcorrea11-May-09 13:10 
AnswerRe: Erase text in transparent window Pin
bulg11-May-09 14:07
bulg11-May-09 14:07 
GeneralRe: Erase text in transparent window Pin
Taran911-May-09 18:42
Taran911-May-09 18:42 
GeneralRe: Erase text in transparent window Pin
gcorrea20-May-09 7:27
gcorrea20-May-09 7:27 
QuestionDisplaying an image from a Firewire Camera in MFC Pin
cheekitwong11-May-09 12:11
cheekitwong11-May-09 12:11 
AnswerRe: Displaying an image from a Firewire Camera in MFC Pin
Jonathan Davies11-May-09 12:45
Jonathan Davies11-May-09 12:45 
You can to convert the frames received from the camera to bitmap classes or BITMAPINFO structs. for example, something like:

void CCameraView2::ProcessFrame(UINT8 *pData,UINT32,UINT8 Redraw)
{
    UINT32 BytesPerDstPix;

    // Copy frame to our bitmap
    if(m_pBitmapInfo)
    {
	BytesPerDstPix=3;
	switch(m_ColorMode)
	{
	  case CM_Y8    : memcpy(m_pImage,pData,(UINT32)m_XSize*(UINT32)m_YSize);
					  BytesPerDstPix=1;
					  break;

	  case CM_RAW8  : ConvertRawY8(m_XSize,m_YSize,pData,m_pImage,m_BayerPattern);
					  break;
  
          case CM_RGB8  : ConvertRGB(m_XSize,m_YSize,pData,m_pImage);
						  break;
        ...

QuestionRe: Displaying an image from a Firewire Camera in MFC Pin
cheekitwong12-May-09 11:03
cheekitwong12-May-09 11:03 
AnswerRe: Displaying an image from a Firewire Camera in MFC Pin
Jonathan Davies12-May-09 23:21
Jonathan Davies12-May-09 23:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.