Click here to Skip to main content
15,910,211 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: C++ Problems... Pin
AndrewVos6-Oct-05 8:43
AndrewVos6-Oct-05 8:43 
GeneralRe: C++ Problems... Pin
toxcct6-Oct-05 20:52
toxcct6-Oct-05 20:52 
Questionsimple question Pin
...---...3-Oct-05 10:14
...---...3-Oct-05 10:14 
AnswerRe: simple question Pin
MKlucher3-Oct-05 10:32
MKlucher3-Oct-05 10:32 
GeneralRe: simple question Pin
...---...3-Oct-05 11:06
...---...3-Oct-05 11:06 
AnswerRe: simple question Pin
MKlucher3-Oct-05 12:07
MKlucher3-Oct-05 12:07 
QuestionWin32 Pin
Tran Ngoc Minh2-Oct-05 0:13
Tran Ngoc Minh2-Oct-05 0:13 
AnswerRe: Win32 Pin
Iman_crte3-Oct-05 1:22
Iman_crte3-Oct-05 1:22 
Hi!
You can use Win32 API:
for example:

DWORD ByteWriten , ByteRead;
int MyArray[5] = {2534 ,3535, 3534,4576,54};
int ReadArray[5];

HANDLE MyHand =
CreateFile("c:\\sampfile" , GENERIC_WRITE | GENERIC_READ , FILE_SHARE_READ | FILE_SHARE_WRITE ,
NULL , CREATE_ALWAYS , FILE_ATTRIBUTE_NORMAL , NULL); //Create Handle To File

WriteFile(MyHand , (void *)MyArray , 10/* 5*2(int) */ , &ByteWriten , NULL);
//Write Array to file

ReadFile(MyHand , (void *)ReadArray , 10 , &ByteRead , NULL);
//Read Array From file.

CloseHandle(MyHand);Smile | :)

CRTE_Tech
Questionproject Pin
Anonymous1-Oct-05 22:33
Anonymous1-Oct-05 22:33 
AnswerRe: project Pin
Prakash Nadar3-Oct-05 15:23
Prakash Nadar3-Oct-05 15:23 
Questionproject in c++ Pin
gagit1-Oct-05 5:39
sussgagit1-Oct-05 5:39 
AnswerRe: project in c++ Pin
Prakash Nadar3-Oct-05 15:24
Prakash Nadar3-Oct-05 15:24 
QuestionWhy does integer work and not boolean Pin
LiquidE_SA1-Oct-05 4:40
LiquidE_SA1-Oct-05 4:40 
AnswerRe: Why does integer work and not boolean Pin
Matt Godbolt2-Oct-05 4:14
Matt Godbolt2-Oct-05 4:14 
AnswerRe: Why does integer work and not boolean Pin
AndrewVos5-Oct-05 19:35
AndrewVos5-Oct-05 19:35 
QuestionIs there bettor solution or any simple template implementation? Pin
G Haranadh30-Sep-05 19:33
G Haranadh30-Sep-05 19:33 
Questionmat-file on linux Pin
Ta Xuan Hung30-Sep-05 5:05
Ta Xuan Hung30-Sep-05 5:05 
QuestionQuestion about DVD seeking. Pin
Member 231624829-Sep-05 21:24
Member 231624829-Sep-05 21:24 
QuestionHow to run musi files in c++ Pin
Member 219796629-Sep-05 19:07
Member 219796629-Sep-05 19:07 
AnswerRe: How to run musi files in c++ Pin
Prakash Nadar3-Oct-05 15:25
Prakash Nadar3-Oct-05 15:25 
GeneralRe: How to run musi files in c++ Pin
Inder gujral12-Oct-05 21:47
Inder gujral12-Oct-05 21:47 
QuestionHow to kill a proceess running in Task Manager Pin
harijulie29-Sep-05 15:19
harijulie29-Sep-05 15:19 
AnswerRe: How to kill a proceess running in Task Manager Pin
Saksida Bojan30-Sep-05 9:09
Saksida Bojan30-Sep-05 9:09 
AnswerRe: How to kill a proceess running in Task Manager Pin
Prakash Nadar3-Oct-05 15:27
Prakash Nadar3-Oct-05 15:27 
QuestionIssues with ReadFile function Pin
Aditi48429-Sep-05 3:54
Aditi48429-Sep-05 3:54 

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.