Click here to Skip to main content
16,006,065 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Yet another problem with LPCTSTR 2 Pin
GDavy23-Jun-05 8:44
GDavy23-Jun-05 8:44 
GeneralRe: Yet another problem with LPCTSTR 2 Pin
Cedric Moonen23-Jun-05 8:45
Cedric Moonen23-Jun-05 8:45 
GeneralRe: Yet another problem with LPCTSTR 2 Pin
tomek1823-Jun-05 3:45
tomek1823-Jun-05 3:45 
GeneralRe: Yet another problem with LPCTSTR 2 Pin
GDavy23-Jun-05 3:59
GDavy23-Jun-05 3:59 
GeneralRe: Yet another problem with LPCTSTR 2 Pin
tomek1824-Jun-05 2:00
tomek1824-Jun-05 2:00 
GeneralDrawing Image on Device Context Pin
swati2423-Jun-05 2:27
swati2423-Jun-05 2:27 
Generalsave as html format Pin
Ashok_kavi23-Jun-05 1:19
Ashok_kavi23-Jun-05 1:19 
GeneralRe: save as html format Pin
khan++23-Jun-05 1:40
khan++23-Jun-05 1:40 
I assume you have the data in your variables.
Open a file on the HDD with extension ".html";
CString str, strData;
str = "<html>[DATA]</html>";
now, you insert data into strData like this:
for (i = 0; i < items_to_be_inserted; i++
{
strData += your_values[i];
strData += "<br>";
}
str.Replace("[DATA]",strData);
Now write str down to the file.
You can do some formatting on your code, like put it in tables etc. For that, contact an HTML programmer.


this is this.
Generalresx file use from plain C++ problem Pin
keletron23-Jun-05 0:13
keletron23-Jun-05 0:13 
Questionwhy does CreateInstance(&quot;ADODB.Connection&quot;) bring out exception? Pin
liuyue22-Jun-05 23:31
liuyue22-Jun-05 23:31 
AnswerRe: why does CreateInstance(&quot;ADODB.Connection&quot;) bring out exception? Pin
David Crow23-Jun-05 4:05
David Crow23-Jun-05 4:05 
Generalbroland c++ source code to visual c++ Pin
formula_200222-Jun-05 23:16
formula_200222-Jun-05 23:16 
GeneralRe: broland c++ source code to visual c++ Pin
Cedric Moonen22-Jun-05 23:24
Cedric Moonen22-Jun-05 23:24 
GeneralRe: broland c++ source code to visual c++ Pin
formula_200222-Jun-05 23:53
formula_200222-Jun-05 23:53 
GeneralRe: broland c++ source code to visual c++ Pin
toxcct23-Jun-05 0:40
toxcct23-Jun-05 0:40 
GeneralToggle Buttons Pin
Extreme_Coder22-Jun-05 23:02
Extreme_Coder22-Jun-05 23:02 
GeneralThread is needed Pin
Ghasrfakhri22-Jun-05 23:16
Ghasrfakhri22-Jun-05 23:16 
GeneralRe: Toggle Buttons Pin
khan++23-Jun-05 0:06
khan++23-Jun-05 0:06 
GeneralRe: Toggle Buttons Pin
David Crow23-Jun-05 4:07
David Crow23-Jun-05 4:07 
QuestionHow can i change color of a specific word in a sentence Pin
emmatty22-Jun-05 22:19
emmatty22-Jun-05 22:19 
AnswerRe: How can i change color of a specific word in a sentence Pin
Cedric Moonen22-Jun-05 22:25
Cedric Moonen22-Jun-05 22:25 
GeneralRe: How can i change color of a specific word in a sentence Pin
emmatty22-Jun-05 22:30
emmatty22-Jun-05 22:30 
GeneralRe: How can i change color of a specific word in a sentence Pin
ThatsAlok22-Jun-05 22:51
ThatsAlok22-Jun-05 22:51 
GeneralRe: How can i change color of a specific word in a sentence Pin
Cedric Moonen22-Jun-05 22:53
Cedric Moonen22-Jun-05 22:53 
GeneralRe: How can i change color of a specific word in a sentence Pin
ThatsAlok22-Jun-05 23:27
ThatsAlok22-Jun-05 23: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.