Click here to Skip to main content
15,913,669 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Keeping variables in memory Pin
jmkhael13-May-04 2:22
jmkhael13-May-04 2:22 
GeneralRe: Keeping variables in memory Pin
Joe Woodbury13-May-04 9:15
professionalJoe Woodbury13-May-04 9:15 
Generalmessy function that calculates values Pin
bhangie12-May-04 22:40
bhangie12-May-04 22:40 
GeneralRe: messy function that calculates values Pin
toxcct12-May-04 22:56
toxcct12-May-04 22:56 
GeneralRe: messy function that calculates values Pin
WoutL12-May-04 23:11
WoutL12-May-04 23:11 
GeneralRe: messy function that calculates values Pin
Maximilien13-May-04 2:08
Maximilien13-May-04 2:08 
GeneralRe: messy function that calculates values Pin
David Crow13-May-04 5:30
David Crow13-May-04 5:30 
GeneralRe: messy function that calculates values Pin
vividtang14-May-04 2:27
vividtang14-May-04 2:27 
#include<iostream>
#include<iomanip>
using namespace std;
void CalculateValues(const int &a, double *b, double &c)
//c only can be double,if float,then *b=c/d how to transfer from float to double
{c=5;
double d = 20.4;//only double.
if(a == 0)
{
//*a += 1;//error
c = a + d;
}
else
{
*b = c / d;

c =a - *b +d;
cout<<"a="<
GeneralAlpha-channel in the bitmap Pin
Eugene Pustovoyt12-May-04 22:23
Eugene Pustovoyt12-May-04 22:23 
GeneralRe: Alpha-channel in the bitmap Pin
Christopher Lloyd13-May-04 2:17
Christopher Lloyd13-May-04 2:17 
GeneralRe: Alpha-channel in the bitmap Pin
Eugene Pustovoyt13-May-04 2:56
Eugene Pustovoyt13-May-04 2:56 
GeneralRe: Alpha-channel in the bitmap Pin
Christopher Lloyd13-May-04 3:13
Christopher Lloyd13-May-04 3:13 
General//Need help in Directshow programming Pin
12-May-04 22:14
suss12-May-04 22:14 
GeneralRe: //Need help in Directshow programming Pin
Christopher Lloyd13-May-04 2:41
Christopher Lloyd13-May-04 2:41 
GeneralRe: //Need help in Directshow programming Pin
lonely_life13-May-04 15:59
lonely_life13-May-04 15:59 
GeneralSystem Lock Pin
Arnav12-May-04 21:38
Arnav12-May-04 21:38 
GeneralRe: System Lock Pin
bikram singh12-May-04 22:25
bikram singh12-May-04 22:25 
GeneralRe: System Lock Pin
David Crow13-May-04 5:36
David Crow13-May-04 5:36 
Generalproblem about tray icon Pin
benben12-May-04 21:32
benben12-May-04 21:32 
GeneralRe: problem about tray icon Pin
DaFrawg13-May-04 1:21
DaFrawg13-May-04 1:21 
GeneralVB to VC++ Coding Function Pin
rasha200312-May-04 20:52
rasha200312-May-04 20:52 
GeneralRe: VB to VC++ Coding Function Pin
bikram singh12-May-04 22:17
bikram singh12-May-04 22:17 
GeneralRe: VB to VC++ Coding Function Pin
rasha200312-May-04 22:43
rasha200312-May-04 22:43 
GeneralRe: VB to VC++ Coding Function Pin
jmkhael13-May-04 3:30
jmkhael13-May-04 3:30 
GeneralRe: VB to VC++ Coding Function Pin
rasha200314-May-04 3:38
rasha200314-May-04 3:38 

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.