Click here to Skip to main content
15,885,546 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: list view / how do i force the vertical scrollbar? Pin
Sebastian Pipping24-Feb-06 9:56
Sebastian Pipping24-Feb-06 9:56 
AnswerRe: list view / how do i force the vertical scrollbar? Pin
Sebastian Pipping13-Aug-06 3:12
Sebastian Pipping13-Aug-06 3:12 
Questionterminating worker threads Pin
baw24-Feb-06 6:51
baw24-Feb-06 6:51 
AnswerRe: terminating worker threads Pin
David Crow24-Feb-06 7:06
David Crow24-Feb-06 7:06 
GeneralRe: terminating worker threads Pin
baw25-Feb-06 4:20
baw25-Feb-06 4:20 
GeneralRe: terminating worker threads Pin
David Crow25-Feb-06 15:22
David Crow25-Feb-06 15:22 
QuestionEnum structure variables!! Pin
Hamed Musavi24-Feb-06 4:46
Hamed Musavi24-Feb-06 4:46 
AnswerRe: Enum structure variables!! Pin
toxcct24-Feb-06 4:58
toxcct24-Feb-06 4:58 
i think you didn't really get the point with structures.

a struct is only a scheme of how will be filled the memory of an instance of this type...

a struct don't have a variable number of variables nor types...
they are fixed when you define this type.

and note that a speak of type !!

if you define this :
struct T {
    int a;
    int b;
};

then T is not a variable, but a type !!!!!!
after that only, you can use it tyo create variables :
T var;      // var is a variable of type T
var.a = 2;  // Accesses the member a of the variable var (because of its type)
var.b = 5;  // Same with member b of variable var


do you get me ?



TOXCCT >>> GEII power
[toxcct][VisualCalc 2.24][3.0 soon...]
GeneralRe: Enum structure variables!! Pin
Hamed Musavi24-Feb-06 5:05
Hamed Musavi24-Feb-06 5:05 
GeneralRe: Enum structure variables!! Pin
toxcct24-Feb-06 5:12
toxcct24-Feb-06 5:12 
GeneralRe: Enum structure variables!! Pin
Maximilien24-Feb-06 5:19
Maximilien24-Feb-06 5:19 
GeneralRe: Enum structure variables!! Pin
Hamed Musavi24-Feb-06 5:25
Hamed Musavi24-Feb-06 5:25 
GeneralRe: Enum structure variables!! Pin
toxcct24-Feb-06 5:31
toxcct24-Feb-06 5:31 
GeneralRe: Enum structure variables!! Pin
Hamed Musavi24-Feb-06 5:35
Hamed Musavi24-Feb-06 5:35 
AnswerRe: Enum structure variables!! Pin
Maximilien24-Feb-06 5:15
Maximilien24-Feb-06 5:15 
AnswerRe: Enum structure variables!! Pin
ThatsAlok26-Feb-06 21:13
ThatsAlok26-Feb-06 21:13 
GeneralRe: Enum structure variables!! Pin
Hamed Musavi27-Feb-06 21:19
Hamed Musavi27-Feb-06 21:19 
QuestionCListCtrl Pin
Hamid_RT24-Feb-06 2:58
Hamid_RT24-Feb-06 2:58 
AnswerRe: CListCtrl Pin
David Crow24-Feb-06 3:03
David Crow24-Feb-06 3:03 
GeneralRe: CListCtrl Pin
Hamid_RT24-Feb-06 3:09
Hamid_RT24-Feb-06 3:09 
AnswerRe: CListCtrl Pin
James R. Twine24-Feb-06 3:09
James R. Twine24-Feb-06 3:09 
QuestionIOCP - when a socket is closed ? Pin
yani dzhurov24-Feb-06 2:41
yani dzhurov24-Feb-06 2:41 
AnswerRe: IOCP - when a socket is closed ? Pin
James R. Twine24-Feb-06 3:02
James R. Twine24-Feb-06 3:02 
GeneralRe: IOCP - when a socket is closed ? Pin
yani dzhurov24-Feb-06 3:39
yani dzhurov24-Feb-06 3:39 
GeneralRe: IOCP - when a socket is closed ? Pin
James R. Twine24-Feb-06 4:47
James R. Twine24-Feb-06 4: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.