Re: Database vs Array

2008-02-04 Thread viktoras didziulis
3. Can it be protected? Ye, but it is not a free feature. Check this: http://www.hwaci.com/sw/sqlite/prosupport.html#crypto http://sqlitee.homepc.it/ http://www.sqlite-crypt.com/ On the other hand you can use revolution to encode/decode data before it gets into the database and when

OT: some news on MySQL...

2008-02-01 Thread viktoras didziulis
...MySQL AB being acquired by Sun Microsystems Inc for 1000 000 000 USD . Hmmm, interesting... http://www.sun.com/aboutsun/pr/2008-01/sunflash.20080116.1.xml Viktoras ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this

broken windows in screen mirroring mode (Tiger)

2008-01-26 Thread viktoras didziulis
...so I connected my macbook to media projector, switched to mirror mode to have the same view in both screens, started my application (compiled on windows xp), and saw its windows broken into parts and pieces, all the formatting lost... Is it a bug of Revolution or MacOSX ? When using the

Re: 'the files' and 'the folders' and diacriticals

2008-01-26 Thread viktoras didziulis
Hi Mark, forwarding the original posts on non-english file names by Kenji Kojima (2008-01-16) that describe a possible solution of your problem :-): put cd ~/Desktop cr ls into tScript set the unicodeText of fld 1 to uniencode(shell(tScript),utf8) The first line was shell command got list

Re: Look and Learn . . .

2008-01-20 Thread viktoras didziulis
Hi Richmond, commenting on #4 of your post - b.t.w. this is a so called visual programming or dataflow programming where you draw boxes, link them with arrows and it works... There are lots of tools for this already, starting with dataflow scripting in Idrisi GIS system and continuing with a

Re: Look and Learn . . .

2008-01-20 Thread viktoras didziulis
: Viktoras Didziulis wrote: this is a so called visual programming or dataflow programming I know about that, but that is not what I meant; what I mean is Agent-guided program creation (as demonstrated at http://tech.groups.yahoo.com/group/RRRThesis/files/ files KALA.zip 1 to 12) both visual

Re: Rev on OLPC Sugar OS?

2008-01-10 Thread viktoras didziulis
try LiveCD: http://wiki.laptop.org/go/LiveCd. I tried running Revolution and apps compiled with it on Puppy Linux. It worked there... There is probably no reason why it shouldn't run on this XO Sugar thing :-) Best wishes Viktoras John Patten wrote: Hi All! Just curious... How

Re: advice on a Rev-plus-internet setup (off-topic)

2008-01-06 Thread viktoras didziulis
Hi Nicolas, any communication between the client and the server can be sniffed. So passwords that client passes to the server are not sufficient to protect the database. As Ken wrote, you can try setting up different access levels for different users in MySQL. And never trust the submitted

Re: Want a Window with a vertical scroll

2008-01-06 Thread viktoras didziulis
Hi Thomas, group these 5 fields and add a vertical scroll to the group. Viktoras Thomas Bähler wrote: Dear RunRev List In my project I have five list-fields next to each other with equal but varying number of lines. I wanted a common vertical scroll to see all lines when there are to many

Re: advice on a Rev-plus-internet setup (off-topic)

2008-01-05 Thread viktoras didziulis
Hi Nicolas, Leaving an open port for remote access to any database would it be MySQL or Postgress is considered a serious web server security breach and most providers are aware about this. Besides your data would never be secure on such an open system - anyone that is able to sniff your

Re: Recipes application

2008-01-01 Thread viktoras didziulis
Hi Peter, it works fine on Windows XP, but does not start on my MacOSX 10.4.11 MacBook (Intel). By the way it would be useful to have a few filters not just to select from vegetarian/vegan/sugar-free but also to limit list of recipes to e.g. soups, pancakes, cakes. And maybe a central

Re: How download revolution 2.9 beta ?

2007-12-28 Thread viktoras didziulis
Download failed. Do you want to try again? - this is what happens on MS Windows... Viktoras Sarah Reichelt wrote: On Dec 28, 2007 7:38 PM, Peter Alcibiades [EMAIL PROTECTED] wrote: Tried to get Beta3 from within the Beta2 program. It does indeed download, or says it is, and then a small

Re: Is there such thing as a univeral abort command

2007-11-17 Thread viktoras didziulis
Hi Mark, exit to top aborts all running handlers see also: exit handler (e.g. exit mouseup) exit repeat Best wishes Viktoras Mark E. Powell wrote: Maybe a very simpleton question: Is there a universal abort command that will stop (in a standalone) any running handler? Or must each handler

Re: Massive joins

2007-11-16 Thread viktoras didziulis
The query needed to left join 3 tables (with 10 000 (species), 30 000 (donor regions) and 200 (region definitions) records.) on the forth with 40 000 records (species introduction events) and filter the result list of regions using constraints (WHERE...) on 1 or 20 fields. Using LEFT JOINs in

Re: Massive Speed difference between Mac/PC with SQLite

2007-11-16 Thread viktoras didziulis
Hi Dave, try building your database in :memory: mode. Then dump it to hard disk when ready. I do this routinely in an Rev/SQLite program that deals with 100 000 records distributed over 25 tables with about and 127 fields and it takes less then 2 seconds to copy the entire database to RAM

Re: Massive joins

2007-11-16 Thread viktoras didziulis
Hi Ruslan, Well, it seems to me this is simple task, and small tables. Valentina should resolve such joins in e.g. 0.01 - 0.1 sec or less. V: Yes, I can imagine this and Valentina is in my considerations for a very special project which has already started... What keeps me from purchasing

Re: How do I create an Icon View

2007-11-15 Thread viktoras didziulis
Hi Mark, if I understood you correctly, you need a field which displays contents of a folder (table, database, etc) in a list where icons indicate the type of a resource displayed. Basically you will need to set the imageSource of char 1 to yourimg for each line in a field describing a

Re: Anyone noticing stalled uploading? find a solution?

2007-11-10 Thread viktoras didziulis
hi Josh, if you upload via ftp try increasing libURLSetFTPStopTime to anything more than the default 15 seconds. Dictionary says: use the libURLSetFTPStopTime command to increase the efficiency of multiple FTP transfers. The timeout set by libURLSetFTPStopTime controls when Revolution closes

Re: SQLite3 - problems connecting to database

2007-11-09 Thread viktoras didziulis
if you are on MS Windows try this fix: 1) delete dbsqlite3.dll and Database_Drivers.txt from ...\My Documents\My Revolution Studio\Externals\Database Drivers 2) delete dbsqlite3.dll and Database_Drivers.txt from ...\My Documents\My Revolution Studio\Runtime\Windows\x86-32\Externals\Database

