Re: [Gambas-user] using Sin() to produce a specific range of values

2011-07-09 Thread Kevin Fishburne
On 07/10/2011 02:02 AM, Ian Haywood wrote: > On Sun, Jul 10, 2011 at 3:37 PM, Kevin Fishburne > wrote: >> I need to use the Sin() function to calculate an output range from an >> input range. The advantage of Sin() is that it's not linear; it makes a >> nice smooth curve of values sort of like a

Re: [Gambas-user] using Sin() to produce a specific range of values

2011-07-09 Thread Ian Haywood
On Sun, Jul 10, 2011 at 3:37 PM, Kevin Fishburne wrote: > I need to use the Sin() function to calculate an output range from an > input range. The advantage of Sin() is that it's not linear; it makes a > nice smooth curve of values sort of like a sound wave in an audio editor. this example project

[Gambas-user] using Sin() to produce a specific range of values

2011-07-09 Thread Kevin Fishburne
Again my thick skull prevents me from figuring this out, even with Google searches. I need to use the Sin() function to calculate an output range from an input range. The advantage of Sin() is that it's not linear; it makes a nice smooth curve of values sort of like a sound wave in an audio edi

Re: [Gambas-user] ProgressBar Change Event

2011-07-09 Thread Dimitris Anogiatis
Demosthene, Since the value of the progressbar cotnrol is just between 0 to 1 you can probably try IF ProgressBar1.Value = 1 THEN ProgressBar1.label="Process complete" You can probably do this within the ProgressBar1_Change() event assuming that the event is going to get fired when an input cha

[Gambas-user] gb.Case

2011-07-09 Thread tobias
hi, while the doc says that there is a constant gb.Case, the interpreter tells me that there is no symbol "Case" within gb. gb.Text works well instead. but either the doc or the interpreter should be corrected ;) regards, tobi ---

[Gambas-user] ComboBox_Click Problem

2011-07-09 Thread tobias
hi, i encountered a problem - for me - in gambas3 regarding ComboBox_Click() event. i have a directory name in ComboBox.Text and the contents of this directory in ComboBox.List. i implemented _Click() to append the current item's text to the directory path: Public Sub ComboBox1_Click() Dim

[Gambas-user] TrayIcon is missing

2011-07-09 Thread Demosthenes Koptsis
hi i search for TrayIcon in Special Tab but i cant find it nor in any tab. In Gambas2 there was at Special tab as i see. -- Regards, Demosthenes Koptsis. -- All of the data generated in your IT infrastructure is serio

[Gambas-user] Comments at wiki like PHP site

2011-07-09 Thread Demosthenes Koptsis
hi, is it possible to extend wiki documentation with user comments like PHP documentation? see for example http://www.php.net/manual/en/language.types.php http://www.php.net/manual/en/language.functions.php -- Regards, Demosthenes Koptsis.

Re: [Gambas-user] un-subscribe me

2011-07-09 Thread John Spikowski
On Sat, 2011-07-09 at 07:16 +, samandu...@juno.com wrote: > PLEASE!!! > > un-subscribe me (samandu...@juno.com) from the list! > > sam a. send an e-mail to " gambas-user-requ...@lists.sourceforge.net " and insert the word " unsubscribe " in the body for the message. --

[Gambas-user] un-subscribe me

2011-07-09 Thread samandu...@juno.com
PLEASE!!! un-subscribe me (samandu...@juno.com) from the list! sam a. Penny Stock Jumping 3000% Sign up to the #1 voted penny stock newsletter for free today! http://thirdpartyoffers.juno.com/TGL3131/4e18009cc08c02b951bst03vuc ---

Re: [Gambas-user] ProgressBar Change Event

2011-07-09 Thread Demosthenes Koptsis
in that case the expression if X >=1 then message.info("all is done") who will watch this expression? i need a timer or event loop or event ProgressBar1_Change() i implement this for now with a timer but i think it would be more elegant as programming approach to watch the ProgressBar1.Value