Click here to Skip to main content
15,907,396 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: ODBC help:how to set DSN of database automatically Pin
16-Jul-01 20:57
suss16-Jul-01 20:57 
GeneralCapturing MOuse Move within a CListCtrl Pin
sankar16-Jul-01 16:28
sankar16-Jul-01 16:28 
GeneralRe: Capturing MOuse Move within a CListCtrl Pin
Michael Dunn16-Jul-01 17:03
sitebuilderMichael Dunn16-Jul-01 17:03 
QuestionPutting MFC exe dialog in dll? Pin
16-Jul-01 16:12
suss16-Jul-01 16:12 
QuestionHow can I reload the menu from ,rc file? Pin
Amber16-Jul-01 15:06
Amber16-Jul-01 15:06 
AnswerRe: How can I reload the menu from ,rc file? Pin
17-Jul-01 7:44
suss17-Jul-01 7:44 
GeneralURL parseing \ encoding Pin
Jared Allen16-Jul-01 14:36
Jared Allen16-Jul-01 14:36 
GeneralRe: URL parseing \ encoding Pin
James Spibey18-Jul-01 7:28
James Spibey18-Jul-01 7:28 
The URLUnEscapse function will do it for you but it requires Windows 2000 or IE5 to be installed see following MSDN docs

UrlUnEscape
[This is preliminary documentation and subject to change.] 

Converts escape sequences back into ordinary characters.

HRESULT UrlUnEscape(
  LPTSTR pszURL, 
  LPTSTR pszUnEscaped, 
  LPDWORD pcchUnEscaped, 
  DWORD dwFlags
);

Parameters
pszURL 
[in/out] Pointer to a NULL-terminated string with the URL. If dwFlags is set to URL_UNESCAPE_INPLACE, the converted string is returned through this parameter. 
pszUnEscaped 
[out] Pointer to a NULL-terminated string containing the unescaped version of pszURL. If URL_UNESCAPE_INPLACE is set in dwFlags, this parameter is ignored. 
pcchUnEscaped 
[in/out] Number of characters in the buffer pointed to by pszEscaped. On entry, the value pcchEscaped points to is set to the size of the buffer. When the function returns, the value pcchEscaped points to is set to the number of characters written to that buffer, not counting the terminating NULL character. If an E_POINTER error code is returned, the buffer was too small, and the value pcchEscaped points to is set to the required number of characters in the buffer. If any other errors are returned, the value that pcchEscaped points to is undefined. 
dwFlags 
[in] Flags that control which characters are unescaped. It can be a combination of the following flags. Flag Description 
URL_DONT_UNESCAPE_EXTRA_INFO Don't convert the # or ? character, or any characters following them in the string. 
URL_UNESCAPE_INPLACE Use pszURL to return the converted string instead of pszUnEscaped. 

Return Values
Returns an OLE success code if successful. If the URL_UNESCAPE_INPLACE flag is not set, the value pointed to by pcchUnEscaped will be set to the number of characters in the output buffer pointed to by pszEscaped. Returns E_POINTER if the URL_UNESCAPE_INPLACE flag is not set and the output buffer is too small. The pcchUnEscaped parameter will be set to the required buffer size. Otherwise, returns an OLE error value.

Generalaccessing process resources Pin
Amit Dey16-Jul-01 13:25
Amit Dey16-Jul-01 13:25 
Generalnewbie stl compiler error question Pin
Alex Griffing16-Jul-01 11:54
Alex Griffing16-Jul-01 11:54 
GeneralRe: newbie stl compiler error question Pin
Alex Griffing16-Jul-01 12:02
Alex Griffing16-Jul-01 12:02 
GeneralRe: newbie stl compiler error question Pin
Todd Smith16-Jul-01 12:38
Todd Smith16-Jul-01 12:38 
GeneralRe: newbie stl compiler error question Pin
Todd Smith16-Jul-01 12:41
Todd Smith16-Jul-01 12:41 
GeneralRe: newbie stl compiler error question Pin
Alex Griffing16-Jul-01 12:53
Alex Griffing16-Jul-01 12:53 
QuestionFlat toolbar buttons with VC 5? Pin
16-Jul-01 11:10
suss16-Jul-01 11:10 
QuestionHow to make my program workable independently??? Pin
16-Jul-01 8:05
suss16-Jul-01 8:05 
AnswerRe: How to make my program workable independently??? Pin
Chris Losinger16-Jul-01 8:08
professionalChris Losinger16-Jul-01 8:08 
GeneralRe: How to make my program workable independently??? Pin
16-Jul-01 8:20
suss16-Jul-01 8:20 
AnswerRe: How to make my program workable independently??? Pin
Michael Dunn16-Jul-01 10:22
sitebuilderMichael Dunn16-Jul-01 10:22 
GeneralRe: How to make my program workable independently??? Pin
16-Jul-01 10:27
suss16-Jul-01 10:27 
GeneralRe: How to make my program workable independently??? Pin
Chris Losinger16-Jul-01 10:39
professionalChris Losinger16-Jul-01 10:39 
AnswerRe: How to make my program workable independently??? Pin
16-Jul-01 10:40
suss16-Jul-01 10:40 
AnswerRe: How to make my program workable independently??? Pin
16-Jul-01 14:41
suss16-Jul-01 14:41 
GeneralUnhandled exception. Pin
John Uhlenbrock16-Jul-01 6:53
John Uhlenbrock16-Jul-01 6:53 
GeneralRe: Unhandled exception. Pin
Christian Graus16-Jul-01 13:05
protectorChristian Graus16-Jul-01 13:05 

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.