Re: Question on RunRev/SQLite

2007-11-09 Thread viktoras didziulis
when you select database Type : SQLite in the database query builder under Connection tab there are only 2 fields you can type something in: Name (query name) and Database (path to the db with file browser). There are no fields for password or any logon there... Make sure the field Type

Re: libURLDownloadToFile stops downloading on status = requested

2007-10-27 Thread viktoras didziulis
Thanks Sarah, Dave, with your help problem is solved. It was socket timeout, indeed... So I set the socketTimeoutInterval to 30. Now everything works as expected. Best regards Viktoras ___ use-revolution mailing list

Re: libURLDownloadToFile stops downloading on status = requested

2007-10-27 Thread viktoras didziulis
:03 schrieb Andre Garzia: is that the mars rovers external people been talking about? On 10/27/07, Dave Cragg [EMAIL PROTECTED] wrote: On 27 Oct 2007, at 17:26, viktoras didziulis wrote: ... So I set the socketTimeoutInterval to 30... ;-) What are you doing, Viktoras, where a 30 timeout

libURLDownloadToFile stops downloading on status = requested

2007-10-26 Thread viktoras didziulis
Created an updater for my application and now stuck with a problem - libURLDownloadToFile freezes while attempting to download 4 Mb size Revolution stack from my own website. libURLSetStatusCallback returns requested and here it stops for eternity. Server log contains no errors but file is not

Re: Preference Files on Linux

2007-10-14 Thread viktoras didziulis
Hi, Bridger user specific configuration files on Linux systems are stored in the user's home directory in a file that starts with '.' character (a dot file). If an application needs to create more than one dot file then they should be placed in a subdirectory with a name starting with a ’.’

