Click here to Skip to main content
15,917,005 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Menu ID Pin
toxcct24-Jan-06 22:30
toxcct24-Jan-06 22:30 
GeneralRe: Menu ID Pin
Hans Ruck24-Jan-06 22:33
Hans Ruck24-Jan-06 22:33 
GeneralRe: Menu ID Pin
toxcct24-Jan-06 22:43
toxcct24-Jan-06 22:43 
GeneralRe: Menu ID Pin
Hans Ruck24-Jan-06 23:58
Hans Ruck24-Jan-06 23:58 
QuestionRestarting the Application Pin
Ali Tavakol24-Jan-06 21:30
Ali Tavakol24-Jan-06 21:30 
AnswerRe: Restarting the Application Pin
M.Mehrdad.M24-Jan-06 21:57
M.Mehrdad.M24-Jan-06 21:57 
GeneralRe: Restarting the Application Pin
Ali Tavakol26-Jan-06 6:24
Ali Tavakol26-Jan-06 6:24 
GeneralRe: Restarting the Application Pin
M.Mehrdad.M27-Jan-06 20:04
M.Mehrdad.M27-Jan-06 20:04 
QuestionRe: Restarting the Application Pin
Owner drawn24-Jan-06 22:20
Owner drawn24-Jan-06 22:20 
AnswerRe: Restarting the Application Pin
Ali Tavakol26-Jan-06 6:21
Ali Tavakol26-Jan-06 6:21 
GeneralRe: Restarting the Application Pin
Owner drawn26-Jan-06 16:46
Owner drawn26-Jan-06 16:46 
Questioncode in C language that can save and edit Pin
shazzney24-Jan-06 21:16
shazzney24-Jan-06 21:16 
AnswerRe: code in C language that can save and edit Pin
Laxman924-Jan-06 21:29
Laxman924-Jan-06 21:29 
GeneralRe: code in C language that can save and edit Pin
shazzney24-Jan-06 22:00
shazzney24-Jan-06 22:00 
GeneralRe: code in C language that can save and edit Pin
Rage25-Jan-06 0:17
professionalRage25-Jan-06 0:17 
AnswerRe: code in C language that can save and edit Pin
toxcct24-Jan-06 21:31
toxcct24-Jan-06 21:31 
GeneralRe: code in C language that can save and edit Pin
shazzney24-Jan-06 21:51
shazzney24-Jan-06 21:51 
GeneralRe: code in C language that can save and edit Pin
toxcct24-Jan-06 22:05
toxcct24-Jan-06 22:05 
AnswerRe: code in C language that can save and edit Pin
David Crow25-Jan-06 4:24
David Crow25-Jan-06 4:24 
QuestionFile selection using OPENFILENAME in Unicode env. Pin
cpp_prgmer24-Jan-06 20:46
cpp_prgmer24-Jan-06 20:46 
AnswerRe: File selection using OPENFILENAME in Unicode env. Pin
Owner drawn24-Jan-06 21:25
Owner drawn24-Jan-06 21:25 
GeneralRe: File selection using OPENFILENAME in Unicode env. Pin
cpp_prgmer24-Jan-06 21:45
cpp_prgmer24-Jan-06 21:45 
QuestionRe: File selection using OPENFILENAME in Unicode env. Pin
David Crow25-Jan-06 4:34
David Crow25-Jan-06 4:34 
This works fine:

void main( void )
{
    OPENFILENAME ofn = {0};
    wchar_t szBuffer[MAX_PATH] = {0};
 
    ofn.lStructSize = sizeof(OPENFILENAME);
    ofn.lpstrFile   = szBuffer;
    ofn.nMaxFile    = sizeof(szBuffer);
 
    GetOpenFileName(&ofn);
 
    wprintf(L"%s\n", ofn.lpstrFile);
}
How does it compare to what you have?

cpp_prgmer wrote:
Also I would like to hide the n/w btn on the placebar which im not able to inspite of the OFN_NONETWORKBUTTON option. Any suggestions on using this func 2 select multiple files w/o losing d explorer-style file browse dlg & placebar??

The "My Network Places" button cannot be removed from the My Places bar, but it can be hidden. You'll need to modify the registry at HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common\Open Find\Places\StandardPlaces.


"The words of God are not like the oak leaf which dies and falls to the earth, but like the pine tree which stays green forever." - Native American Proverb


AnswerRe: File selection using OPENFILENAME in Unicode env. Pin
cpp_prgmer25-Jan-06 21:24
cpp_prgmer25-Jan-06 21:24 
QuestionRe: File selection using OPENFILENAME in Unicode env. Pin
David Crow26-Jan-06 2:58
David Crow26-Jan-06 2:58 

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.