Click here to Skip to main content
16,011,120 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: ODBC CRecordset::Delete Pin
Tim Deveaux21-Apr-01 16:16
Tim Deveaux21-Apr-01 16:16 
GeneralRe: Table or Record ? Pin
Masaaki Onishi22-Apr-01 4:42
Masaaki Onishi22-Apr-01 4:42 
GeneralRe: Table or Record ? Pin
Hadi Rezaee22-Apr-01 17:29
Hadi Rezaee22-Apr-01 17:29 
GeneralRe: I don't have a time to write the code for you. Pin
23-Apr-01 3:40
suss23-Apr-01 3:40 
GeneralODBC CRecordset::Delete Pin
21-Apr-01 6:46
suss21-Apr-01 6:46 
GeneralODBC CRecordset::Delete Pin
21-Apr-01 6:45
suss21-Apr-01 6:45 
GeneralI Can Use SHBrowseForFolder function But. Pin
Ghasrfakhri21-Apr-01 5:54
Ghasrfakhri21-Apr-01 5:54 
GeneralRe: I Can Use SHBrowseForFolder function But. Pin
PJ Arends21-Apr-01 23:30
professionalPJ Arends21-Apr-01 23:30 
SHBrowseForFolder returns a pointer to an ITEMIDLIST. You can use the SHGetPathFromIDList() to retrieve the path of the folder selected. Use an IMalloc interface to free the memory pointed to by the ITEMIDLIST pointer.

TCHAR thePath[_MAX_PATH];
ITEMIDLIST* idl;
idl = SHBrowseForFolder(A_Previously_Initialized_BROWSEINFO);
if (idl)
{
    if (SHGetPathFromIDList(idl, thePath))
        Do_Something_With(thePath);
    LPMALLOC lpMalloc;  // pointer to IMalloc
    if (SHGetMalloc(&lpMalloc) == NOERROR)
        lpMalloc->Free(idl);
}


---
Multitasking: Screwing up several things at once.
GeneralCreating an edit box in Win32 Pin
Rickard Andersson2021-Apr-01 4:24
Rickard Andersson2021-Apr-01 4:24 
GeneralRe: Creating an edit box in Win32 Pin
Michael Dunn21-Apr-01 8:07
sitebuilderMichael Dunn21-Apr-01 8:07 
GeneralRe: Creating an edit box in Win32 Pin
Rickard Andersson2021-Apr-01 8:37
Rickard Andersson2021-Apr-01 8:37 
GeneralRe: Creating an edit box in Win32 Pin
Michael Dunn21-Apr-01 8:48
sitebuilderMichael Dunn21-Apr-01 8:48 
GeneralImage processing in visual c++. Work with bmp images. Pin
Jose Luis20-Apr-01 23:59
Jose Luis20-Apr-01 23:59 
GeneralRe: Image processing in visual c++. Work with bmp images. Pin
l a u r e n21-Apr-01 7:59
l a u r e n21-Apr-01 7:59 
GeneralRe: Image processing in visual c++. Work with bmp images. Pin
Chris Losinger21-Apr-01 8:47
professionalChris Losinger21-Apr-01 8:47 
GeneralRe: Image processing in visual c++. Work with bmp images. Pin
22-Apr-01 2:55
suss22-Apr-01 2:55 
GeneralThanks but....Re: Image processing in visual c++. Work with bmp images. Pin
Jose Luis26-Apr-01 23:15
Jose Luis26-Apr-01 23:15 
GeneralRe: Thanks but....Re: Image processing in visual c++. Work with bmp images. Pin
l a u r e n27-Apr-01 2:50
l a u r e n27-Apr-01 2:50 
QuestionPlease help... how can I insert a bmp image in a DAO database field? Pin
Jose Luis20-Apr-01 23:53
Jose Luis20-Apr-01 23:53 
AnswerRe: Please help... how can I insert a bmp image in a DAO database field? Pin
Masaaki Onishi22-Apr-01 5:41
Masaaki Onishi22-Apr-01 5:41 
GeneralError in adding member variable ... Pin
Hadi Rezaee20-Apr-01 21:06
Hadi Rezaee20-Apr-01 21:06 
GeneralRe: Error in adding member variable ... Pin
Christian Graus20-Apr-01 22:49
protectorChristian Graus20-Apr-01 22:49 
GeneralRe: Error in adding member variable ... Pin
Hadi Rezaee21-Apr-01 0:26
Hadi Rezaee21-Apr-01 0:26 
QuestionDisplay Property extension? Pin
20-Apr-01 12:08
suss20-Apr-01 12:08 
AnswerRe: Display Property extension? Pin
Michael Dunn20-Apr-01 16:08
sitebuilderMichael Dunn20-Apr-01 16:08 

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.