Re: Moving Rev apps to the web (why isn't this on the horizon?)

2007-10-13 Thread viktoras didziulis
May a subset of Revolution engine implemented in JAVA solve the problem? Besides, no need to use plugins - Java (JVM) is omnipresent today and crossplatform... Viktoras Derek Bump wrote: Sannyasin Sivakatirswami wrote: Andre told me about http://www.extjs.com ... I might end up spending

Re: Moving Rev apps to the web (why isn't this on the horizon?)

2007-10-13 Thread viktoras didziulis
another way to go could be expanding Revolution's functionality. First by describing something like Document Object Model for Revolution stacks. Defining structure (objects, nesting, properties), formatting (stylesheets), function (scripts). Then implementing it in any sort of xml/css/scripts

Re: Splash Screen Launcher

2007-10-10 Thread viktoras didziulis
Thanks Sean for reminding about the existence of the on startup handler ! I used to catch all openStack and closeStack in each and every stack of my apps. Now have to chant on startup, on startup, on startup so next time I code I would not forget this :-). However it seems that on startUp

Re: revBrowser and spaces in URLs

2007-10-10 Thread viktoras didziulis
try replacing empty spaces in the url with %20 viktoras Henk van der Velden wrote: Hi Eric, I've tried that already, but without succes. Urlencode turns pdtex 1-2.jpg into pdtex+1-2.jpg. However this doesn't display the file and it doesn't produce an error message either. In the mean time

Re: Splash Screen Launcher

2007-10-09 Thread viktoras didziulis
Hi Mark, 1) create 2 stacks: one is going to be your launcher splashscreen app, the other - stack to be run via the splashscreen; 2) in stack inspector for the launcher stack set Stack Files pointing to that other stack; 3) in the launcher stack's script editor write: on openStack go stack

Re: Splash Screen Launcher

2007-10-09 Thread viktoras didziulis
correction for the launcher's handler: on openStack hide me in 1 sec go stack thatOtherStack end openStack Hi Mark, 1) create 2 stacks: one is going to be your launcher splashscreen app, the other - stack to be run via the splashscreen; 2) in stack inspector for the launcher stack set Stack

Re: Web-based Application in Revolution

2007-10-08 Thread viktoras didziulis
i guess problem with multiple instances can be solved by using Apache sqlite module modsqlite which adds db server functionality to the Apache web server. It resides in memory all the time, so no new instances are initiated, no application startup overheads and cash is not stressed... What

Re: latest rev newsletter - database stack

2007-10-07 Thread viktoras didziulis
Hi Peter, it is not a good idea to run anything from desktop if you are on Windows. I sort of remember having this problem with some stacks of mine. Moving it to C:/anyfolder should solve the problem. Then execute set the defaultdirectory to C:/anyfolder to make sure the app makes a mess

Re: serverside relay script

2007-10-03 Thread viktoras didziulis
actually me too use server side Perl script to communicate with desktop application created in rev and a MySQL database on a server. First of all it is actually the only secure way to do this, because leaving mysql port open for everybody is a highly UNSECURE and unrecommended practice.

proportional resizing group of graphics

2007-09-29 Thread viktoras didziulis
is there any property that allows proportional resizing of grouped graphics when group's size changes. Or all one can do is setting width and height of each and every graphic within the group from within a script ? Making a world map with countries represented by polygons. Now trying to

Re: proportional resizing group of graphics

