-
Tom Arn's version 1.17beta may even be more up to date.
See: http://www.t-arn.com/freeware.htm
Note: Tom Arn is/was a developer of Dalect's Open Source version
Ahab.
2007-09-19 20:35:40 UTC in Dialect
-
htmltag = regex("<[^>]*>")
2007-06-18 17:04:50 UTC in Dialect
-
Please check first if your modem (build-in or external) is capable of what you want to do with it, see: http://www.voicecallcentral.com/acc_faq.htm#2
You also may want to consider testing with a trial version of the software these FAQ's are referenceing...
2007-04-07 19:58:59 UTC in Dialect
-
Just as a quick reminder to others reading this thread, check e.g. :
MySQL Connector/ODBC
http://dev.mysql.com/doc/refman/5.0/en/myodbc-connector.html
MySQL ODBC connection strings
http://www.sqlstrings.com/MySQL-connection-strings.htm
MySQL ODBC connection strings
Open connection to local MySQL database using MySQL ODBC 3.51 Driver
"Provider=MSDASQL; DRIVER={MySQL ODBC...
2007-01-26 19:26:41 UTC in Dialect
-
Victor,
As far as I can tell Dialect always takes ".\" as the current directory for both interpreter and modules. So you will always need to go from that position. You could privately set a directory relative to the interpreter and use this as the relative root directory for modules.
E.g.
when global.__environ__.path = ".\"
you can set e.g. global.__environ__.modulepath...
2006-12-17 21:41:13 UTC in Dialect
-
Victor,
I think I don't get what exactly you see as the problem. Should any module have access to the original - main - global.__environ__.path ? This is possible just make sure you store the main global.__environ__.path like below:
global.__environ__.root = global.__environ__.path
addpath = func( relativedir )
global.__environ__.path = global.__environ__.root[1->-2] ~...
2006-12-05 15:01:04 UTC in Dialect
-
Hi Victor,
What you are looking for is global.__environ__.path (Which is also mentioned in the Dialect editor menu: View -> Script path
I prepared a little program for you that also circumvents some small problems that can arise when loading a module interactively:
import "GUI"
Types = "Dialect Files (*.d)|*.d|Dialect compiled Files (*.dc)|*.dc||"
[dir,filename] =...
2006-12-04 08:57:26 UTC in Dialect
-
Paul, one extra note if you plan using Dialect: downloading Dialect from sourceforge will give you the last release including documentation. The downloads at Tom Arn's site are however to be preferred as these very stable betas contain enhanced functionality.
Also check out the Dialect Wiki http://secure.mtd-inc.com/dialect/doku.php for the latest documentation on the Dialect programming...
2006-09-26 09:26:09 UTC in Dialect
-
Paul,
I would first advise you to put your question on a PocketDOS related forum, e.g. http://forums.pocketpcfaq.com/viewforum.php?f=28
Also check this thread on serial communication using Dialect: http://sourceforge.net/forum/forum.php?thread_id=1494623&forum_id=137830 , i.e. my post at 2006-05-17 15:35 that shows the hard-coded settings.
If you are convinced that knowing the...
2006-09-26 09:20:46 UTC in Dialect
-
use print global to access the global frame.
I.e. use print global.__environ__.path to see the directory Dialect resides in.
See also:
print global , cr, cr
print global.__environ__ , cr, cr
print global.__environ__.version, cr
print global.__environ__.dataDir, cr
print global.__environ__["cmdline$"], cr
print global.__environ__["os$"], cr
print...
2006-07-24 21:54:27 UTC in Dialect