Search found 24 matches

by Subquantum
Mon Feb 09, 2015 2:46 pm
Forum: General
Topic: Restricting input in edit box?
Replies: 2
Views: 6987

Re: Restricting input in edit box?

Thanks Mo!

Looking at these examples really helps me to learn how to work with these graphical components beyond what is available in the manual.
by Subquantum
Fri Feb 06, 2015 4:08 pm
Forum: General
Topic: Restricting input in edit box?
Replies: 2
Views: 6987

Restricting input in edit box?

Can someone tell me if there is an easy way to limit the amount of characters entered into an edit box? And if so, can there also be a distinction between only accepting numerical vs alphabetical characters?
by Subquantum
Fri Nov 21, 2014 12:13 pm
Forum: General
Topic: Third party applications in flowstone?
Replies: 1
Views: 5933

Third party applications in flowstone?

Does anyone know if it is possible to run a third party application such as Google Earth in a window within a Flowstone application? I have seen this done with Labview. It would be great to create a Flowstone module that launches the other application and displays it within the front panel gui as if ...
by Subquantum
Wed Nov 19, 2014 7:55 pm
Forum: General
Topic: front panel typed input?
Replies: 2
Views: 7102

Re: front panel typed input?

Thanks KG!

After playing with it for a few minutes, that's exactly what I needed.
by Subquantum
Wed Nov 19, 2014 7:09 pm
Forum: General
Topic: front panel typed input?
Replies: 2
Views: 7102

front panel typed input?

Hi all,


Is there a module for entering typed alpha-numeric input from the front panel gui?

I would like to create a window in the front panel gui that I can type numbers or letters into so that I can apply that input to other code.
by Subquantum
Tue Oct 28, 2014 1:21 pm
Forum: General
Topic: Up/Down buttons velocity control?
Replies: 2
Views: 8520

Re: Up/Down buttons velocity control?

loopeytunes,

Thanks, that will help for one part of my application that goes from 0-30, but for another set of up/down buttons I have to go from 0-500 and if I speed it up I will loose the ability to set precise values on the way up or down.

What I need is for the speed to increase after holding ...
by Subquantum
Tue Oct 28, 2014 11:21 am
Forum: General
Topic: Up/Down buttons velocity control?
Replies: 2
Views: 8520

Up/Down buttons velocity control?

Does anyone have a good way of adding velocity control to up/down buttons?

I put together these up/down buttons with two digits of precision. However, if I press and hold to increment, it will take forever to get to a high value.
by Subquantum
Sun Oct 26, 2014 2:26 pm
Forum: General
Topic: How to properly use delays in a ruby module?
Replies: 11
Views: 22518

Re: How to properly use delays in a ruby module?

Since I am new to ruby, I was thinking that ruby used selectors like in objective-c and also confusing this with select case statements in visual basic. After further reading I now understand that "@selector" provided in tulamide's code is just an instance variable and could have been named anything.
by Subquantum
Sun Oct 26, 2014 1:09 pm
Forum: General
Topic: How to properly use delays in a ruby module?
Replies: 11
Views: 22518

Re: How to properly use delays in a ruby module?

tulamide,

I have searched through a few Ruby books for more information on selectors, but have not found anything. I have found a few references to selectors for objective-c and visual basic. can you provide a link to their description and use in Ruby?
by Subquantum
Fri Oct 24, 2014 6:39 pm
Forum: General
Topic: How to properly use delays in a ruby module?
Replies: 11
Views: 22518

Re: How to properly use delays in a ruby module?

Ok,
I used the code provided by tulamide and it works fantastically!! Although the method i had used worked, This is most definitely the proper method for doing this.

tulamide, thanks for the code and the instruction: "Never rely on a fixed interval to grab values!"
I am new to capturing data ...