Prev: MFC executable is 100% slower on faster machine
Next: CSliderCtrl : Overwriting the tooltip text
From: SteveR on 24 Jan 2010 17:07 I have three source files that contain an identical block of code which builds an array: num_637->Add(Numbers5); num_637->Add(Numbers6); num_637->Add(Numbers7); num_637->Add(Numbers8); num_637->Add(Numbers9); num_637->Add(Numbers10); num_637->SetCatLimit(); num_637->SetShuffleSwitch(2); In one of the files, after the last Add, Intellisense does not operate. The other two files function normally with Intellisense. Even copying and pasting the entire section of code from the other two files has no effect, nor does deleting the .ncb file. Commenting out the last Add line results in Intellisense working with the two following lines but not for subesequent lines. Would anyone have a suggestion or explanation regarding this problem?
From: Jonathan Wood on 24 Jan 2010 20:23 The most common reasons I see Intellisense isn't working is: 1. Hasn't caught up yet--wait longer. 2. Syntax error in code--Compile and make sure there are no errors. 3. Indirect included. For example, when you include a file that includes a file, I've seen this prevent Intellisense from working--include the needed header file directly. -- Jonathan Wood SoftCircuits Programming http://www.softcircuits.com "SteveR" <maxsrussellatremovethisembarqmail.com> wrote in message news:uIu6tGUnKHA.5696(a)TK2MSFTNGP04.phx.gbl... > I have three source files that contain an identical block of code which > builds an array: > > num_637->Add(Numbers5); > num_637->Add(Numbers6); > num_637->Add(Numbers7); > num_637->Add(Numbers8); > num_637->Add(Numbers9); > num_637->Add(Numbers10); > num_637->SetCatLimit(); > num_637->SetShuffleSwitch(2); > > In one of the files, after the last Add, Intellisense does not operate. > The other two files function normally with Intellisense. > > Even copying and pasting the entire section of code from the other two > files has no effect, nor does deleting the .ncb file. Commenting out the > last Add line results in Intellisense working with the two following lines > but not for subesequent lines. > > Would anyone have a suggestion or explanation regarding this problem? >
From: John H. on 26 Jan 2010 15:35 On Jan 24, 4:07 pm, "SteveR" <maxsrussellatremovethisembarqmail.com> wrote: > In one of the files, after the last Add, Intellisense does not operate. You could try deleting the workspace's .ncb and .opt files: http://groups.google.com/group/microsoft.public.vc.ide_general/browse_thread/thread/3114b09d372e6990/a8a830a794414c1d?hl=en
|
Pages: 1 Prev: MFC executable is 100% slower on faster machine Next: CSliderCtrl : Overwriting the tooltip text |