Click here to Skip to main content
15,910,797 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Terminating a running process. Pin
Renjith Ramachandran13-Sep-02 0:54
Renjith Ramachandran13-Sep-02 0:54 
GeneralHTML-View Pin
Anonymous12-Sep-02 20:36
Anonymous12-Sep-02 20:36 
GeneralRe: HTML-View Pin
ColinDavies12-Sep-02 21:58
ColinDavies12-Sep-02 21:58 
GeneralRe: HTML-View Pin
Anonymous12-Sep-02 23:57
Anonymous12-Sep-02 23:57 
GeneralRe: HTML-View Pin
rrrado13-Sep-02 1:07
rrrado13-Sep-02 1:07 
GeneralRe: HTML-View Pin
Anonymous15-Sep-02 22:51
Anonymous15-Sep-02 22:51 
GeneralCDatabase and DSNs :-( Pin
Nish Nishant12-Sep-02 20:31
sitebuilderNish Nishant12-Sep-02 20:31 
GeneralRe: CDatabase and DSNs :-( Pin
Pavel Klocek12-Sep-02 21:07
Pavel Klocek12-Sep-02 21:07 
GeneralRe: CDatabase and DSNs :-( Pin
Nish Nishant12-Sep-02 21:12
sitebuilderNish Nishant12-Sep-02 21:12 
GeneralRe: CDatabase and DSNs :-( Pin
Pavel Klocek12-Sep-02 21:24
Pavel Klocek12-Sep-02 21:24 
GeneralRe: CDatabase and DSNs :-( Pin
Pavel Klocek12-Sep-02 21:32
Pavel Klocek12-Sep-02 21:32 
GeneralRe: CDatabase and DSNs :-( Pin
Nish Nishant12-Sep-02 21:46
sitebuilderNish Nishant12-Sep-02 21:46 
GeneralRe: CDatabase and DSNs :-( Pin
Pavel Klocek12-Sep-02 22:06
Pavel Klocek12-Sep-02 22:06 
GeneralADO records count Pin
Anonymous12-Sep-02 19:45
Anonymous12-Sep-02 19:45 
GeneralRe: ADO records count Pin
anju12-Sep-02 22:31
anju12-Sep-02 22:31 
GeneralRe: ADO records count Pin
Anonymous12-Sep-02 22:34
Anonymous12-Sep-02 22:34 
GeneralRe: ADO records count Pin
anju12-Sep-02 23:58
anju12-Sep-02 23:58 
GeneralSet the time object (eg using COleDateTime) 5 minutes ahead of the currect time Pin
SPGV12-Sep-02 19:27
SPGV12-Sep-02 19:27 
GeneralRe: Set the time object (eg using COleDateTime) 5 minutes ahead of the currect time Pin
Pavel Klocek12-Sep-02 19:58
Pavel Klocek12-Sep-02 19:58 
Generalfree() problem Pin
Anonymous12-Sep-02 19:13
Anonymous12-Sep-02 19:13 
GeneralRe: free() problem Pin
Chris Losinger12-Sep-02 19:42
professionalChris Losinger12-Sep-02 19:42 
GeneralRe: free() problem Pin
Bill Wilson13-Sep-02 10:45
Bill Wilson13-Sep-02 10:45 
In addition to Chris' suggestions, you need to allocate nFibo+1 elelents.

FiboArray[0] is element #1
FiboArray[1] is element #2 so minimum allocation is 2 = (nFibo=1) + 1 (like Chris said)
FiboArray[2[ is element #3 so minimum allocation is 3 = (nFibo=2) + 1
& etc.
QuestionHow to prohibit users from changing the system time? Pin
neumedical12-Sep-02 15:02
neumedical12-Sep-02 15:02 
AnswerRe: How to prohibit users from changing the system time? Pin
Bill Wilson13-Sep-02 10:36
Bill Wilson13-Sep-02 10:36 
GeneralRe: How to prohibit users from changing the system time? Pin
neumedical15-Sep-02 18:01
neumedical15-Sep-02 18:01 

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.