2007-09-29 Thread viktoras didziulis
, and then set the points of the polygon to that. This might be faster then resizing visual objects (untested). Hope this will get you thinking (and that I haven't made any grave thinking errors) Bjoernke On 29 Sep 2007, at 14:20, viktoras didziulis wrote: is there any property that allows

webcams and Rev

2007-09-21 Thread viktoras didziulis
...by the way, how do we access webcams through Revolution? Any hints? Best wishes Viktoras ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: revBrowser or revGoURL?

2007-09-11 Thread viktoras didziulis
If you are on MS windows, one option is to load your tests in a separate hta window. To do this first create an empty html file template and save it with .hta extension, then insert the following tag into the head section of the html (right after title section): HTA:APPLICATION ID=whatever

Re: Well guess what? Guess what? Congratulations and Welcome!

2007-09-08 Thread viktoras didziulis
Yah! One more important fix is fixed unicode character mapping issues for a few languages (including my native) on Windows. Thanks and all the best! Viktoras Peter Alcibiades wrote: Yes, its 2.9 Beta for Linux. It will not be necessary to say more. It will not be possible anyway, since

Re: How am I supposed to answer a Post???

2007-08-20 Thread viktoras didziulis
afair there is a size limit for a message, so if it is a large post it may not get through. Also be sure to send it in plain text - no html, attachments whatsoever... Sometimes it just takes time - the record delay of one of my messages was approx 1 hour after sending! Viktoras Len Morgan

Re: including images from standard library...

2007-08-15 Thread viktoras didziulis
Thanks Sarah for the reply! Seems the only option is to copy images from standard library to the actual stack before using them. Thanks again. Best regards Viktoras Sarah Reichelt wrote: I use Revolution 2.6.1 to build executables (for Windows, MacOSX and Linux) that use images from

including images from standard library...

2007-08-12 Thread viktoras didziulis
Hi, I use Revolution 2.6.1 to build executables (for Windows, MacOSX and Linux) that use images from Revolution's own standard image library. In a script images are referred to using their numeric id. Everything works within the IDE, but these images do not appear in the compiled application.

Re: Inserting images as BLOBs - any way to avoid using base64encode?

2007-08-07 Thread viktoras didziulis
Hi Terry, it is too easy to extract images from sqlite database unless they are encrypted somehow. So if you simply store them in the database as blobs, they wont be protected from stealing. Alternative way to go is to store images in an encrypted stack as custom properties (instead of using

data stream processing

2007-08-02 Thread viktoras didziulis
Hi. I have a console application that constantly spews out numbers at a rate of 3 numbers per second. The task is to read the number and display it in a field, then as soon as the next number arrives it should replace the field's contents with new number visualise it graphicaly and so on ad

Re: The Ancient Art of the Animated GIF

2007-07-29 Thread viktoras didziulis
I frequently use a minimalistic unfreez (Windows): http://www.whitsoftdev.com/unfreez/ Its free. Simply drag your images into, set or unset loop animation and frame delays (in cs) and save... Works like a charm :-) Viktoras Mike Hughes wrote: I know Animated GIF's probably seem a little

Google code search

2007-07-26 Thread viktoras didziulis
Anyone tried this: http://www.google.com/codesearch ? I was not able to find anything in Revolution, but at least they say everybody can submit their code in any language here: http://www.google.com/codesearch/addcode?hl=en Best wishes! Viktoras

Re: [OT] Funny folk joining Yahoo Groups

2007-07-24 Thread viktoras didziulis
Does this mean that Yahoo groups are safer than Google ? Are there any other groups service providers comparable to Yahoo? Viktoras Stephen Barncard wrote: complete email addresses are obfuscated on Yahoo. sqb On 24 Jul 2007, at 14:21, Mikey wrote: in Google Groups you can set new

Re: More Free Icons

2007-07-23 Thread viktoras didziulis
Thanks Richmond! and here are even more free icons: http://tango.freedesktop.org/Tango_Desktop_Project http://interfacelift.com/icons-mac/ http://www.famfamfam.com/lab/icons/ http://www.kde-look.org/index.php?xsortmode=highpage=0 Best wishes Viktoras Richmond Mathewson wrote: What a

paintCompression and speed

2007-07-21 Thread viktoras didziulis
Any pointers on how paintCompression works... Dictionary says: When an image is changed with a paint tool, it is recompressed the next time you leave the card it's on. Is this also true if imageData was directly updated - i.e. image gets compressed next time I leave the card it is on, isn't

Re: paintcompression and speed

2007-07-21 Thread viktoras didziulis
Thanks Wilhelm! Viktoras ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution

Re: OT: Silverlight - Comments?

2007-07-19 Thread viktoras didziulis
for me it seems more like enhancement of browser-side scripting capabilities. Formerly MS Explorer was limited with jscript and VBscript. With silverlight one can use Javascript (well, now they call it AJAX...), Python, Ruby, whatever else for client-side scripting. I remember Netscape allowed

Re: some stuff about languages and web dev. Re: OT: Silverlight - Comments?

2007-07-19 Thread viktoras didziulis
Thanks for correcting me Andre! It is just when I opened http://silverlight.net/ and saw familiar titles (.NET, AJAX, VB, C#, Python and Ruby) + integrates with existing web applications so ..delivering of high quality video to all major browsers... went to the second plan as it is at the

Re: Paste into field issue (cross platform unicode library)

2007-07-18 Thread viktoras didziulis
there exists a crossplatform C/C++ and Java Unicode Globalization library (being used by sqlite very recently) - ICU: http://www.icu-project.org/ May it be of some use to RunRev people ? Viktoras J. Landman Gay wrote: Well...yes and no. If Rev were just a Mac app, then they could use the

Re: Need for Speed (databases)

2007-07-17 Thread viktoras didziulis
sharing the info on how to use sqlite in memory databases from within Revolution. Just tested in on my Rev, it works, so it may be useful for you too. Say we have my.db database file. We wish to load it as an in memory database to increase query performance. Here is the algorithm in SQL:

Re: Wireframe animation engine examples?

2007-07-15 Thread viktoras didziulis
This may be useful: http://www.adobe.com/devnet/flash/articles/flash_3d.html. Examples are for flash, but same principles may apply for 3D graphics in Revolution too. Viktoras David Bovill wrote: I'd like to take a look at some examples of wire frame animation - for speed and flexibility

Re: Need fore speed...

2007-07-14 Thread viktoras didziulis
Rob, use the filter: 1) Modify your table so that each line starts with line number as the first item; 2) Copy the original table variable (say it is called myTable) to tableCopy. Filter modifies contents of variable, so make sure it won't touch the original data; 3) use the filter like

