Click here to Skip to main content
16,005,682 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Default Windows color list ? Pin
Roger Allen25-Apr-03 2:07
Roger Allen25-Apr-03 2:07 
GeneralGetting the Display Name of a file Extension Pin
Diarrhio24-Apr-03 7:05
Diarrhio24-Apr-03 7:05 
GeneralRe: Getting the Display Name of a file Extension Pin
Shog924-Apr-03 7:47
sitebuilderShog924-Apr-03 7:47 
GeneralRe: Getting the Display Name of a file Extension Pin
Diarrhio24-Apr-03 7:53
Diarrhio24-Apr-03 7:53 
GeneralRe: Getting the Display Name of a file Extension Pin
David Crow24-Apr-03 8:31
David Crow24-Apr-03 8:31 
GeneralADO related question Pin
Shah Shehpori24-Apr-03 6:24
sussShah Shehpori24-Apr-03 6:24 
GeneralRe: ADO related question Pin
Giles24-Apr-03 6:42
Giles24-Apr-03 6:42 
GeneralRe: ADO related question Pin
fat88824-Apr-03 17:32
fat88824-Apr-03 17:32 
By default, the recordset objects are present on the server side. When you fetch a record from the recordset object, the data are got from the server via the network. You can let them be present on the client compute by changing the CursorLocation property of the recordset object.

In VC++:

_RecordsetPtr pRs;
pRs.CreateInstance(__uuidof(Recordset));

pRs->CursorLocation = ADOCG::adUseClient; //set the cursor to be client side
pRs->CursorLocation = ADOCG::adUseServer; //server side, the default



Hi guys. I'm a very fat man. Do you like fat men?
GeneralIntegrating a .HLP help file into a VC++ project Pin
Colin Davidson24-Apr-03 6:22
Colin Davidson24-Apr-03 6:22 
GeneralRe: Integrating a .HLP help file into a VC++ project Pin
Roger Allen24-Apr-03 6:59
Roger Allen24-Apr-03 6:59 
GeneralRe: Integrating a .HLP help file into a VC++ project Pin
Toni7825-Apr-03 7:49
Toni7825-Apr-03 7:49 
GeneralVisual C++ .Net 2003 Standard edition Pin
Darren Steadman24-Apr-03 5:54
Darren Steadman24-Apr-03 5:54 
GeneralProcess enumeration problems Pin
Zamfir24-Apr-03 5:46
Zamfir24-Apr-03 5:46 
GeneralWebBrowser Question Pin
Brian van der Beek24-Apr-03 5:40
Brian van der Beek24-Apr-03 5:40 
GeneralRe: WebBrowser Question Pin
Chris Losinger24-Apr-03 5:50
professionalChris Losinger24-Apr-03 5:50 
GeneralRe: WebBrowser Question Pin
Chris Richardson24-Apr-03 6:38
Chris Richardson24-Apr-03 6:38 
GeneralRe: WebBrowser Question Pin
Joan M24-Apr-03 6:52
professionalJoan M24-Apr-03 6:52 
GeneralRe: WebBrowser Question Pin
Brian van der Beek24-Apr-03 20:56
Brian van der Beek24-Apr-03 20:56 
QuestionHow to disable frame resize Pin
Anonymous24-Apr-03 5:37
Anonymous24-Apr-03 5:37 
AnswerRe: How to disable frame resize Pin
Joan M24-Apr-03 7:04
professionalJoan M24-Apr-03 7:04 
AnswerRe: How to disable frame resize Pin
Phil Hamer24-Apr-03 13:31
Phil Hamer24-Apr-03 13:31 
GeneralI do not want to wait for an event Pin
--dlb--24-Apr-03 5:02
--dlb--24-Apr-03 5:02 
GeneralRe: I do not want to wait for an event Pin
David Crow24-Apr-03 5:36
David Crow24-Apr-03 5:36 
GeneralRe: I do not want to wait for an event Pin
--dlb--24-Apr-03 6:48
--dlb--24-Apr-03 6:48 
GeneralRe: I do not want to wait for an event Pin
David Crow24-Apr-03 7:38
David Crow24-Apr-03 7:38 

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.