DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

DataPlugin VBS encryption always on

Solved!
Go to solution

Hi

As of V2012, I find that ASCII-import-plugins created with the DPWizard are stored with extension .vby and marked as VBCrypt in the PlugIn property dialog.

I'd like to use 'wizarded' scripts as a starting point for modifications, which now is no longer possible.

Since it is still possible to manually encrypt files, I wonder, is this a bug or a feature? Or have I changed some setting inadvertantly?

Thanx for a clue.

Michael

 

0 Kudos
Message 1 of 10
(7,695 Views)
Solution
Accepted by topic author nimic

Hi Michael,

 

It's not you, it's us.  DIAdem 2012 did indeed change the Text DataPlugin Wizard so that it creates encrypted DataPlugins.  This is not a bug but rather a change in philosophy.  The DataPlugins the Text DataPlugin Wizard creates were always quite complicated, because the resulting VBScript is a huge state machine that can handle all sorts of parsing details, and all the Wizard does is set some of those parameters.  The feedback we got was that customers were unsuccessful in their attempts to make a small change to the VBScript the Text DataPlugin Wizard creates.  R&D felt like this change to auto-encrypt would save more customer time than it would create customer frustration.  As one of the few who was comfortable doing this, you are now justifiably and understandably frustrated.  The Excel DataPlugin Wizard, by contrast, produces VBScripts that are quite straightforward, because the Workbook reader handles all the parsing details, so these VBScripts are still unencrypted.

 

I would be happy to assist you in learning how to create DataPlugins from scratch.  The resulting code you get this way is more efficient and MUCH easier to maintain moving forward than the hundreds of lines of code you get from the Text DataPlugin Wizard.

 

Brad Turpin

DIAdem Product Support Engineer

National Instruments

 

 

0 Kudos
Message 2 of 10
(7,679 Views)

Hello Brad,

 

actual I do some adaption of a vbs-script for a data analysis imported from a txt-file by using a dataplugin. I used the dataplugin assistant to create the plugin. On the first view it worked fine, but then I recognized that some text data is imported as numeric data and I wanted to correct this. First I tried to use the dataplugin again, but there is a problem that I cant configure the specific channel because it isnt shown in the selection. After a number of more than 50 channels I cant configure the data type of more channels. And I have to. So I also thought of editing the code of the dataplugin, but it is as I read in this posting it ist not possible to do that with the Diadem 2012. So what can I do instead of building a special data file with critical channels below 50?

 

Greetings,

 

Kolja Gruß

 

0 Kudos
Message 3 of 10
(7,176 Views)

Hi Kolja,

 

Please answer my response to your other post on this issue.

 

http://forums.ni.com/t5/DIAdem/Dataplugin-Assistant-Configuring-more-than-50-data-input/m-p/2886676/...

 

Brad Turpin

DIAdem Product Support Engineer

National Instruments

0 Kudos
Message 4 of 10
(7,137 Views)

I would love to learn Brad

 

How can I begin?

Tim
0 Kudos
Message 5 of 10
(5,269 Views)

Hi Tim,

 

What, exactly would you like to learn?  The above post describes a change in the way the Text DataPlugin Wizard behaves from DIAdem version to version.

 

Brad Turpin

DIAdem Product Support Engineer

National Instruments

0 Kudos
Message 6 of 10
(5,239 Views)

Hey Brad

 

I would like to learn how to Script my own data plugins.

 

I find using the wizard has limitations that I am hoping scripting my own I will be able to correct. 

 

I stumbled across this post as I too recall being able to modify plugins a while back and I recently tried to and found out that feature is no longer available.

 

Thanks

 

 

Tim
0 Kudos
Message 7 of 10
(5,153 Views)

Hey Tim,

 

A good place to start are the example DataPlugins in the Help system:

 

"Programming Reference\Object Oriented Script Interfaces\DataPlugin\Examples"

 

If you have SSP, you can also look at the SPOT training for DIAdem Advanced-- there's a section at the end that shows you how to program a simple DataPlugin from scratch.

 

Brad Turpin

DIAdem Product Support Engineer

National Instruments

0 Kudos
Message 8 of 10
(5,114 Views)

Thanks Brad

 

I read through some of the examples and I have been able to successfully read channel names and columns of data from a .txt data format, by using the following commands;

 

Set Block = File.GetStringBlock()

    For i = 1 to 4 
    Set channel = Block.Channels.Add(File.GetNextStringValue(eString), eR64)
    Call ChannelGroup.Channels.AddDirectAccessChannel(channel)
    
    Next

 

I was wondering how one would disregard a particular element in the column block.

 

For example say I want to skip the first 2 data points in each column.   

Tim
0 Kudos
Message 9 of 10
(5,073 Views)

Ignoring lines: by 'read and ingore', i.e. with a loop of n repetitions of

for i = 1 to n

dummy = FileGetLine (or similar, I can't remember the precise wording)

next

you can move your file pointer to the line of interest and then follow your code.

 

Michael

0 Kudos
Message 10 of 10
(5,057 Views)