Re: Need fore speed...

2007-07-14 Thread viktoras didziulis
one more alternative - works very fast - use sqlite in-memory database: 1) download sqlite3 command-line executable 2) run shell (cmd on windows) and create an in-memory database by executing: sqlite3 :memory: 3) assuming your data consists of 4 fields (columns) that are tab delimited and stored

Re: Need fore speed...

2007-07-14 Thread viktoras didziulis
Yest it is at http://www.sqlite.org/cvstrac/wiki?p=FtsTwo full text search with recently added complete Unicode support via ICU (http://www.icu-project.org/)... Viktoras David Bovill wrote: Interesting I read somewhere that Google added full text search to sqlLite codebase recently (last

Re: launch app from browser

2007-07-13 Thread viktoras didziulis
The only way to get this working would be using HTA. Note, it works on MS windows (98 and up) only. It is an html file that starts like this: html head titlePut your title here/title HTA:APPLICATION ID=ID of the app ICON=appicon.ico APPLICATIONNAME=Name of the app VERSION = 1

Re: launch app from browser

2007-07-13 Thread viktoras didziulis
David, trap reloadStack message: on reloadStack end reloadStack this will prevent two main stacks with the same name from being open simultaneously. Best wishes Viktoras David wrote: The question I have is if you want to get the html link to open a rev document - either by your

Re: What I did with Rev last night - few lines of code for graphical file/folder/volume navigator

2007-07-06 Thread viktoras didziulis
Didn't expect programming an embedded volumes/folders/files navigator can be so easy. If you need something like this in your application, use the source below - just copy/paste the 3 handlers from this message into a scrolling field. In object inspector check the lock text and the list

Re: What I did with Rev last night - few lines of code for graphical file/folder/volume navigator

2007-07-06 Thread viktoras didziulis
free to reuse it :-) All the best Viktoras viktoras didziulis wrote: Didn't expect programming an embedded volumes/folders/files navigator can be so easy. If you need something like this in your application, use the source below - just copy/paste the 3 handlers from this message

Re: What I did with Rev last night

2007-07-05 Thread viktoras didziulis
Hi! here are few more examples of recreational programming with Rev :-). One stack is an experiment to see whether the well known game of chaos where seemingly random process creates a deterministic outcome (sierpinski fractal) produces similar results for any configuration of points or just

Re: Converting Image to Line Drawing

2007-07-02 Thread Viktoras Didziulis
http://www.microsoft.com/windowsxp/using/digitalphotography/prophoto/lineart mspx ---Original Message--- From: Polydiam.com Date: 07/02/07 16:35:19 To: use-revolution@lists.runrev.com Subject: Converting Image to Line Drawing Hi I'm looking to make a small application that

