Click here to Skip to main content
15,888,221 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Create a dialog Pin
john563223-Dec-07 20:18
john563223-Dec-07 20:18 
GeneralRe: Create a dialog Pin
Hamid_RT23-Dec-07 20:46
Hamid_RT23-Dec-07 20:46 
GeneralRe: Create a dialog Pin
_AnsHUMAN_ 23-Dec-07 20:07
_AnsHUMAN_ 23-Dec-07 20:07 
GeneralRe: Create a dialog Pin
only coding23-Dec-07 21:14
only coding23-Dec-07 21:14 
GeneralRe: Create a dialog Pin
Nishad S23-Dec-07 21:42
Nishad S23-Dec-07 21:42 
GeneralRe: Create a dialog Pin
Bram van Kampen24-Dec-07 13:31
Bram van Kampen24-Dec-07 13:31 
QuestionHow can I get the IP automatically? Pin
Mension23-Dec-07 19:40
Mension23-Dec-07 19:40 
GeneralRe: How can I get the IP automatically? Pin
only coding23-Dec-07 19:47
only coding23-Dec-07 19:47 
struct hostent* phostent;
char name[128];
gethostname( name, 128 );
phostent = gethostbyname( name );
if( phostent )
{
CString strIP = inet_ntoa( *(in_addr*)phostent->h_addr_list[0] );
}

Are you have gtalk ? please add me: xiangyangzhao@gmail.com

GeneralRe: How can I get the IP automatically? [modified] Pin
Mension23-Dec-07 23:26
Mension23-Dec-07 23:26 
Questionhow to change the location of a directory Pin
rajneshmalik23-Dec-07 18:38
rajneshmalik23-Dec-07 18:38 
AnswerRe: how to change the location of a directory Pin
Sarath C23-Dec-07 19:01
Sarath C23-Dec-07 19:01 
GeneralRe: how to change the location of a directory Pin
rajneshmalik23-Dec-07 22:07
rajneshmalik23-Dec-07 22:07 
GeneralRe: how to change the location of a directory Pin
CPallini23-Dec-07 22:11
mveCPallini23-Dec-07 22:11 
GeneralRe: how to change the location of a directory Pin
rajneshmalik23-Dec-07 23:13
rajneshmalik23-Dec-07 23:13 
AnswerRe: how to change the location of a directory Pin
Nishad S23-Dec-07 19:08
Nishad S23-Dec-07 19:08 
AnswerRe: how to change the location of a directory Pin
Hamid_RT23-Dec-07 19:58
Hamid_RT23-Dec-07 19:58 
Questionhow to get import dll from the .dll file Pin
trioum23-Dec-07 18:23
trioum23-Dec-07 18:23 
AnswerRe: how to get import dll from the .dll file Pin
CPallini23-Dec-07 21:21
mveCPallini23-Dec-07 21:21 
GeneralRe: how to get import dll from the .dll file Pin
H4u3224-Dec-07 21:23
H4u3224-Dec-07 21:23 
GeneralSkinning the Systray Clock Pin
Nishad S23-Dec-07 18:10
Nishad S23-Dec-07 18:10 
GeneralRegarding CFile/CArchive usage Pin
H4u3223-Dec-07 16:53
H4u3223-Dec-07 16:53 
GeneralRe: Regarding CFile/CArchive usage Pin
CPallini23-Dec-07 21:25
mveCPallini23-Dec-07 21:25 
GeneralDLL_THREAD_ATTACH Pin
ForNow23-Dec-07 16:19
ForNow23-Dec-07 16:19 
GeneralRe: DLL_THREAD_ATTACH Pin
CPallini23-Dec-07 21:29
mveCPallini23-Dec-07 21:29 
GeneralRe: DLL_THREAD_ATTACH Pin
ForNow24-Dec-07 0:45
ForNow24-Dec-07 0:45 

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.