Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 13th, 2006, 05:03 AM
Registered User
 
Join Date: Aug 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to srinvas40
Default How to copy data at a location pointed by IntPtr

Hi all,

  I am new to C# i have to copy these following things into IntPtr

IntPtr hMapFile = CreateFileMapping(INVALID_HANDLE_VALUE, IntPtr.Zero, PageProtection.PAGE_READWRITE, 0, lSize, sMapObject);
if (!IntPtr.Zero.Equals(hMapFile))
{
IntPtr pMem = MapViewOfFile(hMapFile, AccessTypes.FILE_MAP_WRITE, 0,0,0);
IntPtr pMem1 = pMem;
int iArraySize = (sbCtrlInfoString.Length + Marshal.SizeOf(rcRect) + 1);
if (pMem != IntPtr.Zero)
{
  // here at first i have to copy RECT info into IntPtr and then
  // One stringbuilder String of a specified length after RECT
}
  AnyOne please Reply me, i am in troubles.






Similar Threads
Thread Thread Starter Forum Replies Last Post
how to set the crystal report data source location gbilios Crystal Reports 13 September 22nd, 2010 05:16 PM
Copy A folder to another location saidan C# 2005 18 November 10th, 2007 06:08 AM
Transferring data from [location].. robprell Flash (all versions) 0 November 29th, 2005 07:03 PM
How to read C# IntPtr struct in Win32 API Lookie VB How-To 1 February 24th, 2005 07:29 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.