Click here to Skip to main content
15,904,153 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: String Conversion Pin
Nibu babu thomas19-May-06 20:20
Nibu babu thomas19-May-06 20:20 
GeneralRe: String Conversion Pin
NiceNaidu19-May-06 20:32
NiceNaidu19-May-06 20:32 
GeneralRe: String Conversion Pin
Nibu babu thomas19-May-06 20:36
Nibu babu thomas19-May-06 20:36 
GeneralRe: String Conversion [modifed] Pin
satsumatable19-May-06 20:42
satsumatable19-May-06 20:42 
QuestionMutiple document Templates Pin
RockyJames19-May-06 19:45
RockyJames19-May-06 19:45 
AnswerRe: Mutiple document Templates Pin
Nibu babu thomas19-May-06 19:57
Nibu babu thomas19-May-06 19:57 
GeneralRe: Mutiple document Templates Pin
RockyJames19-May-06 20:27
RockyJames19-May-06 20:27 
JokeRe: Mutiple document Templates Pin
Nibu babu thomas19-May-06 20:39
Nibu babu thomas19-May-06 20:39 
QuestionHow To Trap esc key code for Dailog Application Pin
CodeVarma19-May-06 19:24
CodeVarma19-May-06 19:24 
AnswerRe: How To Trap esc key code for Dailog Application [modifed] Pin
_AnsHUMAN_ 19-May-06 19:26
_AnsHUMAN_ 19-May-06 19:26 
AnswerRe: How To Trap esc key code for Dailog Application Pin
Laxman Auti19-May-06 20:05
Laxman Auti19-May-06 20:05 
AnswerRe: How To Trap esc key code for Dailog Application Pin
Rajesh R Subramanian19-May-06 21:17
professionalRajesh R Subramanian19-May-06 21:17 
Questionl don't know how to use iocp? please tell me how to do? Pin
YuxiLv19-May-06 16:44
YuxiLv19-May-06 16:44 
AnswerRe: l don't know how to use iocp? please tell me how to do? Pin
Nibu babu thomas19-May-06 19:37
Nibu babu thomas19-May-06 19:37 
Answerl am sorry! Pin
YuxiLv20-May-06 1:16
YuxiLv20-May-06 1:16 
QuestionHow to read parllel port Pin
mbkh_8419-May-06 15:56
mbkh_8419-May-06 15:56 
AnswerRe: How to read parllel port Pin
kk.tvm19-May-06 20:52
kk.tvm19-May-06 20:52 
GeneralRe: How to read parllel port Pin
Hamid_RT20-May-06 1:02
Hamid_RT20-May-06 1:02 
QuestionRounding up to a multiple of a number Pin
Remco Hoogenboezem19-May-06 11:03
Remco Hoogenboezem19-May-06 11:03 
AnswerRe: Rounding up to a multiple of a number Pin
Nibu babu thomas19-May-06 18:50
Nibu babu thomas19-May-06 18:50 
AnswerRe: Rounding up to a multiple of a number Pin
Laxman Auti19-May-06 19:11
Laxman Auti19-May-06 19:11 
QuestionProblem with Linked List Pin
CoffeeAddict1919-May-06 9:49
CoffeeAddict1919-May-06 9:49 
AnswerRe: Problem with Linked List Pin
led mike19-May-06 11:22
led mike19-May-06 11:22 
AnswerRe: Problem with Linked List Pin
_AnsHUMAN_ 19-May-06 18:33
_AnsHUMAN_ 19-May-06 18:33 
AnswerRe: Problem with Linked List Pin
Laxman Auti19-May-06 19:45
Laxman Auti19-May-06 19:45 
CoffeeAddict19 wrote:
WeaveLine1 = "Weave AR Range: " + "/t/t" + tempARMin + " - " + tempARMax;

Use assign method of string like following:
WeaveLine1.assign("Weave AR Range: " + "/t/t" + tempARMin + " - " + tempARMax);
CoffeeAddict19 wrote:
Buffer = Buffer + WeaveLine1 + "/n" + WeaveLine2 + "/n" + WeaveLine3 + "/n" + WeaveLine4;

for appending use following code
Buffer.append(WeaveLine1 + "/n" + WeaveLine2 + "/n" + WeaveLine3 + "/n" + WeaveLine4);


Knock out 't' from can't,
You can if you think you can
Cool | :cool:

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.