Click here to Skip to main content
15,923,197 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralOpenSSL Pin
Ravi Jadhav30-Jun-03 22:28
Ravi Jadhav30-Jun-03 22:28 
GeneralComboBox Pin
bigmirror30-Jun-03 22:11
bigmirror30-Jun-03 22:11 
GeneralRe: ComboBox Pin
Ryan Binns30-Jun-03 22:19
Ryan Binns30-Jun-03 22:19 
GeneralRe: ComboBox Pin
bigmirror30-Jun-03 22:28
bigmirror30-Jun-03 22:28 
GeneralRe: ComboBox Pin
Ryan Binns30-Jun-03 22:41
Ryan Binns30-Jun-03 22:41 
GeneralAbout "&" Pin
FlyingDancer30-Jun-03 22:00
FlyingDancer30-Jun-03 22:00 
GeneralRe: About "&" Pin
FlyingDancer30-Jun-03 22:03
FlyingDancer30-Jun-03 22:03 
GeneralRe: About "&" Pin
Toni7830-Jun-03 22:07
Toni7830-Jun-03 22:07 
Aleon666 wrote:
Is it has the same meaning as below?
lpwndpos->flags = &(~SWP_SHOWWINDOW);


No. In the first question that you posted '&' is the binary operation AND.
lpwndpos->flags &= ~SWP_SHOWWINDOW is the same as
// pseudo code
lpwndpos->flags = lpwndpos->flags AND (NOT SWP_SHOWWINDOW)

// Afterall, I realized that even my comment lines have bugs

When one cannot invent, one must at least improve (in bed).-My latest fortune cookie
GeneralRe: About "&" Pin
Cedric Moonen30-Jun-03 22:11
Cedric Moonen30-Jun-03 22:11 
GeneralRe: About "&" Pin
FlyingDancer30-Jun-03 22:26
FlyingDancer30-Jun-03 22:26 
GeneralRe: About "&" Pin
PJ Arends30-Jun-03 22:53
professionalPJ Arends30-Jun-03 22:53 
GeneralRe: About "&" Pin
FlyingDancer30-Jun-03 23:17
FlyingDancer30-Jun-03 23:17 
GeneralUtility Start/Stop Management Service Pin
parths30-Jun-03 21:52
parths30-Jun-03 21:52 
GeneralRe: Utility Start/Stop Management Service Pin
Toni7830-Jun-03 22:03
Toni7830-Jun-03 22:03 
GeneralRe: Utility Start/Stop Management Service Pin
parths30-Jun-03 22:09
parths30-Jun-03 22:09 
GeneralRe: Utility Start/Stop Management Service Pin
Ryan Binns30-Jun-03 22:53
Ryan Binns30-Jun-03 22:53 
GeneralRe: Utility Start/Stop Management Service Pin
parths30-Jun-03 23:27
parths30-Jun-03 23:27 
GeneralRe: Utility Start/Stop Management Service Pin
Ryan Binns30-Jun-03 23:44
Ryan Binns30-Jun-03 23:44 
GeneralRe: Utility Start/Stop Management Service Pin
parths30-Jun-03 23:58
parths30-Jun-03 23:58 
GeneralRe: Utility Start/Stop Management Service Pin
Ryan Binns1-Jul-03 0:13
Ryan Binns1-Jul-03 0:13 
GeneralAlt+Return == Strange Sound Sfx Pin
Mathias S.30-Jun-03 21:40
Mathias S.30-Jun-03 21:40 
GeneralCreate a dynaset Recordset from an Excel sheet Pin
Andy@30-Jun-03 21:31
Andy@30-Jun-03 21:31 
GeneralRe: Create a dynaset Recordset from an Excel sheet Pin
Olli9-Jul-03 3:42
Olli9-Jul-03 3:42 
GeneralRe: Create a dynaset Recordset from an Excel sheet Pin
Andy@9-Jul-03 4:17
Andy@9-Jul-03 4:17 
Questionhow do i Detect if an external program has finished excuting(shellexec)? Pin
Member 40481330-Jun-03 20:35
Member 40481330-Jun-03 20:35 

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.