Click here to Skip to main content
15,883,705 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Listbox Pin
Steve S26-Sep-02 23:46
Steve S26-Sep-02 23:46 
GeneralCreate Dialog Pin
Anonymous25-Sep-02 22:44
Anonymous25-Sep-02 22:44 
GeneralRe: Create Dialog Pin
Roman Fadeyev25-Sep-02 23:15
Roman Fadeyev25-Sep-02 23:15 
GeneralRe: Create Dialog Pin
Anonymous25-Sep-02 23:34
Anonymous25-Sep-02 23:34 
GeneralRe: Create Dialog Pin
Roman Fadeyev25-Sep-02 23:58
Roman Fadeyev25-Sep-02 23:58 
GeneralRe: Create Dialog Pin
Anonymous26-Sep-02 0:37
Anonymous26-Sep-02 0:37 
GeneralThe difference between VERIFIY() and ASSERT()... Pin
Raphael Kindt25-Sep-02 21:51
Raphael Kindt25-Sep-02 21:51 
GeneralRe: The difference between VERIFIY() and ASSERT()... Pin
Steve S25-Sep-02 21:58
Steve S25-Sep-02 21:58 
Unless AdamUK beats me to it again...

ASSERT disappears in a release build, while VERIFY doesn't.

For example,

ASSERT( ( p = somefunction() ) != 0)

VERIFY( ( p = somefunction() ) != 0)

In the first case, the code is =eliminated= and will more than likely cause some hapless (or should that be witless) developer to tear out their hair trying to figure what's gone wrong. In the second case, the code is retained, but no test is actually performed.

At least, that's how they used to work...

Steve S
[This signature space available for rent]
GeneralRe: The difference between VERIFIY() and ASSERT()... Pin
yourbuddy7726-Sep-02 1:17
yourbuddy7726-Sep-02 1:17 
QuestionCan somebody explain these lines for me? Pin
Mazdak25-Sep-02 21:29
Mazdak25-Sep-02 21:29 
AnswerRe: Can somebody explain these lines for me? Pin
adamUK25-Sep-02 21:45
adamUK25-Sep-02 21:45 
GeneralRe: Can somebody explain these lines for me? Pin
Mazdak25-Sep-02 22:21
Mazdak25-Sep-02 22:21 
AnswerRe: Can somebody explain these lines for me? Pin
Steve S25-Sep-02 21:46
Steve S25-Sep-02 21:46 
GeneralRe: Can somebody explain these lines for me? Pin
Mazdak25-Sep-02 22:20
Mazdak25-Sep-02 22:20 
Generallistbox question Pin
Mazdak25-Sep-02 20:59
Mazdak25-Sep-02 20:59 
GeneralRe: listbox question Pin
Roman Fadeyev25-Sep-02 23:35
Roman Fadeyev25-Sep-02 23:35 
GeneralRe: listbox question Pin
Mazdak25-Sep-02 23:50
Mazdak25-Sep-02 23:50 
GeneralCString Unicode Problem! Pin
Daniel Strigl25-Sep-02 20:49
Daniel Strigl25-Sep-02 20:49 
GeneralRe: CString Unicode Problem! Pin
567890123425-Sep-02 20:54
567890123425-Sep-02 20:54 
GeneralRe: CString Unicode Problem! Pin
Daniel Strigl25-Sep-02 21:08
Daniel Strigl25-Sep-02 21:08 
GeneralRecent File List help Pin
Chou25-Sep-02 19:18
Chou25-Sep-02 19:18 
GeneralRe: Recent File List help Pin
Steve S25-Sep-02 22:04
Steve S25-Sep-02 22:04 
GeneralRe: Recent File List help Pin
Chou25-Sep-02 22:43
Chou25-Sep-02 22:43 
GeneralRe: Recent File List help Pin
Steve S25-Sep-02 23:00
Steve S25-Sep-02 23:00 
GeneralRe: Recent File List help Pin
Chou25-Sep-02 23:35
Chou25-Sep-02 23: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.