Witango-Talk: Encoding problem sorted ...

2003-04-01 Thread Nicholas Froome
As usual I worked this out as soon as I hit Send.. I should have been looking at the Encoding of the Variable in the HTML page, not when being written in the Variable This works fine: @VAR Name=MARKETPLACEPOPUPMENU Scope=DOMAIN Encoding=METAHTML Whereas this doesn't - but does work with a

Witango-Talk: Finding dates

2003-04-01 Thread Nicholas Froome
One thing I've never had success with is database finds involving dates I'd like to find all records where the renewal date (a field) is less than 60 days ago. AFAIK it's not possible to use operators with dates How do I do this? Tango 3.6, Filemaker 4, WebSTAR 4

Witango-Talk: String to Date conversion

2003-04-01 Thread Tan Lim Soon Fu
Hi there, I have a input text by the user where a text string is passing as a date argument. Before save to database, I need to do a @DAYS function to add number of days from the date entered. However, the @DAYS function only accept standard way of date formating. The problem is, I cannot get to

Re: Witango-Talk: Xserve

2003-04-01 Thread Roland Dumas
On Monday, March 31, 2003, at 08:33 PM, Christian Platt wrote: There seem to be some doubts about using xserve in the list. What i can confirm... Witango Server works on MacOS X Server 10.2.4 /Apache xserve very well and quite stable. What list seems to say: WebStar does not work (i did not

Re: Witango-Talk: Serve

2003-04-01 Thread Chris Millet
I concur. We've been testing W5 on Xserve extensively over the past few months and have seen excellent results. The biggest difference between Xserve and Mac OS X is the server software. This makes it easy to set up and administer Apache, a mail server (although I don't recommend Apple's mail

Re: Witango-Talk: Xserve

2003-04-01 Thread Chris Millet
I concur. We've been testing W5 on Xserve extensively over the past few months and have seen excellent results. The biggest difference between Xserve and Mac OS X is the server software. This makes it easy to set up and administer Apache, a mail server (although I don't recommend Apple's mail

RE: Witango-Talk: String to Date conversion

2003-04-01 Thread Steve Smith
Try this: @DAYS DATE=@ARG test FORMAT='datetime:@@dateformat' DAYS=3 where 'test' is the name of the field from the form. The problem is that the system has no way of knowing what order the user was using to enter the date. So if a user enters 06/01/04 the system could read that as June 1st,

Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Scott Cadillac
Hi Everyone, Just thought you'd like to know that Witango v5 supports Whitespace Programming, which could be an excellent method for protecting any distributed source code - see the following link, which includes tutorials, and source code downloads: http://compsoc.dur.ac.uk/whitespace/ (Runs

Re: Witango-Talk: Adding numbers to list results

2003-04-01 Thread Steve Campbell
Thank you for this..it worked great! How can I get it to list just one. When I hit refresh, of course, it calc's another one and so on. Is there a way to just list the first on it comes up with and then stays there? Thanks again Steve On 3/31/03 4:15 PM, Robert Garcia [EMAIL PROTECTED] wrote:

Re: Witango-Talk: Adding numbers to list results

2003-04-01 Thread Steve Campbell
Sorry I don¹t follow. I don¹t have an @IFEMPTY statement. Steve On 4/1/03 11:01 AM, Steve Smith [EMAIL PROTECTED] wrote: You should be able to put the @ASSIGN inside of an @IFEMPTY that checks for the existance of the variable. If it's not there, do the assign. Hope this helps,

Witango-Talk: @choicelist

2003-04-01 Thread Fogelson, Steve
Is there a way to limit the width of a @choicelist IE: This row is to long. I would like it to be on 2 lines This row is to long. I would like it to b e on 2 lines I tried inserting @crlf, br, or #012; into rows that are longer than desired in the array. Is this even possible? Thanks Steve

RE: Witango-Talk: Adding numbers to list results

2003-04-01 Thread Steve Smith
Put the @ASSIGN tag that you are using inside of an @IFEMPTY.../@IF so that it is only called if the variable is empty. Like this: @IFEMPTY @VAR local$theWinnerIs @assign local$theWinnerIs @var local$wholeList[@@local$winningRow,*] /@IF That way the assignment is only executed when the

RE: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Wolf, Gene
Scott! This is an amazing discovery and I'm glad to see the folks at Witango are on top of the issue and keeping up with it. I would strongly suggest they even go so far as to patenting the Witango version of the Whitespace capability. I mean, this has significant usage potential outside of the

RE: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Tom Ferguson
Good find, Scott... Using Whitespace Programming, my tafs become crystal clear. I'm in the process of setting up a Virtual Whitespace Server. You can access it at: http:// / / / / / / username: password: note: above URL may

Re: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Scott Cadillac
Very clever proposal Gene - I second this! - Original Message - From: Wolf, Gene [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:15 AM Subject: RE: Witango-Talk: Witango supports Whitespace programming... Scott! This is an amazing discovery and I'm glad to

RE: Witango-Talk: @choicelist

2003-04-01 Thread Ben Johansen
The pulldown/select list is controlled by the browser not the @CHOICELIST You could change the font size using CSS SELECTEXTRAS='style=font-size: 6;' Ben Johansen - http://www.pcforge.com Authorized Witango Reseller http://www.pcforge.com/WitangoGoodies.htm Authorized MDaemon Mail Server

Re: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Scott Cadillac
Great idea Tom, why didn't I think of that? Of course, I'm already running into an issue. What do you get Tom or Gene when you try and return today's date, using the following code example: Whitespace code snippet- End code snippet-- I keep getting April 1, 2003 -

Witango-Talk: [OFF] Brain Dead Need help with new Window

2003-04-01 Thread Dan Stein
Too many hours sitting here. Can't see to remember syntax for opening a new Window from a form submit. User picks and semester and year which returns a report I want opened in another window. Dan -- Dan Stein Digital Software Solutions 799 Evergreen Circle Telford PA 18969 Land: 215-799-0192

RE: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Web Dude
Also the download speeds are phenomenal! WOW take a look at this page: (lots of graphics, so download was slow until now) http:// / / / / note: above URL may wrap also... Good find, Scott... Using Whitespace Programming, my tafs

Re: Witango-Talk: [OFF] Brain Dead Need help with new Window

2003-04-01 Thread Scott Cadillac
Hi Dan, The simplest way is to set target=_blank for the HTML form. form target=_blank some HTML here /form Hope this helps. Scott Cadillac, Witango.org - http://witango.org 403-281-6090 - [EMAIL PROTECTED] -- Information for the Witango Developer Community

Re: Witango-Talk: Announcement - Witango new direction

2003-04-01 Thread Atrix Wolfe
With, i do some game development myself, you guys might be interested in SDL, its a cross platform multimedia library. SDL stands for simple direct media layer and supports just about every OS under the sun: Linux, Windows, BeOS, MacOS Classic, MacOS X, FreeBSD, OpenBSD, BSD/OS, Solaris, and

Re: Witango-Talk: Announcement - Witango new direction

2003-04-01 Thread Atrix Wolfe
ROFL, sorry, i didnt read to the bottom cause i got too excited lol :P disregard my last email (: - Original Message - From: Ben Johansen To: 'WiTango List' Sent: Tuesday, April 01, 2003 11:34 AM Subject: Witango-Talk: Announcement - Witango new direction

RE: Witango-Talk: @choicelist

2003-04-01 Thread David Shelley
Steve, You could fix the width of the select tag by adding style=width: 100px; in the choicelist tag. This will truncate the lines though, rather than wrapping them. Dave Shelley -Original Message- From: Fogelson, Steve [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 12:49 PM

RE: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Wilcox, Jamileh
I can't believe none of youse smart guys have realized how simple this is. All you have to do is this: ---Whitespace code snippet- ---End code snippiet--- and it works perfectly every time - gives you back any date you want. Give it a try!

Re: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Scott Cadillac
Thank you Jamileh, Just goes to show you, having an extra pair of eyes on your code can help. This List IS the GREATEST! :-) Cheers. - Original Message - From: Wilcox, Jamileh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 1:24 PM Subject:

RE: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Ben Johansen
Actually you can do it with less code the new WSCSS standard (White Space Cascading Style Sheet) WSCSS code snippet start- WSCSS code snippet end- :-) Ben Johansen - http://www.pcforge.com Authorized Witango Reseller http://www.pcforge.com/WitangoGoodies.htm Authorized

Re: Witango-Talk: [OFF] Brain Dead Need help with new Window

2003-04-01 Thread Dan Stein
Duh, Thanks I knew that just couldn't find the memory path. Dan -- Dan Stein Digital Software Solutions 799 Evergreen Circle Telford PA 18969 Land: 215-799-0192 Mobile: 610-256-2843 Fax 413-410-9682 FMP, WiTango, EDI,SQL 2000 [EMAIL PROTECTED] www.dss-db.com From: Scott Cadillac [EMAIL

RE: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Tom Ferguson
Brilliant Jamileh!!! Now why couldn't I see that? Doh! Works fine now. Thanks! -Original Message- From: Wilcox, Jamileh [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 3:24 PM To: [EMAIL PROTECTED] Subject: RE: Witango-Talk: Witango supports Whitespace programming...

Re: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Steve Campbell
That date wouldn't mean anything would it? April 1st, 2003? Oh my... Steve TO UNSUBSCRIBE: send a plain text/US ASCII email to [EMAIL PROTECTED] with unsubscribe witango-talk in the message body

Re: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Scott Cadillac
Way cool idea Ben! - see what we can do as team? GO LIST GO! - Original Message - From: Ben Johansen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 1:33 PM Subject: RE: Witango-Talk: Witango supports Whitespace programming... Actually you can do it with less

RE: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Wilcox, Jamileh
I bow before the White Space Master. ;^D - Original Message - From: Ben Johansen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 1:33 PM Subject: RE: Witango-Talk: Witango supports Whitespace programming... Actually you can do it with less code

Re: Witango-Talk: Announcement - Witango new direction

2003-04-01 Thread Steve Campbell
Title: Re: Witango-Talk: Announcement - Witango new direction Oh my..this is really getting out of hand! Steve TO UNSUBSCRIBE: send a plain text/US ASCII email to [EMAIL PROTECTED] with unsubscribe

Witango-Talk: Quick tango encoding query!

2003-04-01 Thread Nicholas Froome
Quick tango encoding query! I use Variables to store popup menus that are sitewide and need to be changed regularly Normally they include the ACTION=xxx stated as a fully qualified URL, but now I want a popup to be shared between two TAFs and want to use the format ACTION=@CGI@APPFILE I've

RE: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Ben Johansen
Scott and I are working on the new white space custom tag @ anyone interested Ben Johansen - http://www.pcforge.com Authorized Witango Reseller http://www.pcforge.com/WitangoGoodies.htm Authorized MDaemon Mail Server Reseller http://www.pcforge.com/AltN.htm -Original

RE: Witango-Talk: Witango supports Whitespace programming...

2003-04-01 Thread Chuck Lockwood
I'm confused! Whydoesn't my code work this way? Chuck LockwoodLockData Technologies, Inc.309 Main Avenue, Hawley, Pa 18428570-226-7340 ~ Fax: 570-226-7341[EMAIL PROTECTED] ~ www.lockdata.com-Original