Click here to Skip to main content
15,886,199 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to find Certificate Trust List by "Identifier" Pin
led mike7-Sep-07 7:34
led mike7-Sep-07 7:34 
GeneralRe: How to find Certificate Trust List by "Identifier" Pin
Joseph.Lightfoot7-Sep-07 9:18
Joseph.Lightfoot7-Sep-07 9:18 
GeneralRe: How to find Certificate Trust List by "Identifier" Pin
led mike7-Sep-07 11:42
led mike7-Sep-07 11:42 
QuestionType conversion! from BYTE[] to Point[] [modified] Pin
Md. Ali Naser Khan7-Sep-07 4:34
Md. Ali Naser Khan7-Sep-07 4:34 
AnswerRe: Type conversion! from BYTE[] to Point[] Pin
led mike7-Sep-07 5:07
led mike7-Sep-07 5:07 
JokeRe: Type conversion! from BYTE[] to Point[] Pin
David Crow7-Sep-07 5:14
David Crow7-Sep-07 5:14 
GeneralRe: Type conversion! from BYTE[] to Point[] Pin
jhwurmbach7-Sep-07 6:27
jhwurmbach7-Sep-07 6:27 
GeneralRe: Type conversion! from BYTE[] to Point[] Pin
Md. Ali Naser Khan7-Sep-07 5:14
Md. Ali Naser Khan7-Sep-07 5:14 
// Create a region from a path.
Region pathRegion(&path); // Here path is a type of GraphicsPath class.

// Get the region data.
UINT bufferSize = 0;
UINT sizeFilled = 0;
BYTE* pData = NULL;

bufferSize = pathRegion.GetDataSize();

pData = new BYTE[bufferSize];
pathRegion.GetData(pData, bufferSize, &sizeFilled);

////////////////////////////////////////////////////////////////

Now I have data in pData.

How can I covert this 'pData' to an arry of Point type data?



GeneralRe: Type conversion! from BYTE[] to Point[] Pin
Mark Salsbery7-Sep-07 5:30
Mark Salsbery7-Sep-07 5:30 
GeneralRe: Type conversion! from BYTE[] to Point[] Pin
led mike7-Sep-07 5:41
led mike7-Sep-07 5:41 
AnswerRe: Type conversion! from BYTE[] to Point[] Pin
John R. Shaw7-Sep-07 23:11
John R. Shaw7-Sep-07 23:11 
AnswerRe: Type conversion! from BYTE[] to Point[] Pin
Mark Salsbery8-Sep-07 7:12
Mark Salsbery8-Sep-07 7:12 
QuestionIHTMLDocument2Ptr not found Pin
Bhavesh Bagadiya7-Sep-07 4:23
Bhavesh Bagadiya7-Sep-07 4:23 
QuestionRe: IHTMLDocument2Ptr not found Pin
David Crow7-Sep-07 4:30
David Crow7-Sep-07 4:30 
AnswerRe: IHTMLDocument2Ptr not found Pin
Bhavesh Bagadiya7-Sep-07 4:56
Bhavesh Bagadiya7-Sep-07 4:56 
QuestionSending a CFormView app in the status bar with the X button (Close Button of the window) Pin
HiEverybody7-Sep-07 3:44
HiEverybody7-Sep-07 3:44 
AnswerRe: Sending a CFormView app in the status bar with the X button (Close Button of the window) Pin
David Crow7-Sep-07 3:59
David Crow7-Sep-07 3:59 
GeneralRe: Sending a CFormView app in the status bar with the X button (Close Button of the window) Pin
HiEverybody7-Sep-07 4:44
HiEverybody7-Sep-07 4:44 
GeneralRe: Sending a CFormView app in the status bar with the X button (Close Button of the window) Pin
David Crow7-Sep-07 4:52
David Crow7-Sep-07 4:52 
GeneralRe: Sending a CFormView app in the status bar with the X button (Close Button of the window) Pin
HiEverybody7-Sep-07 5:01
HiEverybody7-Sep-07 5:01 
GeneralRe: Sending a CFormView app in the status bar with the X button (Close Button of the window) Pin
David Crow7-Sep-07 5:11
David Crow7-Sep-07 5:11 
GeneralRe: Sending a CFormView app in the status bar with the X button (Close Button of the window) Pin
HiEverybody7-Sep-07 5:37
HiEverybody7-Sep-07 5:37 
GeneralRe: Sending a CFormView app in the status bar with the X button (Close Button of the window) Pin
David Crow7-Sep-07 5:40
David Crow7-Sep-07 5:40 
GeneralRe: Sending a CFormView app in the status bar with the X button (Close Button of the window) Pin
HiEverybody7-Sep-07 5:45
HiEverybody7-Sep-07 5:45 
GeneralRe: Sending a CFormView app in the status bar with the X button (Close Button of the window) Pin
David Crow7-Sep-07 5:47
David Crow7-Sep-07 5:47 

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.