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

C / C++ / MFC

 
Questionusing CIPAddressCtrl::GetAddress Pin
viperlogic8-Mar-06 4:07
viperlogic8-Mar-06 4:07 
AnswerRe: using CIPAddressCtrl::GetAddress Pin
David Crow8-Mar-06 4:53
David Crow8-Mar-06 4:53 
GeneralRe: using CIPAddressCtrl::GetAddress Pin
viperlogic8-Mar-06 4:56
viperlogic8-Mar-06 4:56 
GeneralRe: using CIPAddressCtrl::GetAddress Pin
David Crow8-Mar-06 5:10
David Crow8-Mar-06 5:10 
GeneralRe: using CIPAddressCtrl::GetAddress Pin
viperlogic8-Mar-06 5:19
viperlogic8-Mar-06 5:19 
Questionwhat is difference of &buf and *buf?? Pin
beardy janggut8-Mar-06 3:56
beardy janggut8-Mar-06 3:56 
AnswerRe: what is difference of &buf and *buf?? Pin
toxcct8-Mar-06 4:13
toxcct8-Mar-06 4:13 
AnswerRe: what is difference of &buf and *buf?? Pin
Cedric Moonen8-Mar-06 4:18
Cedric Moonen8-Mar-06 4:18 
& is used to get the address of a variable: int Test = 7;, now, &Test will be the adress of the Test variable.

* is used to get the content pointed by a pointer. So, *(&Test) will give you 7 (wich is the content of the address).


beardy janggut wrote:
what is the advantages of VC++ compared to VBasic??


Lots of things have been written about this subject, it is not like saying C++ or VB is better. It depends of your expectations. (Althought, lot of people here will say you that VB is crap Poke tongue | ;-P ).


beardy janggut wrote:
i used fread to read a text file. then i want to insert the character of ' '(space) in betwen two words. does it effect the adress of the word in the file??


You can't insert text like that in a file. You need to create a new file, write the data that is before what you want to insert, then write what you want to insert and finally write the rest of the data.
QuestionBrowseObject Pin
MON2058-Mar-06 3:41
MON2058-Mar-06 3:41 
QuestionMS Word Pin
micutzu8-Mar-06 3:37
micutzu8-Mar-06 3:37 
AnswerRe: MS Word Pin
David Crow8-Mar-06 5:08
David Crow8-Mar-06 5:08 
GeneralRe: MS Word Pin
micutzu8-Mar-06 19:24
micutzu8-Mar-06 19:24 
AnswerRe: MS Word Pin
David Crow13-Mar-06 9:18
David Crow13-Mar-06 9:18 
QuestionUsing STL classes in a DLL Pin
pplshero548-Mar-06 3:34
pplshero548-Mar-06 3:34 
AnswerRe: Using STL classes in a DLL Pin
pplshero548-Mar-06 3:37
pplshero548-Mar-06 3:37 
AnswerRe: Using STL classes in a DLL Pin
toxcct8-Mar-06 3:40
toxcct8-Mar-06 3:40 
GeneralRe: Using STL classes in a DLL Pin
pplshero548-Mar-06 5:52
pplshero548-Mar-06 5:52 
QuestionPointers to IE Pin
folkenmax8-Mar-06 3:11
folkenmax8-Mar-06 3:11 
AnswerRe: Pointers to IE Pin
Hamid_RT8-Mar-06 7:50
Hamid_RT8-Mar-06 7:50 
GeneralRe: Pointers to IE Pin
folkenmax8-Mar-06 8:10
folkenmax8-Mar-06 8:10 
GeneralRe: Pointers to IE Pin
Hamid_RT8-Mar-06 8:52
Hamid_RT8-Mar-06 8:52 
GeneralRe: Pointers to IE Pin
folkenmax8-Mar-06 8:59
folkenmax8-Mar-06 8:59 
GeneralRe: Pointers to IE Pin
Hamid_RT8-Mar-06 9:14
Hamid_RT8-Mar-06 9:14 
GeneralRe: Pointers to IE Pin
folkenmax8-Mar-06 9:18
folkenmax8-Mar-06 9:18 
GeneralRe: Pointers to IE Pin
Hamid_RT8-Mar-06 9:27
Hamid_RT8-Mar-06 9:27 

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.