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

C / C++ / MFC

 
AnswerRe: Trouble using namespace System Pin
Jijo.Raj7-Jan-09 6:57
Jijo.Raj7-Jan-09 6:57 
GeneralRe: Trouble using namespace System Pin
linkfitz7-Jan-09 8:31
linkfitz7-Jan-09 8:31 
GeneralRe: Trouble using namespace System Pin
Jijo.Raj7-Jan-09 9:17
Jijo.Raj7-Jan-09 9:17 
QuestionAudio Line in Pin
surger17-Jan-09 4:56
surger17-Jan-09 4:56 
AnswerRe: Audio Line in Pin
Code-o-mat7-Jan-09 5:18
Code-o-mat7-Jan-09 5:18 
AnswerRe: Audio Line in Pin
Stuart Dootson7-Jan-09 5:33
professionalStuart Dootson7-Jan-09 5:33 
Question.vssscc file and Visual Source Safe Pin
Like2Byte7-Jan-09 4:23
Like2Byte7-Jan-09 4:23 
QuestionNeed help for numericupdown Pin
sai567-Jan-09 4:18
sai567-Jan-09 4:18 
Hi~I am working a window form , with a picture box,label and numericUpDown
the picture box's image is like a compass ,when I change the value in numericUpDown->value, it is from 180 to -180, left is +ve and right side is -ve.

The label will show the corresponding value like north,N30E....
but when I work in the from 90 to 180,
what I decide is an eqatuion like numericUpDown->value - 2*n,where n is from 1 to 89.
There is no problem when I increase it from 91 to 179,it will shw the correct value from N89E to N1E, but when from 179 to 91,there will be problem. Moreover, if the numericUpDown->value is just change up and down, bb will also accumulate..so the value display in the label will be wrong...I really don't know how to write...

if(numericUpDown2->Value > 90 && numericUpDown2->Value < 180)
{ //a= numericUpDown2->Value;
cc = Convert::ToDouble(numericUpDown2->Value);
cc=cc-(2*bb);
aa=Convert::ToString(cc);
if(bb<89)
{bb=bb+1;}
else
{bb=1;}
label12->Text="N"+aa+"E";

}
AnswerRe: Need help for numericupdown Pin
Iain Clarke, Warrior Programmer7-Jan-09 22:59
Iain Clarke, Warrior Programmer7-Jan-09 22:59 
QuestionConcept/example for virtual list Pin
nobaq7-Jan-09 4:10
nobaq7-Jan-09 4:10 
AnswerRe: Concept/example for virtual list Pin
Stuart Dootson7-Jan-09 4:34
professionalStuart Dootson7-Jan-09 4:34 
GeneralRe: Concept/example for virtual list Pin
nobaq7-Jan-09 5:35
nobaq7-Jan-09 5:35 
GeneralRe: Concept/example for virtual list Pin
nobaq7-Jan-09 6:04
nobaq7-Jan-09 6:04 
GeneralRe: Concept/example for virtual list Pin
Stuart Dootson7-Jan-09 8:44
professionalStuart Dootson7-Jan-09 8:44 
GeneralRe: Concept/example for virtual list Pin
Stuart Dootson7-Jan-09 8:49
professionalStuart Dootson7-Jan-09 8:49 
GeneralRe: Concept/example for virtual list Pin
Stuart Dootson7-Jan-09 8:40
professionalStuart Dootson7-Jan-09 8:40 
QuestionRe: Concept/example for virtual list Pin
David Crow7-Jan-09 5:33
David Crow7-Jan-09 5:33 
GeneralRe: Concept/example for virtual list Pin
nobaq7-Jan-09 6:00
nobaq7-Jan-09 6:00 
AnswerRe: Concept/example for virtual list Pin
Maximilien7-Jan-09 5:42
Maximilien7-Jan-09 5:42 
GeneralRe: Concept/example for virtual list Pin
nobaq7-Jan-09 7:17
nobaq7-Jan-09 7:17 
Questionimapi2 cd name Pin
meme817-Jan-09 3:52
meme817-Jan-09 3:52 
Questionwhy SubclassWindow fails? [modified] Pin
SanjaySMK7-Jan-09 3:51
SanjaySMK7-Jan-09 3:51 
AnswerRe: why SubclassWindow fails? Pin
Code-o-mat7-Jan-09 5:05
Code-o-mat7-Jan-09 5:05 
Questionreplace CMapStringToOb by standard C Pin
RedSonja7-Jan-09 2:28
RedSonja7-Jan-09 2:28 
AnswerRe: replace CMapStringToOb by standard C Pin
CPallini7-Jan-09 2:54
mveCPallini7-Jan-09 2:54 

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.