Click here to Skip to main content
15,922,894 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Run Console app and handle input and output Pin
Dudi Avramov21-Sep-02 23:26
Dudi Avramov21-Sep-02 23:26 
GeneralSet the items in the listbox. Pin
suresh_sathya20-Sep-02 1:17
suresh_sathya20-Sep-02 1:17 
GeneralRe: Set the items in the listbox. Pin
User 665820-Sep-02 1:39
User 665820-Sep-02 1:39 
Generalhandle within child window Pin
Anonymous20-Sep-02 1:18
Anonymous20-Sep-02 1:18 
GeneralRe: handle within child window Pin
Anonymous20-Sep-02 3:08
Anonymous20-Sep-02 3:08 
GeneralRe: handle within child window Pin
Anonymous20-Sep-02 20:06
Anonymous20-Sep-02 20:06 
GeneralCSliderCtrl and TB_THUMBTRACK Pin
Jawache20-Sep-02 0:30
Jawache20-Sep-02 0:30 
GeneralRe: CSliderCtrl and TB_THUMBTRACK Pin
Chris Losinger20-Sep-02 5:10
professionalChris Losinger20-Sep-02 5:10 
is there any reason you want to do a thumb-track on the slider? you get the same results by just using OnHScroll:

void CSettings::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar) 
{
   CSliderCtrl *theThing=(CSliderCtrl*)pScrollBar;

   if (theThing==(CSliderCtrl *)GetDlgItem(IDC_CONTROL_I_WANT_TO_WATCH)) 
   {
     pos = theThing->GetPos();
   }
}


this will be called every time the thumb moves (just like a THUMBTRACK event on a scrollbar)

-c


As always, it's bread and circuses. And while bread is down right now, circuses are way up.
GeneralRe: CSliderCtrl and TB_THUMBTRACK Pin
Jawache20-Sep-02 5:20
Jawache20-Sep-02 5:20 
Generaldifferent HWND, but same HDC Pin
mishgun20-Sep-02 0:16
mishgun20-Sep-02 0:16 
GeneralOpening only one instace of template in MDI Pin
bobs19-Sep-02 23:22
bobs19-Sep-02 23:22 
GeneralRe: Opening only one instace of template in MDI Pin
Ryan B.20-Sep-02 5:22
Ryan B.20-Sep-02 5:22 
GeneralRe: Opening only one instace of template in MDI Pin
bobs22-Sep-02 21:45
bobs22-Sep-02 21:45 
GeneralADO Pin
rrrado19-Sep-02 23:20
rrrado19-Sep-02 23:20 
GeneralGetLastError Pin
Mazdak19-Sep-02 22:48
Mazdak19-Sep-02 22:48 
GeneralRe: GetLastError Pin
Arjan Schouten19-Sep-02 23:37
Arjan Schouten19-Sep-02 23:37 
GeneralRe: GetLastError Pin
Lakitu19-Sep-02 23:37
Lakitu19-Sep-02 23:37 
GeneralTextbooks for advanced MDI database projects Pin
bobs19-Sep-02 22:41
bobs19-Sep-02 22:41 
GeneralRe: Textbooks for advanced MDI database projects Pin
Ryan B.20-Sep-02 5:23
Ryan B.20-Sep-02 5:23 
GeneralRe: Textbooks for advanced MDI database projects Pin
Neville Franks20-Sep-02 11:13
Neville Franks20-Sep-02 11:13 
QuestionHow to find/get a remote cd/dvd-rom by interne?t Pin
chen19-Sep-02 22:39
chen19-Sep-02 22:39 
AnswerRe: How to find/get a remote cd/dvd-rom by interne?t Pin
Mike Nordell20-Sep-02 4:53
Mike Nordell20-Sep-02 4:53 
General.NET and MFC ! Pin
Hadi Rezaee19-Sep-02 21:56
Hadi Rezaee19-Sep-02 21:56 
GeneralRe: .NET and MFC ! Pin
Nish Nishant19-Sep-02 22:11
sitebuilderNish Nishant19-Sep-02 22:11 
GeneralRe: .NET and MFC ! Pin
Stephane Rodriguez.19-Sep-02 23:13
Stephane Rodriguez.19-Sep-02 23:13 

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.