Re: [Gambas-user] C Code character manipulation - alternatives

2009-05-22 Thread KhurramM
Thanks for all the cooperation for this mini coding of mines. :handshake: Best Regards -- View this message in context: http://www.nabble.com/C-Code-character-manipulation---alternatives-tp23611042p23681537.html Sent from the gambas-user mailing list archive at Nabble.com. ---

[Gambas-user] Comparative Weakness in Compiler

2009-05-22 Thread KhurramM
a variable or constant declared is never used in the program This warning message comes into play when working in the Borland C Compiler. I think this should be in gambas. I just wanted to put this up. Best Regards -- View this message in context: http://www.nabble.com/Comparative-Weakness-in

Re: [Gambas-user] Smooth Scrolling (not happening)

2009-05-22 Thread nando
Run a new separate program just for the credits and make sure it is placed on the screen exactly where you want it to be. A possible future feature Benoit, The Tools include many things like Listbox, etc. Can there be something that is a container just for an already compiled Gambas program???

Re: [Gambas-user] C Code character manipulation - alternatives

2009-05-22 Thread nando
Technically, C doesn't 'put' garbage values into variables. Those values just happen to be there if you don't set it to something. Gambas wonderfully sets numeric variables to zero. You can think of it as NULL, I suppose, but ZERO is a numeric description dealing with numbers whereas NULL is usual

Re: [Gambas-user] A web page for Gambas Applications (Hugo)

2009-05-22 Thread KhurramM
Hoping to learn something new from u. Best Regards -- View this message in context: http://www.nabble.com/A-web-page-for-Gambas-Applications-%28Hugo%29-tp23567272p23681314.html Sent from the gambas-user mailing list archive at Nabble.com. --

Re: [Gambas-user] C Code character manipulation - alternatives

2009-05-22 Thread KhurramM
TO: Ron_1st Either I am wrong or u r: DIM k, countVar AS Integer PRINT k, countVar The output of these lines is: 0 0 How come u say that both integers are initialized to NULL. This is a super feature of Gambas versus C, which puts garbage values into variables of any type. Correc

Re: [Gambas-user] A web page for Gambas Applications (Hugo)

2009-05-22 Thread Hugo Chillon
Give me a week to test a lot of changes I made last week. But I have to say that I'm not a software developer, so the code works but it's not elegant and professional. KhurramM wrote: > > Can u upload the code and related? > > Thanks:-) > -- View this message in context: http://www.nabble

Re: [Gambas-user] listview equivalent of listbox.list

2009-05-22 Thread Dimitris Anogiatis
Hey joshua, I think listbox can do what listview.current.delete does. Try this ListBox1.Remove(ListBox1.Find(ListBox1.Text)) this will find the index number of whatever item is currently selected and the item with that index number will be removed as for enumerating a listbox a simple fo

Re: [Gambas-user] A web page for Gambas applications

2009-05-22 Thread Benoît Minisini
> > Salut Benoit, > > > > Name: Jacky Tripoteau > > Application: Laurux > > Description: An french ERP for small french firms. Complete and > > adjustable. Url: http://www.laurux.fr > > Screenshot: Table of product > > > > Best regards > > > > Jacky. > > What is the license of the application? I f

[Gambas-user] listview equivalent of listbox.list

2009-05-22 Thread Joshua Higgins
Hi, I want to use the contents of a listview with a FOR EACH statement. Is there an equivalent of ListBox.List, to return the array? I would use list boxes, but I need the ListView.Current.Delete function, which the listbox seems to lack. Thanks. -- joshua higgins >>--

[Gambas-user] About the web site application page

2009-05-22 Thread Benoît Minisini
Hi, I finally created a list of pages in the wiki, one for each application. You can see it there: http://gambasdoc.org/help/app An application named ABCD has its page at http://gambasdoc.org/help/app/abcd and its screenshot at http://gambasdoc.org/help/app/abcd/:screenshot Check that the inf

Re: [Gambas-user] A web page for Gambas applications

2009-05-22 Thread Benoît Minisini
> Salut Benoit, > > Name: Jacky Tripoteau > Application: Laurux > Description: An french ERP for small french firms. Complete and adjustable. > Url: http://www.laurux.fr > Screenshot: Table of product > > Best regards > > Jacky. What is the license of the application? -- Benoît

Re: [Gambas-user] A web page for Gambas Applications (Hugo)

2009-05-22 Thread KhurramM
Can u upload the code and related? Thanks:-) -- View this message in context: http://www.nabble.com/A-web-page-for-Gambas-Applications-%28Hugo%29-tp23567272p23675625.html Sent from the gambas-user mailing list archive at Nabble.com.

Re: [Gambas-user] A web page for Gambas Applications (Hugo)

2009-05-22 Thread Benoît Minisini
> Dear Benoit > > I'm the owner of an Industrial Laundry / Textile Rental company with 2 > centres in different countries. I am using and developing an application > in Gambas to control all our business process, that I began 4 months > ago. It works via internet with a remote MySQL database. > > N

Re: [Gambas-user] A web page for Gambas applications

2009-05-22 Thread Benoît Minisini
> Here is one of mine > > NAME: Moises Henriquez > APP NAME: vinstall-ng > DESCRIPTION: A graphical linux installer > HOME PAGE: http:// vinstall-ng.googlecode.com > > Sorry can't attach screenie from my mobile phone, but several available @ > the project page > I cannot download any screenshot, t

Re: [Gambas-user] Feature Request - Package Management

2009-05-22 Thread KhurramM
Ron_1st: I think u r now more than right. Cant we install gre(gambas runtime environment) first. And then install gambas on it. Now anything can be run via it, just like wine does. Isnt it a better solution. It will not take 850mb space for the package now but only 20mb or around. Also we can then

Re: [Gambas-user] C Code character manipulation - alternatives

2009-05-22 Thread KhurramM
I made a little bluder, my code: PUBLIC SUB Main() ' Declare AND initialize variables. DIM count AS Integer ' The values are initialized at Zero, by above command DIM c AS String ' READ , PRINT , AND count characters. PRINT "Enter character