Topics in Gambas web: Changed: now 22:13 GMT Changed by:
ApiGBConvString 16 Aug 2004 - 19:52 - NEW BenoitMinisini
GB.ConvString int GB.ConvString ( char result , const char str, long len, const char src, const char dst ) Converts a string form one charset to another charset. ...  
ApiGbSubCollectionGet 16 Aug 2004 - 19:03 - NEW BenoitMinisini
GB.SubCollection.Get void GB.SubCollection.Get ( void subcol , const char key , long len ) Retrieves an object from its name. subcol points at the sub-collection ...  
ApiGbSubCollectionNew 16 Aug 2004 - 18:51 - NEW BenoitMinisini
GB.SubCollection.New void GB.SubCollection.New ( GB SUBCOLLECTION subcol , GB SUBCOLLECTION DESC desc , void container) Creates a new collection of sub-objects. subcol ...  
ApiGBNOTCREATABLE 15 Aug 2004 - 08:15 - r1.2 BenoitMinisini
GB NOT CREATABLE #define GB NOT CREATABLE ... This macro indicates that a class is not creatable by the user. But you can instanciate the class yourself by using ...  
ApiGBCOLLECTION 15 Aug 2004 - 08:11 - r1.2 BenoitMinisini
GB COLLECTION typedef void GB COLLECTION; This opaque type represents a reference to a Gambas GbCollection Collection object.  
DanielCampos 29 Jul 2004 - 20:18 - r1.3 DanielCampos
Name: Daniel Campos Fernández Email: danielcampos@netcourrier.com Company Name: Just Gambas Company URL: http://gambas.sourceforge.net Country: Spain How Learned ...  
JanaLingo 09 Jul 2004 - 01:30 - NEW JanaLingo
Name: Jana Lingo Email: vze3k4rv@verizon.net Company Name: Company URL: Country: USA How Learned About: Other (how?) Comment: came w/ Distro Personal Preferences ...  
ArticleSDL 15 Jun 2004 - 07:56 - r1.2 DanielCampos
Daniel Campos wrote: 1) Sound in Linux is a very obscure world. There are al least two kind of kernel drivers (OSS, Alsa), there are lot of sound servers (Arts and ...  
LangConstantsDeclaration 22 Apr 2004 - 16:54 - r1.4 BenoitMinisini
Constants declaration ( PUBLIC PRIVATE ) CONST Identifier AS Datatype Constant value This declares a class global constant. This constant is accessible everywhere ...  
LangBREAK 17 Mar 2004 - 15:50 - r1.7 BenoitMinisini
BREAK BREAK Leaves a loop immediately. Example PUBLIC SUB Button1 Click() DIM X AS Integer FOR X 1 TO 1000  
LangTRUE 17 Mar 2004 - 15:38 - r1.2 BenoitMinisini
TRUE TRUE The True constant. This constant is used to represent a true boolean value. INCLUDE{"ReferenceBy"}  
LangKILL 17 Mar 2004 - 15:34 - r1.3 BenoitMinisini
KILL KILL Path Removes a file. See also LangCLOSE CLOSE , LangCOPY COPY , LangEof Eof , LangFLUSH FLUSH , LangINPUT INPUT , LangLof Lof , LangLINEINPUT LINE INPUT ...  
LangShr 14 Mar 2004 - 21:33 - r1.5 BenoitMinisini
Shr Value Shr ( Number , Bits ) Returns Number , Bits bits right shifted. Example PRINT Shr(11, 3) ARROW 1  
LangWeekDay 14 Mar 2004 - 20:38 - r1.6 BenoitMinisini
WeekDay Result WeekDay ( Date/Time ) Returns the week day of a date/time value. See LangPredefinedConstants Predefined constants for a list of constants associated ...  
LangEof 10 Mar 2004 - 16:32 - r1.3 BenoitMinisini
Eof Boolean Eof ( File ) Returns LangTRUE TRUE if we are at the end of the stream. Example See LangLINEINPUT LINE INPUT for an example. See also LangCLOSE CLOSE ...  
LangLof 10 Mar 2004 - 16:29 - r1.3 BenoitMinisini
Lof Length Lof ( File ) Returns the length of a opened stream. Example OPEN FileName FOR READ AS #hFile ... PRINT File length is ; Lof(hFile)  
LangAsnhASinh 10 Mar 2004 - 16:25 - r1.6 BenoitMinisini
Asnh / ASinh value Asnh ( Number ) value ASinh ( Number ) Computes the hyperbolic arc-sine of a number. Example PRINT Asnh(2) ARROW 1.443635475179  
LangMax 10 Mar 2004 - 16:25 - r1.2 BenoitMinisini
Max value Max ( Expression , Expression ... ) Returns the greater expression of the list. Expressions must be numbers or date/time values. Examples PRINT Max(6, 4 ...  
LangLog 10 Mar 2004 - 16:25 - r1.2 BenoitMinisini
Log value Log ( Number ) Computes the neperian logarithm of a number. Examples PRINT Log(2.71828) ARROW 0.999999327347  
LangSgn 10 Mar 2004 - 16:12 - r1.3 BenoitMinisini
Sgn Sign Sgn ( Number ) Returns the sign of a number. If the number is zero, it returns zero. If the number is strictly positive, it returns the integer number 1 ...  
LangSin 10 Mar 2004 - 15:48 - r1.5 BenoitMinisini
Sin Value Sin ( Angle ) Computes the sine of an angle. The angle is specified in radians. Example PRINT Sin(Pi/2) ARROW 1  
LangTan 10 Mar 2004 - 15:48 - r1.2 BenoitMinisini
Tan Value Tan ( angle ) Computes the tangent of an angle. The angle is specified in radians. Example PRINT Tan(Pi/4) ARROW 1 INCLUDE{"ReferenceBy"}  
LangSinh 10 Mar 2004 - 15:48 - r1.4 BenoitMinisini
Sinh Value Sinh ( Number ) Computes the hyperbolic sine of a number. Example PRINT Sinh(1) ARROW 1.175201193644  
LangLTrim 10 Mar 2004 - 15:38 - r1.2 BenoitMinisini
LTrim$ Result LTrim$ ( String ) Strips white spaces from the left of a string. A white space is any character whose ASCII code is stricly lower than 32. Examples ...  
JeanPierreWeber 07 Mar 2004 - 12:42 - NEW JeanPierreWeber
Name: Jean-Pierre Weber Email: jpierre.weber@wanadoo.fr Company Name: Company URL: Country: France How Learned About: Press/News (where?) Comment: Personal Preferences ...  
KeyReleaseProgram 10 Feb 2004 - 19:33 - r1.3 RobKudla
The Key Release Program With this miniprogram you can check the arrow keys. When they are used and released a new information is shown. You need a textbox to get ...  
GeorgesCannard 06 Feb 2004 - 10:06 - NEW GeorgesCannard
Name: Georges Cannard Email: georges.cannard@wanadoo.fr Company Name: Company URL: Country: France How Learned About: Press/News (where?) Comment: Personal Preferences ...  
LangDEFAULT 23 Jan 2004 - 01:22 - r1.2 PaulRobinson
DEFAULT See LangSELECT SELECT . Previous: LangDEC DEC Next: LangDeg Deg INCLUDE{"ReferenceBy"}  
HowDoIManipulateStrings 05 Jan 2004 - 03:41 - NEW RobKudla
Strings These functions can be used to work with Strings: to catenate strings InStr() to get the position of a substring  
RamAnanth 14 Oct 2003 - 02:40 - NEW RamAnanth
Name: Ram Ananth Email: ramananth@hotmail.com Company Name: Dinkum Technology Company URL: http://www.dinkum.com.sg Country: Singapore Comment: Personal Preferences ...  
YohanAdiSetiawan 07 Oct 2003 - 05:17 - NEW YohanAdiSetiawan
Name: Yohan Adi Setiawan Email: yohan@lug.stikom.edu Company Name: STIKOM Company URL: http://lug.stikom.edu Country: Indonesia Comment: I owrked as programmer Personal ...  
ApiGBNumberToString 09 Aug 2003 - 09:30 - r1.2 BenoitMinisini
GB.NumberToString int GB.NumberToString ( int local , double value , const char format , char str , long len ) Converts a number into a string. local is a boolean ...  
ApiGBArrayGet 07 Aug 2003 - 21:40 - NEW BenoitMinisini
GB.Array.Get void GB.Array.Get ( GB ARRAY array , long index ) Returns a pointer to an element of the array from its index. array is a reference to the array object ...  
ApiGBArrayCount 07 Aug 2003 - 21:40 - NEW BenoitMinisini
GB.Array.Count long GB.Array.Count ( GB ARRAY array ) Returns the number of elements in a Gambas array. array is a reference to the array object. Be careful ! This ...  
ApiGBArrayAdd 07 Aug 2003 - 21:40 - NEW BenoitMinisini
GB.Array.Add void GB.Array.Add ( GB ARRAY array ) Inserts an element at the end of a Gambas array. array is a reference to the array object. This function returns ...  
ApiGBArrayNew 07 Aug 2003 - 21:39 - NEW BenoitMinisini
GB.Array.New void GB.Array.New ( GB ARRAY array , GB TYPE type , long size ) Creates a new Gambas GbArray Array object. array will receive a reference to the array ...  
ApiGBSubstAdd 07 Aug 2003 - 21:36 - NEW BenoitMinisini
GB.SubstAdd void GB.SubstAdd ( const char str , long len ); You call this function inside a substitution callback, instead of returning a string to substitute. See ...  
ApiGBSubstString 07 Aug 2003 - 21:35 - NEW BenoitMinisini
GB.SubstString char GB.SubstString ( const char pattern , long len , GB SUBST CALLBACK callback ) Substitutes elements in a pattern and returns the resulting string ...  
ApiVARGOPT 07 Aug 2003 - 19:16 - NEW BenoitMinisini
VARGOPT #define VARGOPT ( name , default ) (MISSING( name ) ? ( default ) : VARG( name )) Returns the value of an argument from its name, or a default value if this ...  
ApiDECLAREPROPERTY 07 Aug 2003 - 19:16 - NEW BenoitMinisini
DECLARE PROPERTY #define DECLARE PROPERTY ( property ) ... Declares a property implementation function. method is the name of the property implementation function ...  
ApiBEGINPROPERTY 07 Aug 2003 - 19:13 - NEW BenoitMinisini
BEGIN PROPERTY #define BEGIN PROPERTY ( name ) ... Begins the implementation of a property. name is the name of the property, as specified in the class declaration ...  
ApiBEGINMETHOD 07 Aug 2003 - 19:11 - NEW BenoitMinisini
BEGIN METHOD #define BEGIN METHOD ( name , arguments ) ... Begins the implementation of a method. name is the name of the function, as specified in the class declaration ...  
ApiGBCONSTANT 07 Aug 2003 - 18:01 - NEW BenoitMinisini
GB CONSTANT #define GB CONSTANT ( symbol , type , value ) ... Declares a constant symbol. symbol is the name of the constant. type is the type of the constant. value ...  
ApiGBVIRTUALCLASS 07 Aug 2003 - 17:56 - NEW BenoitMinisini
GB VIRTUAL CLASS #define GB VIRTUAL CLASS ... This macro indicates that a class is virtual. INCLUDE{"ReferenceBy"}  
ApiGBNBREADINTEGER 07 Aug 2003 - 11:59 - NEW BenoitMinisini
GB NB READ INTEGER #define GB NB READ INTEGER 1 Use this constant with the ApiGBNumberFromString GB.NumberFromString function to read an integer inside a string. ...  
ApiGBWATCHREADWRITE 07 Aug 2003 - 11:59 - NEW BenoitMinisini
GB WATCH READ WRITE #define GB WATCH READ WRITE 3 Use this constant with the ApiGBWatch GB.Watch function to watch a file descriptor for both reading and writing ...  
ApiGBGetInterface 06 Aug 2003 - 20:07 - r1.2 BenoitMinisini
GB.GetInterface int GB.GetInterface ( const char name , long version , void iface ) This function gets a component interface. It fills a structure that describes ...  
ApiGBHashTableGet 06 Aug 2003 - 14:31 - NEW BenoitMinisini
GB.HashTable.Get void GB.HashTable.Get ( GB HASHTABLE hash , const char key , long len , void data ) Retrieve a data from the hash table. hash is a pointer to a hash ...  
ApiGBHashTableNew 06 Aug 2003 - 14:30 - NEW BenoitMinisini
GB.HashTable.New void GB.HashTable.New ( GB HASHTABLE hash , int mode ) Creates a new hash table that will associate void pointers to char keys. hash will receive ...  
ApiGBStoreVariant 06 Aug 2003 - 14:25 - NEW BenoitMinisini
GB.StoreVariant void GB.StoreVariant ( GB VARIANT src , char dst ) Store a Gambas variant value into memory. src points at the variant value. dst is the memory address ...  

Number of topics: 50