Click here to Skip to main content
15,897,371 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
JokeRe: std::string to char* Pin
CPallini6-Jul-08 0:03
mveCPallini6-Jul-08 0:03 
GeneralRe: std::string to char* Pin
Stephen Hewitt1-Jul-08 14:25
Stephen Hewitt1-Jul-08 14:25 
GeneralRe: std::string to char* Pin
Stephen Hewitt1-Jul-08 14:39
Stephen Hewitt1-Jul-08 14:39 
Questiondialog color Pin
projectip1-Jul-08 1:42
projectip1-Jul-08 1:42 
AnswerRe: dialog color Pin
KarstenK1-Jul-08 2:52
mveKarstenK1-Jul-08 2:52 
AnswerRe: dialog color Pin
Hamid_RT1-Jul-08 20:33
Hamid_RT1-Jul-08 20:33 
QuestionResizing Static Text control Pin
VCProgrammer1-Jul-08 1:08
VCProgrammer1-Jul-08 1:08 
AnswerRe: Resizing Static Text control [modified] Pin
leonigah1-Jul-08 1:51
leonigah1-Jul-08 1:51 
BOOL CMyDlg::OnInitDialog()
{
CDialog::OnInitDialog();
CString str;
CRect rect;
GetDlgItem(IDC_STATIC1)->GetWindowText(str);
int iLen = str.GetLength();
int iWidth = 8*iLen;//assume 8 pixel per character
GetDlgItem(IDC_STATIC1)->GetWindowRect(rect);
rect.right = iWidth;
GetDlgItem(IDC_STATIC1)->MoveWindow(rect);
return TRUE;
}

Nigah M Manzoor

modified on Tuesday, July 1, 2008 7:58 AM

GeneralRe: Resizing Static Text control Pin
VCProgrammer1-Jul-08 1:58
VCProgrammer1-Jul-08 1:58 
GeneralRe: Resizing Static Text control Pin
leonigah1-Jul-08 2:12
leonigah1-Jul-08 2:12 
GeneralRe: Resizing Static Text control Pin
VCProgrammer1-Jul-08 2:20
VCProgrammer1-Jul-08 2:20 
GeneralRe: Resizing Static Text control Pin
savita_Bgm2-May-11 20:53
savita_Bgm2-May-11 20:53 
GeneralRe: Resizing Static Text control Pin
hafizmwasim31-May-11 21:42
hafizmwasim31-May-11 21:42 
QuestionAPI for Formatting NTFS volume Pin
Anorexic Tribble1-Jul-08 1:05
Anorexic Tribble1-Jul-08 1:05 
QuestionSystem Command: Pin
T.RATHA KRISHNAN30-Jun-08 22:41
T.RATHA KRISHNAN30-Jun-08 22:41 
AnswerRe: System Command: Pin
SandipG 30-Jun-08 22:46
SandipG 30-Jun-08 22:46 
GeneralRe: System Command: Pin
T.RATHA KRISHNAN30-Jun-08 23:01
T.RATHA KRISHNAN30-Jun-08 23:01 
GeneralRe: System Command: Pin
toxcct30-Jun-08 23:08
toxcct30-Jun-08 23:08 
GeneralRe: System Command: Pin
SandipG 30-Jun-08 23:08
SandipG 30-Jun-08 23:08 
AnswerRe: System Command: Pin
toxcct30-Jun-08 22:49
toxcct30-Jun-08 22:49 
JokeRe: System Command: Pin
KarstenK30-Jun-08 23:16
mveKarstenK30-Jun-08 23:16 
AnswerRe: System Command: <b>[REPOST]</b> Pin
_AnsHUMAN_ 30-Jun-08 23:21
_AnsHUMAN_ 30-Jun-08 23:21 
AnswerRe: System Command: Pin
_AnsHUMAN_ 30-Jun-08 23:33
_AnsHUMAN_ 30-Jun-08 23:33 
GeneralRe: System Command: Pin
toxcct1-Jul-08 1:30
toxcct1-Jul-08 1:30 
GeneralRe: System Command: Pin
_AnsHUMAN_ 1-Jul-08 2:16
_AnsHUMAN_ 1-Jul-08 2:16 

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.