Re: [Gambas-user] EXEC output advice needed

2013-01-28 Thread Ivan Williams
Bill have you tried SHELL/  'SHELL "mysql -u root -pmypassword archive < /home/bill/GambasFolder/mysql/BackUpOfarchive.sql" & '" -O " & WAIT   Ivan    \~/   I never saw a wild thing sorry for itself. A small bird will drop frozen dead from a bough Without ever having felt sorry for itself. -

[Gambas-user] reset gambas / touchpad sensitivity

2013-01-28 Thread Ivan Williams
Greetings I have two issues - the first caused by the second.  I have a old touchscreen laptop which I have installed ubuntu 12.10 on.  I installed gambas2 but when I navigate the screen in gambas it appears that all the text i scroll over is being selected whether I use the keyboard or the tou

Re: [Gambas-user] How To INSERT INTO in MySQL?

2012-02-06 Thread Ivan Williams
I build a array of inserts  - first item in the array is "begin transaction"     i19 = i19 + 1     sql = "Insert into disks "     sql = sql & "( diskno,dirno, nof,disknum, dirnum) "     sql = sql & "Values ('"     sql = sql & i17 & "', '" & i3 & "', '" &

Re: [Gambas-user] Unknown field -- Case sensitive fields?

2011-10-20 Thread Ivan Williams
Yes, the variables are case sensitive which makes sense since we are in a *nix os.   Ivan    \~/   I never saw a wild thing sorry for itself. A small bird will drop frozen dead from a bough Without ever having felt sorry for itself. -- D.H. Lawrence http://www.usconstitution.net/const.html L

[Gambas-user] file size limit on sql file in gambas????

2011-10-18 Thread Ivan Williams
Greetings once more I have been doing some experimenting with the unable to locate database error in gambas.  I am able to open smaller files but when I attempt to open the most current current version of the file (2.4 GB) in size the program blows up.   Does anyone know if gambas has any file

[Gambas-user] sqlite3 - unable to locate table

2011-10-18 Thread Ivan Williams
Greetings I ran into a problem this morning where my program has started displaying unable to locate a sqlite database which I had previously been accessing without any difficulty.  I check the database, accessed it via command line and verified that it was accessible.  The file is around 2.4 G

[Gambas-user] how to click a check button on a web page?

2010-02-23 Thread Ivan Williams
Greetings I am writing a web app that checks a web page status periodically and if certain events occur, I need to click a button on the web page. Can someone point me to some sample code to do this with. I already have the code in place to check the status of the page but the button click is

[Gambas-user] intel i7 - parallel processing

2009-09-11 Thread Ivan Williams
Greetings I currently program in gambas on a P4 Dual Core with 2 GB RAM and will be upgrading to a I7 system by the end of the quarter. I am wondering if anyone out there is programming on a i7 and if so, what kind of speed are you seeing in program execution? Also, have you had any succ

[Gambas-user] solved dirview set path problem - sorry for bothering you

2009-08-25 Thread Ivan Williams
Greetings Solved my own problem with the default path problem - I was not in the form load area when I set the path - sorry for bothering you fine folks. Ivan I never saw a wild thing sorry for itself. A small bird will drop frozen dead from a bough Without ever having felt sorry for its

[Gambas-user] howto set starting path for dirview?

2009-08-25 Thread Ivan Williams
Greetings I am wring a small app that utilizes dirview. As long as the directories are contained within the user home directory the app can be utilized properly but if the user mounts a external drive the app cannot changedir to the external drive because it is mounted under the /media directo

[Gambas-user] sqlite integer to text string problem

2009-05-07 Thread Ivan Williams
Greetings I have a problem - I can query a sqlite database using SELECT ssym,sclose FROM shistory where (sdate='2009-05-06') and sclose<.75 and sclose > .1 order by ssym,sdate; and receive the following output: AAC|0.24 AAME|0.64 AAU|0.61 ABMC|0.16 ABTL|0.5 ACLS|0.47 but when I do the sa