Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tas1326

    Line Numbers in MS VC++ 6.0 IDE

    I am probably spoiled by writing scripts in vi and Java code in UltraEdit which can place the line numbers next to the code. UltraEdit also shows row and column like MSVC. Really nothing more than a personal preference. Anyway, no it is not basic, and we can all be thankful of that. The...
  2. tas1326

    Line Numbers in MS VC++ 6.0 IDE

    I am probably spoiled by writing scripts in vi and Java code in UltraEdit which can place the line numbers next to the code. UltraEdit also shows row and column like MSVC. Really nothing more than a personal preference. Anyway, no it is not basic, and we can all be thankful of that. The...
  3. tas1326

    Multiple Initialization Error in VC++ 6

    Well, someone I worked with actually found the answer buried down in a listing of MS VC++ non standard functionality. There are 2 options to remedy this. 1. Under Project->Project Settings->C/C++->Customize click Disable Language Extensions (/Za switch). You will probably have issues using...
  4. tas1326

    Multiple Initialization Error in VC++ 6

    Does anyone know a way around the multiple initialization error caused by code similar to the following? for(int i=0;i<10;i++) . . . for(int i=0;i<20;i++) Throws the following error on compile: error C2374: 'i' : redefinition; multiple initialization Scoping rules would, by my understanding...
  5. tas1326

    Line Numbers in MS VC++ 6.0 IDE

    I have got some gigantic source files to clean up and line numbers in the VC++ IDE would be helpful. I have dug all over in the IDE and cannot find a switch. I never really needed the line numbers before so I never thought about it. Is this an option or does anyone know of an easy way to set...

Part and Inventory Search

Back
Top