473,397 Members | 2,099 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

using System.IntPtr

I need to get a pointer of a variable...
How can I get it ?

for example:
Dim a() as CStructure
Dim z as System.IntPtr

z = ??????

Sushi
Nov 21 '05 #1
6 22429
The Marshal class has methods to help in this.

See Marshal.UnsafeAddressOfPinnedArrayElement.

You can create and use unmananged blocks of memory with Marshal.AllocHGlobal
and it's related methods

Vou can copy to and from C structs with StructureToPtr and PtrToStructure.

HTH

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.

"Sushi" <su********@hotmail.com> wrote in message
news:e7**************@TK2MSFTNGP14.phx.gbl...
I need to get a pointer of a variable...
How can I get it ?

for example:
Dim a() as CStructure
Dim z as System.IntPtr

z = ??????

Sushi

Nov 21 '05 #2
"Sushi" <su********@hotmail.com> schrieb:
I need to get a pointer of a variable...
Variables that are declared as a reference type are "type-safe pointers":

\\\
Dim f1 As New Foo()
Dim f2 As Foo = f1 ' Points to the same instance as 'f1'.
///
How can I get it ?

for example:
Dim a() as CStructure
Dim z as System.IntPtr


What exactly do you want to archieve/to do with the pointer?

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Nov 21 '05 #3
I will try to explain better

I want to execute some TrackServer functions...
Follow the prototype

COMSVCSLib.IGetAppData.GetApps(ByRef nApps As System.UInt32, ByVal aAppData
As System.IntPtr)

So
aAppData is pointer of an array of COMSVCSLib.CAppData

In another words...
pAppData() As COMSVCSLib.CAppData
aAppData As IntPtr = pAppData
Well...
After I get this IntPtr, I will need to convert this IntPtr to the pAppData
array
Did you understand me ?

Thanks for all,
Sushi
Nov 21 '05 #4
You need to declare a VB structure that corresponds to the layout of the C
structure that you are passed from the unmanaged side. Once you have that
you can use Marshal.PtrToStructure to obtain the contents of your structure.
For an array of structures you need to modify the IntPtr that you have to
the offset of the particular array element that you wish to access.

Unfortunately I can't find a reference to the structure you're trying to
grab.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.

"Sushi" <su********@terra.com.br> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
I will try to explain better

I want to execute some TrackServer functions...
Follow the prototype

COMSVCSLib.IGetAppData.GetApps(ByRef nApps As System.UInt32, ByVal
aAppData
As System.IntPtr)

So
aAppData is pointer of an array of COMSVCSLib.CAppData

In another words...
pAppData() As COMSVCSLib.CAppData
aAppData As IntPtr = pAppData
Well...
After I get this IntPtr, I will need to convert this IntPtr to the
pAppData
array
Did you understand me ?

Thanks for all,
Sushi

Nov 21 '05 #5
I'm sure that if you can obtain this book it will be useful...

http://www.webtropy.com/articles/art...rop=COMSVCSLib

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.

"Sushi" <su********@terra.com.br> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
I will try to explain better

I want to execute some TrackServer functions...
Follow the prototype

COMSVCSLib.IGetAppData.GetApps(ByRef nApps As System.UInt32, ByVal
aAppData
As System.IntPtr)

So
aAppData is pointer of an array of COMSVCSLib.CAppData

In another words...
pAppData() As COMSVCSLib.CAppData
aAppData As IntPtr = pAppData
Well...
After I get this IntPtr, I will need to convert this IntPtr to the
pAppData
array
Did you understand me ?

Thanks for all,
Sushi

Nov 21 '05 #6
thanks... I will try to create a structure in vb.net...

the reference is COMSVCSLib...
I already saw this article... but it's doesn't help me more than the object
browser for COMSVCS :-))))

"Bob Powell [MVP]" <bob@_spamkiller_bobpowell.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
I'm sure that if you can obtain this book it will be useful...

http://www.webtropy.com/articles/art...rop=COMSVCSLib

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.

"Sushi" <su********@terra.com.br> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl...
I will try to explain better

I want to execute some TrackServer functions...
Follow the prototype

COMSVCSLib.IGetAppData.GetApps(ByRef nApps As System.UInt32, ByVal
aAppData
As System.IntPtr)

So
aAppData is pointer of an array of COMSVCSLib.CAppData

In another words...
pAppData() As COMSVCSLib.CAppData
aAppData As IntPtr = pAppData
Well...
After I get this IntPtr, I will need to convert this IntPtr to the
pAppData
array
Did you understand me ?

Thanks for all,
Sushi


Nov 21 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: C | last post by:
Hi, I have a C# Web Application. I am Referencing System.Web In teh code behind of one of my pages I have below imports- using System.Web.UI;
4
by: Daisy | last post by:
Having a weird problem... Just moving some code into new classes & methods. Originally, I created a new instance of "Game" (my form), and it created a new DX Device using: _device = new...
2
by: ScOe | last post by:
I have directx namespace which contains few class-es (dx wrapper) Direct3d.Device expect System.IntPtr in passed parameters. When using it in main class i pass "this" as parameter .. how do i pass...
4
by: marcelino | last post by:
Hi, I have c# express beta I try to write the following using clause: System.Runtime.Remoting.Channels.Http; because I want to create a http channel. HttpChannel aJobChannel = new...
4
by: Manuel Costa | last post by:
How the hell do i convert System::IntPtr to HDC? manuel
2
by: Ryan | last post by:
Hi, I receive an access denied error (see below) when attempting to send an email with BodyFormat=MailFormat.Html from an asp.net page. Exactly the same code works fine in a console...
9
by: garyusenet | last post by:
I am using a C# solution that somebody kindly sent me. It was a console application. I am trying to get use of the MessageBox. I have added the following using directive to the namespaces at...
11
by: Ed Bitzer | last post by:
I have been able using the namespace System.Web.Mail and its method Smtp.mail.send to mail simple text messages to a small group within our 55 and older community. I need help expanding the...
2
by: karthi84 | last post by:
Hi Experts, i have created a web application which has an option to edit the web config file from the web page. when i create an installer for this project using web setup project in VS2008 and...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.