Click here to Skip to main content
15,890,186 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionwhy m_hWnd=0x00000000? Pin
xjbetter9-May-06 16:36
xjbetter9-May-06 16:36 
AnswerRe: why m_hWnd=0x00000000? Pin
Stephen Hewitt9-May-06 16:45
Stephen Hewitt9-May-06 16:45 
GeneralRe: why m_hWnd=0x00000000? Pin
Maxwell Chen9-May-06 23:00
Maxwell Chen9-May-06 23:00 
Questionwhy memory DC often cease to be effective? Pin
snowheavy9-May-06 15:33
snowheavy9-May-06 15:33 
AnswerRe: why memory DC often cease to be effective? Pin
voorugonda prashanth9-May-06 18:06
voorugonda prashanth9-May-06 18:06 
QuestionNeed a Help Pin
shereem khaleel9-May-06 14:36
shereem khaleel9-May-06 14:36 
AnswerRe: Need a Help Pin
Chris Losinger9-May-06 16:20
professionalChris Losinger9-May-06 16:20 
QuestionDose This True ???????????? Pin
shereem khaleel9-May-06 13:45
shereem khaleel9-May-06 13:45 
So Dose It True ?????????????

i write this code to find this formula when the number is too big
result = pow( base , power ) % mod

long MODLD( long base , long power , long mod )
{
long result = base ;
long i = power ;

if( i % 2 != 0 )
{
i-- ;
}

for( ; i > 1 ; )
{
result = ( result * result ) % mod ;
// cout<
AnswerRe: Dose This True ???????????? Pin
Aqueel9-May-06 17:47
Aqueel9-May-06 17:47 
AnswerRe: Dose This True ???????????? Pin
Maxwell Chen9-May-06 18:27
Maxwell Chen9-May-06 18:27 
QuestionRead Hexadecimal Number Pin
shereem khaleel9-May-06 13:41
shereem khaleel9-May-06 13:41 
AnswerRe: Read Hexadecimal Number Pin
patnsnaudy9-May-06 14:30
patnsnaudy9-May-06 14:30 
QuestionRegOpenKeyEx Question Pin
maneor9-May-06 12:57
maneor9-May-06 12:57 
AnswerRe: RegOpenKeyEx Question Pin
Nibu babu thomas9-May-06 18:59
Nibu babu thomas9-May-06 18:59 
GeneralRe: RegOpenKeyEx Question Pin
maneor10-May-06 12:40
maneor10-May-06 12:40 
GeneralRe: RegOpenKeyEx Question Pin
Nibu babu thomas10-May-06 17:25
Nibu babu thomas10-May-06 17:25 
AnswerRe: RegOpenKeyEx Question Pin
Frank K9-May-06 20:25
Frank K9-May-06 20:25 
QuestionCombo box control Pin
elephantstar9-May-06 12:21
elephantstar9-May-06 12:21 
QuestionLoading DLL inside the code Pin
Nacho Chip9-May-06 12:12
Nacho Chip9-May-06 12:12 
AnswerRe: Loading DLL inside the code Pin
Nibu babu thomas9-May-06 18:56
Nibu babu thomas9-May-06 18:56 
AnswerRe: Loading DLL inside the code Pin
Hamid_RT9-May-06 19:19
Hamid_RT9-May-06 19:19 
QuestionMDI Question Pin
BlitzPackage9-May-06 10:41
BlitzPackage9-May-06 10:41 
AnswerRe: MDI Question Pin
Cool Ju9-May-06 21:01
Cool Ju9-May-06 21:01 
GeneralMDI Question Pin
BlitzPackage10-May-06 2:45
BlitzPackage10-May-06 2:45 
GeneralRe: MDI Question Pin
Cool Ju10-May-06 21:23
Cool Ju10-May-06 21:23 

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.