Click here to Skip to main content
15,913,709 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to get information about hardwares installed i my PC Pin
patel_sandeep5-Jan-05 22:30
patel_sandeep5-Jan-05 22:30 
AnswerRe: How to get information about hardwares installed i my PC Pin
ThatsAlok5-Jan-05 22:43
ThatsAlok5-Jan-05 22:43 
AnswerRe: How to get information about hardwares installed i my PC Pin
kramesh6-Jan-05 1:30
kramesh6-Jan-05 1:30 
GeneralMessage exchange between applications Pin
raghav19725-Jan-05 21:53
raghav19725-Jan-05 21:53 
GeneralRe: Message exchange between applications Pin
Yulianto.5-Jan-05 22:44
Yulianto.5-Jan-05 22:44 
GeneralRe: Message exchange between applications Pin
Martin Koorts6-Jan-05 3:25
Martin Koorts6-Jan-05 3:25 
Generalabout set font Pin
StoreErin5-Jan-05 21:34
StoreErin5-Jan-05 21:34 
GeneralRe: about set font Pin
ThatsAlok6-Jan-05 1:00
ThatsAlok6-Jan-05 1:00 
let IDC_LIST1 is ID of ListCtrl,
You can use this Small Piece of code to set Font
of CListCtrl.

<font color="00ff00">//Font Varible</font>
CFont m_fArial;

<font color="00ff00">
//Create Arial Font
</font>

m_fArial.CreateFont
 (14,0,0,0,FW_BOLD,
  FALSE,FALSE,FALSE,
  DEFAULT_CHARSET,
  OUT_DEFAULT_PRECIS ,
  CLIP_DEFAULT_PRECIS,
  DEFAULT_QUALITY,
  DEFAULT_PITCH,
  "Arial");

<font color="00ff00">
//Get Pointer of ListCtrl
</font>

CListCtrl *m_pList=(CListCtrl*)GetDlgItem(IDC_LIST1);

<font color="00ff00">
//Set Font
</font>

if(m_pList)
   m_pList->SetFont(&m_fArial);





"I Think this Will Help"
 Alok Gupta
 visit me at http://www.thisisalok.tk

GeneralRe: about set font Pin
StoreErin6-Jan-05 1:43
StoreErin6-Jan-05 1:43 
GeneralRe: about set font Pin
Martin Koorts6-Jan-05 3:31
Martin Koorts6-Jan-05 3:31 
GeneralRe: about set font Pin
basementman6-Jan-05 5:10
basementman6-Jan-05 5:10 
GeneralRe: about set font Pin
ThatsAlok6-Jan-05 6:39
ThatsAlok6-Jan-05 6:39 
GeneralRe: about set font Pin
StoreErin6-Jan-05 15:10
StoreErin6-Jan-05 15:10 
GeneralGDI Object Accumulation Pin
Garth Watkins5-Jan-05 20:41
Garth Watkins5-Jan-05 20:41 
GeneralInserting Row thru OLEDB Pin
Chitrack5-Jan-05 20:19
Chitrack5-Jan-05 20:19 
GeneralRe: Inserting Row thru OLEDB Pin
IsaacLitingjun5-Jan-05 21:22
IsaacLitingjun5-Jan-05 21:22 
GeneralRe: Inserting Row thru OLEDB Pin
Chitrack5-Jan-05 21:38
Chitrack5-Jan-05 21:38 
GeneralHello! EveryOne!! Pin
lzzqqq5-Jan-05 19:46
lzzqqq5-Jan-05 19:46 
GeneralRe: Hello! EveryOne!! Pin
IsaacLitingjun5-Jan-05 21:31
IsaacLitingjun5-Jan-05 21:31 
GeneralRe: Hello! EveryOne!! Pin
toxcct6-Jan-05 3:25
toxcct6-Jan-05 3:25 
AnswerRe: passing parameters to Winexec() command help? Pin
lzzqqq5-Jan-05 19:24
lzzqqq5-Jan-05 19:24 
GeneralRe: passing parameters to Winexec() command help? Pin
lzzqqq5-Jan-05 19:28
lzzqqq5-Jan-05 19:28 
Generalplot graphs Pin
RealCoder5-Jan-05 19:05
RealCoder5-Jan-05 19:05 
GeneralRe: plot graphs Pin
jan larsen7-Jan-05 2:39
jan larsen7-Jan-05 2:39 
Questionhow to send a Alt+A message to a window Pin
Tony He5-Jan-05 18:26
Tony He5-Jan-05 18:26 

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.