LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Memory address of a numeric command

I want to know how i can catch the memory address of a numeric command
please ?
0 Kudos
Message 1 of 7
(3,136 Views)
Could you explain in a little more detail what you are wanting to do? I don't understand what you mean by the memory address of a numeric command.

Mike...

Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion

"... after all, He's not a tame lion..."

For help with grief and grieving.
0 Kudos
Message 2 of 7
(3,136 Views)
"mikeporter" a écrit dans le message de
news:50650000000500000095FD0000-1042324653000@exchange.ni.com...
> Could you explain in a little more detail what you are wanting to do?
> I don't understand what you mean by the memory address of a numeric
> command.
>
> Mike...

The address where the command is located.

Ty
0 Kudos
Message 3 of 7
(3,136 Views)
Bobby Lapointe wrote:
> "mikeporter" a écrit dans le message de
> news:50650000000500000095FD0000-1042324653000@exchange.ni.com...
>
>>Could you explain in a little more detail what you are wanting to do?
>>I don't understand what you mean by the memory address of a numeric
>>command.
>>
>>Mike...
>
>
> The address where the command is located.
>
> Ty
>
>

You cannot take addresses from user space unless you write a CIN, in
which case you take addresses in your C program. Perhaps what you want
to do is call a LabVIEW builtin function from within a CIN?
0 Kudos
Message 4 of 7
(3,136 Views)
"Bobby Lapointe" wrote in
news:3eeb54b3$0$14310$7a628cd7@news.club-internet.fr:

> I want to know how i can catch the memory address of a numeric command
> please ?

Could you tell us what you want to do? Maybe someone got another solution.

--
Rolf
0 Kudos
Message 5 of 7
(3,136 Views)
> I want to know how i can catch the memory address of a numeric command
> please ?
>

You are using different terms from what we are used to, this is why
everyone is asking you to clarify. Let me take a few guesses as to what
you are wanting.

1. I want to acess the memory where a numeric is stored.
If you want to do this because you are going to call a DLL, passing in
the value and having it return with possibly a different value, then the
DLL configuration dialog lets you pass numerics to external code by
pointer to value.

2. I want a way to access a numeric control or indicator from other
places in my application, so that I can do UI things such as
enable/disable, change color, change value, etc.
In this case, you want to use the control referen
ce. Popup on the
control and Create a Reference. The reference can be wired to property
nodes, invoke nodes, passed to subVIs that work on the properties, etc.

3. I want a pointer or reference to a numeric value so that I can
access it in many places in my program, or store the pointer in a data
structure such as a list.
These are ideas that do not really get along with the LV dataflow
paradigm. Instead, you should just pass the value wherever you like.
If multiple program locations need to access or modify the value, you
can arrange for them to do so via a functional global, a queue, or if
they only need sequential access via an in/out parameter.

As with the other responses, if none of these are sufficient, please
clarify the question.

Greg McKaskle
0 Kudos
Message 6 of 7
(3,136 Views)
If you mean where a particular VI or function is loaded into memory, there is no way of doing that. What are you trying to accomplish?

Mike...

Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion

"... after all, He's not a tame lion..."

For help with grief and grieving.
0 Kudos
Message 7 of 7
(3,136 Views)