Search found 8 matches

by jidriss
Mon Mar 14, 2011 6:50 pm
Forum: Suggestions/Questions
Topic: How show graphs in Labview with the Dplot appearance?
Replies: 29
Views: 88639

In spite of the best effortd of mother nature, we are still high and dry in Canberra (1800 feet elevation). I do feel for those poor folk in Japan at the moment.

How do you get a diagram into these posts? I wanted to do that and couldn't see how you do it. A picture is worth a 1000 words

I'll ...
by jidriss
Sat Mar 12, 2011 12:01 am
Forum: Suggestions/Questions
Topic: How show graphs in Labview with the Dplot appearance?
Replies: 29
Views: 88639

yeah, see, I'm trying to create a custom control for the Dplot structure....

do I need to create 100 NP unsigned longs?

like,

NP[0]
NP[1]
.
.
.
NP[99]?

Because that's what LabVIEW does when it wants to put an array that was in a structure in C into a cluster. it puts each element into the ...
by jidriss
Fri Mar 11, 2011 8:30 pm
Forum: Suggestions/Questions
Topic: How show graphs in Labview with the Dplot appearance?
Replies: 29
Views: 88639

Re: labview library from dll

In fact, if one has a little patience (I went to lunch), labview does its work and produces an lvlib with the required functions in it as VIs, except a few of the bitmap ones (further work). Dragging D plot Plot.vi onto a diagram and doing a "create constant" on the terminal for the Dplot structure ...
by jidriss
Fri Mar 11, 2011 3:40 pm
Forum: Suggestions/Questions
Topic: How show graphs in Labview with the Dplot appearance?
Replies: 29
Views: 88639

yeah, that makes sense. LabVIEW apparently is not able to convert a datatype directly if it's something like a structure with nested arrays.

So, those 3 functions that need arrays within the structures have undefined structures.

Here is the Plot() function:

https://lh3.googleusercontent.com ...
by jidriss
Fri Mar 11, 2011 3:08 pm
Forum: Suggestions/Questions
Topic: How show graphs in Labview with the Dplot appearance?
Replies: 29
Views: 88639

I think that by "custom control" LabVIEW wants me to create a little box that takes inputs for each of the variables in those functions.

So, for example, in the Plot() function, there's a cluster called "DPlot" and it looks like it has the following variables:

Version
hwnd
DataFormat
MaxCurves ...
by jidriss
Fri Mar 11, 2011 2:54 pm
Forum: Suggestions/Questions
Topic: How show graphs in Labview with the Dplot appearance?
Replies: 29
Views: 88639

okay, I changed the clusters in those 3 functions to "custom controls" in the "Configure VIs and Controls" dialog.... but I don't know what I'm doing.

help :)
by jidriss
Fri Mar 11, 2011 2:44 pm
Forum: Suggestions/Questions
Topic: How show graphs in Labview with the Dplot appearance?
Replies: 29
Views: 88639

It worked for almost all the functions except the bitmap functions mentioned above, and 3 functions I think I need. I got the following error report:

Parsing header file warnings:
No errors/warnings occurred when parsing the header file.

The following errors/warnings occurred when generating the ...
by jidriss
Fri Mar 11, 2011 12:30 pm
Forum: Suggestions/Questions
Topic: How show graphs in Labview with the Dplot appearance?
Replies: 29
Views: 88639

this is cool.

I am using the "Import Shared Library" function in LabVIEW right now to create a vi. It's taking a while (it shows it to be about half-way complete, and the CPU is cranking...)

So, it eventually finishes what it is doing?

Basically, I want my LabVIEW data acquisition program to ...