Re: [Gambas-user] Can create but not edit time-type fields (NxGTR)

2008-08-30 Thread Nx GT-R BOY
I am using MySQL, and there wasn't any error, just the problem I notice. I don't create the DB with database manager, actually I don't work in the DB design, that is done by a coder under Windows who work with DBDesigner for some features like XML and test our project under Windows Vista (Yes, gam

[Gambas-user] Gambas Apps Dependencies

2008-08-29 Thread Nx GT-R BOY
Gambas Apps Dependencies Hi, I have reach a point where I cant code all by me, so I have decide to use a program to send emails notifications from sendmail. So I want my app check for the program, if found, use it, if not, install it. For check the app existence I was thinking something like "whe

[Gambas-user] Can create but not edit time-type fields

2008-08-28 Thread Nx GT-R BOY
Can create but not edit time-type fields Hi, I have a problem with Gambas, I can create new records for a time-type field, but once created I cant edit them, all others field-types works perfect. The exact problem: "The old value replace the tried new value at save time" The database structure f

[Gambas-user] Change list element from ReadOnly ComboBox

2008-08-25 Thread Nx GT-R BOY
Change list element from ReadOnly ComboBox Hi, I cant change (I don't know how, I tried already) the value from a ReadOnly ComboBox from another ComboBox. Exactly what I want to do is control N ComboBox in my form from a ComboBox with identical values, If I change the element of the primary Combo

[Gambas-user] Inactivity Time to Lock Gambas Applications

2008-07-29 Thread Nx GT-R BOY
Hi, as part of my security features in my program, I want to be able to lock my application if was inactive for X minutes (X = setup by user) So, I was wonder if... Is there any Gambas environment variable that can tell me last activity time? I could call a function any time the user click some

[Gambas-user] Sendmail tool and Gambas2

2008-07-14 Thread Nx GT-R BOY
Hi, As part of my development in Gambas2 I am making a feature in my software that remains people a to-do list daily via email. So far I am working with sendmail, but If you know a better alternative would be appreciated. At shell I do: sendmail [EMAIL PROTECTED] From: [EMAIL PROTECTED] Subject:

[Gambas-user] Or inside a Case

2008-06-17 Thread Nx GT-R BOY
Hi, I have a problem, I am not really sure how to get an Or working inside a case, the compiler doesn't complain about any syntax problems, but the code just doesn't works: SELECT CASE something.text CASE "hola" or "hello" do something1 CASE "adios" or "bye" do someth