Click here to Skip to main content
15,887,083 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionGraphics in cpp Pin
Markandaiya Harsh16-May-09 0:28
Markandaiya Harsh16-May-09 0:28 
AnswerRe: Graphics in cpp Pin
Rajesh R Subramanian16-May-09 0:33
professionalRajesh R Subramanian16-May-09 0:33 
QuestionHi Doubt on Visual C++ Pin
Sakthi.Gs :-)15-May-09 21:26
Sakthi.Gs :-)15-May-09 21:26 
AnswerRe: Hi Doubt on Visual C++ Pin
Rajesh R Subramanian15-May-09 22:53
professionalRajesh R Subramanian15-May-09 22:53 
QuestionCreate file with full permission control to user. Pin
Le@rner15-May-09 20:54
Le@rner15-May-09 20:54 
AnswerRe: Create file with full permission control to user. Pin
Taran915-May-09 21:12
Taran915-May-09 21:12 
GeneralRe: Create file with full permission control to user. Pin
Le@rner15-May-09 21:17
Le@rner15-May-09 21:17 
GeneralRe: Create file with full permission control to user. Pin
sashoalm16-May-09 0:06
sashoalm16-May-09 0:06 
HANDLE WINAPI CreateFile(
__in LPCTSTR lpFileName,
__in DWORD dwDesiredAccess,
__in DWORD dwShareMode,
__in_opt LPSECURITY_ATTRIBUTES lpSecurityAttributes,
__in DWORD dwCreationDisposition,
__in DWORD dwFlagsAndAttributes,
__in_opt HANDLE hTemplateFile
);



dwDesiredAccess [in]
The requested access to the file or device, which can be summarized as read, write, both or neither (zero).

The most commonly used values are GENERIC_READ, GENERIC_WRITE, or both (GENERIC_READ | GENERIC_WRITE). For more information, see Generic Access Rights and File Security and Access Rights.

If this parameter is zero, the application can query certain metadata such as file, directory, or device attributes without accessing that file or device, even if GENERIC_READ access would have been denied.

You cannot request an access mode that conflicts with the sharing mode that is specified by the dwShareMode parameter in an open request that already has an open handle.

For more information, see the Remarks section of this topic and Creating and Opening Files.

There is sufficient light for those who desire to see, and there is sufficient darkness for those of a contrary disposition.
Blaise Pascal

QuestionRe: Create file with full permission control to user. Pin
Rajesh R Subramanian16-May-09 0:36
professionalRajesh R Subramanian16-May-09 0:36 
AnswerRe: Create file with full permission control to user. Pin
Le@rner17-May-09 18:56
Le@rner17-May-09 18:56 
QuestionHandling Shift + Tab key combination Pin
V K 215-May-09 19:31
V K 215-May-09 19:31 
AnswerRe: Handling Shift + Tab key combination Pin
zakkas248315-May-09 20:37
zakkas248315-May-09 20:37 
AnswerRe: Handling Shift + Tab key combination Pin
Taran915-May-09 20:49
Taran915-May-09 20:49 
AnswerRe: Handling Shift + Tab key combination Pin
Rajesh R Subramanian16-May-09 0:49
professionalRajesh R Subramanian16-May-09 0:49 
QuestionDoc/View application with docking pane Pin
Gagnon Claude15-May-09 13:12
Gagnon Claude15-May-09 13:12 
AnswerRe: Doc/View application with docking pane Pin
«_Superman_»15-May-09 20:46
professional«_Superman_»15-May-09 20:46 
AnswerRe: Doc/View application with docking pane Pin
Rajesh R Subramanian16-May-09 0:46
professionalRajesh R Subramanian16-May-09 0:46 
AnswerRe: Doc/View application with docking pane Pin
Stuart Dootson16-May-09 13:18
professionalStuart Dootson16-May-09 13:18 
QuestionCompiling error from stdafx.h [modified] Pin
transoft15-May-09 10:18
transoft15-May-09 10:18 
AnswerRe: Compiling error from stdafx.h Pin
Stuart Dootson15-May-09 13:01
professionalStuart Dootson15-May-09 13:01 
GeneralRe: Compiling error from stdafx.h Pin
transoft16-May-09 3:15
transoft16-May-09 3:15 
QuestionPassing multidimensional arrays to functions Pin
Royce Fickling15-May-09 9:45
Royce Fickling15-May-09 9:45 
AnswerRe: Passing multidimensional arrays to functions Pin
led mike15-May-09 10:19
led mike15-May-09 10:19 
QuestionRe: Passing multidimensional arrays to functions Pin
David Crow15-May-09 10:23
David Crow15-May-09 10:23 
QuestionWide char vs. ANSI char Pin
transoft15-May-09 7:32
transoft15-May-09 7:32 

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.