Re: Converting Image to Line Drawing

2007-07-02 Thread Viktoras Didziulis
the very end should be lineart.mspx -Viktoras ---Original Message--- From: Judy Perry Date: 02/07/2007 20:21:22 To: How to use Revolution Subject: Re: Converting Image to Line Drawing I get a 404 on this. Anybody else? Judy On Mon, 2 Jul 2007, Viktoras Didziulis

Re: AW: The Art of Dissolving Splash Screens

2007-06-29 Thread Viktoras Didziulis
one can stuff almost anything - images, scripts, stylesheets into a dll file and then use these resources through res:// protocol. Occasionally I used Microsoft's HTA (Html application) technology before I found Revolution. It allows to develop an application using html/css/javascript+activex,

burn, burn ;-)

2007-06-29 Thread Viktoras Didziulis
Just played a little with real-time image manipulation in Rev. Initially tried using arrays, but then the chunk based approach with binary encode/decode seemed to perform faster (strange, have to try arrays again.. ). Here is a small joke-stack in legacy format: go stack url

Re: character to justify text

2007-06-27 Thread Viktoras Didziulis
Hi, you can try adjusting the size of space characters like this: repeat with i=1 to the number of chars in fld fText set the textSize of char x of fText to y end repeat where char x is space character and y is a number between 4 and whatever the upper limit is... If the fixedLineHeight

Re: reading CSV text file

2007-06-22 Thread Viktoras Didziulis
In cases like this I usually open the csv with my OpenOffice and save it with record delimiter set to tab and no text delimiter (e.g. ordinary tab delimited file). Then I go to my Revolution studio :-). Otherwise it is a real headache to process the correct csv files as some clever programs also

Re: the files functions doesn't work correctly withdiacriticalcharacters

2007-06-21 Thread Viktoras Didziulis
Hi Xavier, this may be related to a collection of semi-resolved/partially-fixed (engine unicode support?..) bugs where characters outside of the standard Western European character set are not being translated correctly. I guess it is the same problem that prevents me from developing software

Re: Programming challenge : spelling corrector

2007-06-19 Thread Viktoras Didziulis
By the way, and this is off-topic, except that it is about the coming Perl 6 programming language, the interesting citation: the vision for Perl 6 is more than simply a rewrite of Perl 5. By separating the parsing from the compilation and the runtime, we're opening the doors for multiple

Perl 6 project

2007-06-19 Thread Viktoras Didziulis
By the way, the snapshot of Perl 6 technology (called Parrot) can be downloaded from http://www.parrotcode.org/ Parrot is a virtual machine designed to efficiently compile and execute bytecode for dynamic languages. Parrot currently hosts a variety of language implementations in various stages

Re: create field on specific positoin

2007-06-19 Thread Viktoras Didziulis
I do this like that (just copied from an existing app): lock screen create group gLegendKeeper in group gLegend of card mainCard repeat with i=1 to 100 put f i into gName create field gName in group gLegendKeeper of group gLegend of card mainCard set the left of field fName of card

Re: create field on specific positoin

