Click here to Skip to main content
15,917,005 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralKeeping variables in memory Pin
V.12-May-04 23:14
professionalV.12-May-04 23:14 
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 
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 
thanx .. i tried them and they remove the error ... but i stil unable to get the right valuse for arabic char
in VB the code i get for charater "ب" is 0628
while in VC++ function i get for thye same character 00C8
i change the VC++ like that :
-----------------------------------------------------------
CString s,h1,h2,h,x;
x="ب";
int i;
TBYTE *b;
b=(TBYTE*)x.GetBuffer(x.GetLength());
i=0;
s="";
int xlen=x.GetLength();
while (i <= xlen)
{
h1.Format("%02x",b[i]);
i++;
h2.Format("%02x",b[i]);
i++;
h=h2+h1;
s=s+h;

}
MessageBox(s);
----------------------------------------------------------

so any idea for this differen valuse i get ..?????????!!!!!!
GeneralRe: VB to VC++ Coding Function Pin
jmkhael13-May-04 3:30
jmkhael13-May-04 3:30 

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.