Click here to Skip to main content
15,915,172 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: ARG_TYPE in CArray Pin
Michael Dunn11-Jan-02 17:19
sitebuilderMichael Dunn11-Jan-02 17:19 
Generalusing memcpy for non-char arrays Pin
moredip11-Jan-02 13:19
moredip11-Jan-02 13:19 
GeneralRe: using memcpy for non-char arrays Pin
Nish Nishant11-Jan-02 13:38
sitebuilderNish Nishant11-Jan-02 13:38 
GeneralRe: using memcpy for non-char arrays Pin
l a u r e n11-Jan-02 21:31
l a u r e n11-Jan-02 21:31 
GeneralToolTips in Modeless dialog Pin
Ruslan11-Jan-02 11:34
Ruslan11-Jan-02 11:34 
GeneralDeclaring own variables Pin
Peter Liddle11-Jan-02 10:53
Peter Liddle11-Jan-02 10:53 
GeneralRe: Declaring own variables Pin
Chris Losinger11-Jan-02 10:59
professionalChris Losinger11-Jan-02 10:59 
GeneralRe: Declaring own variables Pin
alex.barylski11-Jan-02 11:14
alex.barylski11-Jan-02 11:14 
I'm not sure I fully understand the question at hand.

However you can create custom data types using structs or classes.

struct CustomType{
char theBytes[5]; //5 byte data type

unsigned theBits : 2; //*** : *** allows bit control
};

with the above code it's now possible to create an instance of your custom data type which holds 5 bytes instead of the built-in generic char, int, long, etc...

CustomType newType; //new datatype
unsigned char Type; //built-in datatype


Hope this helps

Smile | :)

"An expert is someone who has made all the mistakes in thier field" - Niels Bohr
GeneralHelppp Access Violation in throw stmt Pin
Bill Wilson11-Jan-02 10:40
Bill Wilson11-Jan-02 10:40 
GeneralMessageBoxIndirect Pin
Henry Jacobs11-Jan-02 10:05
Henry Jacobs11-Jan-02 10:05 
GeneralRe: MessageBoxIndirect Pin
alex.barylski11-Jan-02 11:23
alex.barylski11-Jan-02 11:23 
General#$&#$ SetWindowsHookEx problem... Pin
Xenos11-Jan-02 8:09
Xenos11-Jan-02 8:09 
GeneralRe: #$&#$ SetWindowsHookEx problem... Pin
Henry Jacobs11-Jan-02 10:20
Henry Jacobs11-Jan-02 10:20 
GeneralRe: #$&#$ SetWindowsHookEx problem... Pin
Xenos11-Jan-02 12:00
Xenos11-Jan-02 12:00 
GeneralFiltering a DAO recordset Pin
Simon Walton11-Jan-02 7:58
Simon Walton11-Jan-02 7:58 
GeneralRe: Filtering a DAO recordset Pin
Carlos Antollini11-Jan-02 8:19
Carlos Antollini11-Jan-02 8:19 
GeneralRe: Filtering a DAO recordset Pin
Simon Walton11-Jan-02 8:45
Simon Walton11-Jan-02 8:45 
GeneralRe: Filtering a DAO recordset Pin
Carlos Antollini11-Jan-02 9:38
Carlos Antollini11-Jan-02 9:38 
GeneralRe: Filtering a DAO recordset Pin
Carlos Antollini11-Jan-02 9:38
Carlos Antollini11-Jan-02 9:38 
GeneralRe: Filtering a DAO recordset Pin
Simon Walton11-Jan-02 12:48
Simon Walton11-Jan-02 12:48 
GeneralPutting file to clipboard, just like in explorer Pin
Mukkie11-Jan-02 7:54
Mukkie11-Jan-02 7:54 
GeneralRe: Putting file to clipboard, just like in explorer Pin
Michael Dunn11-Jan-02 10:53
sitebuilderMichael Dunn11-Jan-02 10:53 
Questionsaving and retrieving files of a specific type : how do other companies save? Pin
DanYELL11-Jan-02 6:51
DanYELL11-Jan-02 6:51 
AnswerRe: saving and retrieving files of a specific type : how do other companies save? Pin
Joao Vaz11-Jan-02 7:17
Joao Vaz11-Jan-02 7:17 
AnswerRe: saving and retrieving files of a specific type : how do other companies save? Pin
Michael Dunn11-Jan-02 7:31
sitebuilderMichael Dunn11-Jan-02 7:31 

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.