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

C / C++ / MFC

 
GeneralRe: Localization tool Pin
Nicolas Bonamy11-Mar-03 3:09
Nicolas Bonamy11-Mar-03 3:09 
QuestionHelp me about the file from network? Pin
dxhdxh11-Mar-03 2:36
dxhdxh11-Mar-03 2:36 
AnswerRe: Help me about the file from network? Pin
AlexO11-Mar-03 2:56
AlexO11-Mar-03 2:56 
AnswerRe: Help me about the file from network? Pin
Joel Lucsy11-Mar-03 3:33
Joel Lucsy11-Mar-03 3:33 
GeneralHELP!!! Pin
user5611-Mar-03 2:02
user5611-Mar-03 2:02 
GeneralRe: HELP!!! Pin
benjymous11-Mar-03 2:26
benjymous11-Mar-03 2:26 
GeneralProgress Bar in WinAPI Pin
wavewave11-Mar-03 1:53
wavewave11-Mar-03 1:53 
GeneralRe: Progress Bar in WinAPI Pin
MAAK11-Mar-03 9:18
MAAK11-Mar-03 9:18 
Firstly, you just add a progress bar control into your dialog resource, then using
LRESULT SendMessage(<br />
  HWND hWnd,      // handle to destination window<br />
  UINT Msg,       // message<br />
  WPARAM wParam,  // first message parameter<br />
  LPARAM lParam   // second message parameter<br />
);

you can set all the parameters of the control after getting its handle using GetDlgItem().
For e.g.
<br />
HWND hProg = GetDlgItem(hDlg, IDC_MYPROGBAR);<br />
SendMessage(hProg, PBM_SETRANGE32, 0, 100);

will set the range of the control from 0 to 100. For all messages, this is the link to progress bar control messages in the MSDN
http://msdn.microsoft.com/library/en-us/shellcc/platform/commctls/progbar/reflist.asp?frame=true
GeneralCompiling a Visual C++ 6 in the command-line Pin
Luis E. Cuadrado11-Mar-03 1:45
Luis E. Cuadrado11-Mar-03 1:45 
GeneralRe: Compiling a Visual C++ 6 in the command-line Pin
Hans Ruck11-Mar-03 2:03
Hans Ruck11-Mar-03 2:03 
GeneralRe: Compiling a Visual C++ 6 in the command-line Pin
567890123411-Mar-03 2:12
567890123411-Mar-03 2:12 
GeneralRe: Compiling a Visual C++ 6 in the command-line Pin
Luis E. Cuadrado11-Mar-03 4:37
Luis E. Cuadrado11-Mar-03 4:37 
GeneralHow do u do this in .NET?? Pin
IrishSonic11-Mar-03 5:46
IrishSonic11-Mar-03 5:46 
GeneralCInternetSession - proxy's domain Pin
thowra11-Mar-03 1:25
thowra11-Mar-03 1:25 
GeneralRe: CInternetSession - proxy's domain Pin
TomDuffy23-Nov-04 6:03
TomDuffy23-Nov-04 6:03 
GeneralRe: CInternetSession - proxy's domain Pin
thowra23-Nov-04 8:29
thowra23-Nov-04 8:29 
GeneralPrinter status Pin
Moll11-Mar-03 1:16
Moll11-Mar-03 1:16 
GeneralRe: Printer status Pin
Duncan Edwards Jones11-Mar-03 1:29
professionalDuncan Edwards Jones11-Mar-03 1:29 
GeneralRe: Printer status Pin
Moll11-Mar-03 2:41
Moll11-Mar-03 2:41 
GeneralRe: Printer status Pin
Moll11-Mar-03 3:07
Moll11-Mar-03 3:07 
GeneralRe: Printer status Pin
Duncan Edwards Jones13-Mar-03 23:28
professionalDuncan Edwards Jones13-Mar-03 23:28 
QuestionOfftopic but related: which tool should I use? BoundsChecker, CodeGlow...? Pin
Joan M11-Mar-03 1:01
professionalJoan M11-Mar-03 1:01 
AnswerRe: Offtopic but related: which tool should I use? BoundsChecker, CodeGlow...? Pin
AlexO11-Mar-03 2:51
AlexO11-Mar-03 2:51 
GeneralRe: Offtopic but related: which tool should I use? BoundsChecker, CodeGlow...? Pin
Joan M11-Mar-03 3:40
professionalJoan M11-Mar-03 3:40 
AnswerRe: Offtopic but related: which tool should I use? BoundsChecker, CodeGlow...? Pin
Mike Nordell11-Mar-03 3:13
Mike Nordell11-Mar-03 3: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.