Click here to Skip to main content
15,919,613 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalproblem of ATL Pin
novachen19-Aug-03 21:53
novachen19-Aug-03 21:53 
GeneralRe: problem of ATL Pin
Steve S19-Aug-03 22:05
Steve S19-Aug-03 22:05 
QuestionHow do I hide an application from taskbar Pin
Neil scsn19-Aug-03 21:49
Neil scsn19-Aug-03 21:49 
AnswerRe: How do I hide an application from taskbar Pin
J. Dunlap19-Aug-03 21:52
J. Dunlap19-Aug-03 21:52 
GeneralRe: How do I hide an application from taskbar Pin
Neil scsn19-Aug-03 22:16
Neil scsn19-Aug-03 22:16 
GeneralRe: How do I hide an application from taskbar Pin
Brian Delahunty20-Aug-03 1:52
Brian Delahunty20-Aug-03 1:52 
GeneralRe: How do I hide an application from taskbar Pin
Neil scsn20-Aug-03 2:14
Neil scsn20-Aug-03 2:14 
GeneralRe: How do I hide an application from taskbar Pin
Brian Delahunty20-Aug-03 2:36
Brian Delahunty20-Aug-03 2:36 
GeneralRe: How do I hide an application from taskbar Pin
Neil scsn20-Aug-03 2:44
Neil scsn20-Aug-03 2:44 
GeneralRe: How do I hide an application from taskbar Pin
Neil scsn20-Aug-03 2:55
Neil scsn20-Aug-03 2:55 
GeneralRe: How do I hide an application from taskbar Pin
Ryan Binns20-Aug-03 5:29
Ryan Binns20-Aug-03 5:29 
GeneralRe: How do I hide an application from taskbar Pin
Neil scsn20-Aug-03 6:14
Neil scsn20-Aug-03 6:14 
QuestionFile and printer sharing? Pin
Dominik Reichl19-Aug-03 21:30
Dominik Reichl19-Aug-03 21:30 
AnswerRe: File and printer sharing? Pin
vcplusplus19-Aug-03 22:05
vcplusplus19-Aug-03 22:05 
GeneralProperty Pages Pin
Kamesh19-Aug-03 19:52
Kamesh19-Aug-03 19:52 
Generalexe with parameters.. Pin
xxhimanshu19-Aug-03 18:22
xxhimanshu19-Aug-03 18:22 
GeneralRe: exe with parameters.. Pin
Dominik Reichl19-Aug-03 20:50
Dominik Reichl19-Aug-03 20:50 
Generalsuggestions plzzz.. Pin
xxhimanshu19-Aug-03 18:14
xxhimanshu19-Aug-03 18:14 
Generalcomma operator Pin
Marissa18219-Aug-03 16:38
Marissa18219-Aug-03 16:38 
GeneralRe: comma operator Pin
Dave Bryant19-Aug-03 16:44
Dave Bryant19-Aug-03 16:44 
Mainly because it makes it a lot harder to see what is going if the comma operator is used for anything more complicated than a fairly trivial statement. If you write a complex function in one line using the comma operator, and then come back to it 6 months or a year later, it would be considerably more difficult to understand what is going on, than if it were written clearly in multiple statements.

It is mainly useful in contexts where only a single statement is allowed - for example, in the increment statement of a for loop.

for ( int i = 0, j = 10 ; i < nCount ; ++i, --j ) {
  // ...
}

Dave
http://www.cloudsofheaven.org
GeneralRe: comma operator Pin
Maxwell Chen19-Aug-03 17:06
Maxwell Chen19-Aug-03 17:06 
GeneralRe: comma operator Pin
Marissa18219-Aug-03 17:09
Marissa18219-Aug-03 17:09 
GeneralRe: comma operator Pin
Maxwell Chen20-Aug-03 16:01
Maxwell Chen20-Aug-03 16:01 
GeneralRe: comma operator Pin
Ryan Binns19-Aug-03 21:01
Ryan Binns19-Aug-03 21:01 
GeneralNeed help in SDI Pin
Snyp19-Aug-03 16:04
Snyp19-Aug-03 16:04 

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.