2007-06-19 Thread Viktoras Didziulis
+ 22) set the top of field fName of card mainCard to graphicTop end repeat unlock screen ---Original Message--- From: Viktoras Didziulis Date: 19/06/2007 10:40:20 To: How to use Revolution Subject: Re: create field on specific positoin I do this like that (just copied from

Re: 281 installer problems

2007-06-19 Thread Viktoras Didziulis
Hi, In 2.8.1 annoucement it warned: ..I recommend you do a full install from the downloads page rather than using your update button inside the program, as this version corrects a number of issues with the installer/uninstaller, and you will not see the benefit of this unless you do a full

Re: strange posting problems

2007-06-13 Thread Viktoras Didziulis
Hi Eddie, there is also size limit for posts (just can't remember the right number) and it should be text-only (no html) message, no attachments. Viktoras ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to

Re: puzzeld with database path Was: invalid database path

2007-06-11 Thread Viktoras Didziulis
Hi Tiemo, I have the same trouble on MS Windows with my 2.8.1 studio. Just filled the report: http://quality.runrev.com/qacenter/show_bug.cgi?id=5140 You can add more comments/votes there. All the best! Viktoras ---Original Message--- From: Tiemo Hollmann TB Date:

Re: puzzeld with database path Was: invalid database path

2007-06-11 Thread Viktoras Didziulis
By the way, for me compiled application started to work after I copied dbsqlite.dll into Externals/database_drivers and revdb.dll is just where it is supposed to be - in Externals folder. Best! Viktoras ---Original Message--- From: Viktoras Didziulis Date: 06/11/07 12:25:24

Re: sqlite question

2007-05-29 Thread Viktoras Didziulis
Hi Peter, go to http://www.sqlite.org/sqlite.html . At the very end of this page there are instructions on using sqlite3 in a shell script. Some time ago I successfully applied these to query my own sqlite3 databases like this: on mouseUp local cSQL local tmpTab put sqlite3 my.db quote

sqlite in-memory databases

2007-05-29 Thread Viktoras Didziulis
Hi, does anyone know if after I create an in-RAM database using sqlite3 memory and then do for any stored database file: ATTACH db_file AS db_ram does it also load the attached database into RAM or continues to query the attached database as it is (e.g. disk file) ? Any experiences with

Re: Abode Tools Died -- Back To RunRev!

2007-05-26 Thread Viktoras Didziulis
ImageMagick http://www.imagemagick.org/script/index.php It would be nice to have a direct interface from Rev. However it is also possible to use in batch mode and command line, accessible from many other programing languages and environments (Perl, Python, etc...). All the best! Viktoras

how to do .import with revdb_execute (sqlite)?

2007-05-23 Thread Viktoras Didziulis
revdb_execute(dbID,.import ' myFile ' 'Lookup') throws an error: near . syntax error. Same command works from shell with external sqlite installation or from commandline. Is there any other way to import tab delimited file into database table directly through revdb_execute ? Are there any

Re: Code Signing Anyone?

2007-05-22 Thread Viktoras Didziulis
I'm interested. Write it, please :-). Viktoras ---Original Message--- From: Scott Kane Date: 05/22/07 03:54:20 To: use-revolution@lists.runrev.com Subject: Code Signing Anyone? This pertains to people using Rev to build Windows Stand Alones. In XP SP2 Microsoft

Re: OT: Descent FTP Client for Windows?

2007-05-19 Thread Viktoras Didziulis
SmartFTP (http://www.smartftp.com/) ?.. Viktoras ---Original Message--- From: Derek Bump Date: 05/20/07 00:10:06 To: How to use Revolution Subject: OT: Descent FTP Client for Windows? I'm looking for a descent FTP Client for Windows XP. I loved Transmit on the Mac, but I'm

Re: Revolution 2.8.1: a 240+ bug fixes/improvements! What about the remaining 1879?

2007-05-18 Thread Viktoras Didziulis
Completely agree with you, Mark! As a relatively new user of Revolution 2 years (with a few software projects completed during this time which would not be possible without Rev) I was also extremely satisfied to see Altuit products eventually integrated into the IDE. Now it is not anymore a

Re: 'Community Beta' has lost its way

2007-05-14 Thread Viktoras Didziulis
Something is wrong with Bills e-mail account (server issue?..). When I tried resending my feedback (top 5) on beta, I received mail not delivered in a few days again for both mailboxes... All produced same error: 451 Could not complete sender verify callout (in reply to RCPT TO command) But

Re: 'Community Beta' has lost its way

2007-05-14 Thread Viktoras Didziulis
Message--- From: Viktoras Didziulis Date: 14/05/2007 13:30:41 To: How to use Revolution Subject: Re: 'Community Beta' has lost its way Something is wrong with Bills e-mail account (server issue?..). When I tried resending my feedback (top 5) on beta, I received mail not delivered

Re: Spreadsheet

2007-05-14 Thread Viktoras Didziulis
By the way, here is a list of expressions and functions implemented in sqlite: http://www.sqlite.org/lang_expr.html All the best! Viktoras ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: Spreadsheet

2007-05-13 Thread Viktoras Didziulis
Hi David, regarding the formula processing and scripting, in one project I am using sqlite to store and process tables because the SQL92 standard supports things like as well as all major mathematical operators: SELECT a, b, CASE WHEN ab AND a2 THEN 'a is greater' WHEN a=b THEN a+b WHEN

Re: Spreadsheet

2007-05-13 Thread Viktoras Didziulis
. On 5/13/07 6:57 AM, Viktoras Didziulis [EMAIL PROTECTED] wrote: Anyway I see this as the only way to implement any scripting and formula translation in Revolution, otherwise your end users are likely to smash into the infamous scriptlimit which is 10 lines of Revcode

Re: Cluster analysis

2007-05-09 Thread Viktoras Didziulis
Hi David, You may find these resources helpful: http://obelia.jde.aca.mmu.ac.uk/multivar/ca.htm http://www.statsoft.com/textbook/stcluan.html Best wishes Viktoras ---Original Message--- From: David Glasgow Date: 09/05/2007 12:16:05 To: use-revolution@lists.runrev.com

Re: OT : equivalent of BBEdit on Windows ?

2007-05-09 Thread Viktoras Didziulis
Try Crimson editor: http://www.crimsoneditor.com/ Supports syntax highliting of lots of languages, regular expressions, replace on multiple documents. Extendable via custom syntax files. Multiple redo and undo, macros, spell checker, etc... There is a project to port it to multiple OSes:

smartDraw and alternatives

2007-05-05 Thread Viktoras Didziulis
what software for easy drawing eye-candy diagrams (Tree diagrams, ER, block diagrams from templates) do you usually use? I tried smartDraw (www smartdraw.com) but for some reason it is very unstable and almost unusable on my system, so decided to ask for your advice again on comparable

Re: Crashes with 2.8.1 dp4

2007-05-03 Thread Viktoras Didziulis
Can it be related to bug #3992 (already confirmed, but not yet fixed in dp5) ? Viktoras ---Original Message--- From: Malte Brill Date: 05/03/07 10:55:33 To: use-revolution@lists.runrev.com Subject: Re: Crashes with 2.8.1 dp4 Hi Joe, if you say the inspector changes things

Re: can't reach Rev Beta Test Manager via e-mail

2007-05-02 Thread Viktoras Didziulis
Hi Bill, I have already re-sent my feedback this morning (09:08) to both addresses. May it be that both are still undelivered ?.. Once I had similar no-delivery problems when our national ISP servers were blacklisted by AOL. In case you have not yet received them I will try to resend these

can't reach Rev Beta Test Manager via e-mail

2007-05-01 Thread Viktoras Didziulis
A few days (25 04 2007) ago I have sent my feedback on top 5 problems of the latest Revolution beta release. Today (01 05 2007) I found the following message in my inbox : This is the Postfix program at host mail.runrev.com. I'm sorry to have to inform you that your

slightly off-topic: software marketing issues

2007-04-27 Thread Viktoras Didziulis
Can anyone recommend any good books or online resources on how to market and sell software products, arrange beta testing, choose suitable type of licensing, avoid pitfalls (unsatisfied customers, money-back and related things), creating product website, user groups, forums, mailing lists,

Irregularly shaped hotspots on image

2007-04-22 Thread Viktoras Didziulis
Is there a standard method of setting irregularly shaped invisible hotspots on images displayed on a stack ? I have a few images with lots of fish on them. Need to highlight each fish and display its name on mouseEnter. Now I am drawing a polygon around each fish, setting its tool tip to fish

Re: Obtaining the size of a file

2007-04-21 Thread Viktoras Didziulis
This is an example from documentation, assuming your file is MyFile.txt: get the detailed files filter it with MyFile.txt,* put item 2 of it + item 3 of it into myFileSize There is also size property which reports the amount of disk space taken by an object to judge how much memory an

Revolution license

2007-04-20 Thread Viktoras Didziulis
I have just red Using Revolution with Filemaker Pro and Bill mentions that the Revolution license simply asks you to put one line, Portions (c)2000-2008 Runtime Revolution Limited, All Rights Reserved Worldwide below your own copyright notice... Does this mean any program that I distribute should

Re: Bootcamp and Parallels

2007-04-15 Thread Viktoras Didziulis
You may try an alternative - VMware player (www.vmware.com). It is free of charge even for commercial use. I use it on my Windows machine and it can virtualize all flavours of Linux, BeOS, Solaris and NetWare. I tried it with Puppy, PCLinux, Slackware Vector Linux, DSLinux, Open Solaris (Belenix),

<    1   2   3   4   >