Witango-Talk: Using a com object within Tango

2002-06-05 Thread Lee Sobo
We are using a com object within Tango successfully. One of the method calls returns an ado recordset object with methods of its own. Suupose the ado recordset was called ors. The developer's want us to use this code once we call the method: Note how they require additional methods of the

RE: Witango-Talk: Using a com object within Tango

2002-06-05 Thread Jon Grieve
Lee, Witango doesn't like certain types of COM objects -- I can't remember off the top of my head what the different types are and which it does/doesn't like. For example, while the Editor will allow you to add the Office (i.e. Word, Excel, etc.) objects, the Server doesn't like calling them.

Re: Witango-Talk: Jump back two pages?

2002-06-05 Thread Lee Sobo
also A HREF=# onclick=window.history.go(-2);/A [EMAIL PROTECTED] 06/03/02 09:22PM Not a javascript buff, but don't you use: @HREF=Javascript:history.back(2) ? Garth At 11:59 3/06/02 -0400, you wrote: Is there a way with JavaScript to get them back 2 pages instead of just one.

Witango-Talk: return protected file

2002-06-05 Thread Trevor Green
Is there a way for Tango to return a file (contents unknown may be a word doc or an excel file, etc.) from a protected location to a user? The application is such that there would be a directory on the webserver containing files that must not be accessed through a URL but may need to be

RE: Re: Witango-Talk: Error In Syntax

2002-06-05 Thread Campbell, Steve V.
I am doing a simple insert into a database and I keep getting a syntax error on the insertion point. The error I get is : Syntax error in query expression '$ 25.00'. If you notice, there is a space before the 2 and after the $. I have no idea how to get that space out of there, but, I think

Re: Snippets: was: Witango-Talk: Jump back two pages?

2002-06-05 Thread [Gauthier]
Hi, sorry for the delay, just have reinstalled my computer, welcome on the list For the resize/crop process I use ImageMacick wich is absolutely free, I use it within external calls, and that work great for me (I've attached the original Jess Parker post) see http://www.imagemagick.org/ for

RE: Witango-Talk: return protected file

2002-06-05 Thread Henning Sittler
Title: RE: Witango-Talk: return protected file This would work, except it's not secure. Henning Sittler www.inscriber.com -Original Message- From: Lee Sobo [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 05, 2002 8:14 AM To: Multiple recipients of list witango-talk Subject:

RE: RE: Witango-Talk: return protected file

2002-06-05 Thread Henning Sittler
Read the file in with a file action, and define a local var to stor ethe contents of the file (this is done in the file action too). Now you have the file name, type and length (assuming you've stored the full filename in a variable too) @COMMENT ## NOT REAL CODE Content-Type =

RE: RE: Witango-Talk: return protected file

2002-06-05 Thread Simon Boddy
Title: RE: Witango-Talk: return protected file Hi Trevor, There is another approach to this which I prefer. When your app has validated the user's right to see the file, create a directory with a long name, ie the user reference, in a temporary area. Write the file to the new directory,

RE: Snippets: was: Witango-Talk: Jump back two pages?

2002-06-05 Thread Fogelson, Steve
Gauthier, Thanks for the response. I am new to using Tango, so please bear with me. I downloaded Version 5.4.6 of ImageMagick for Win2k. I unzipped it, but confused about the install. Do I just need to copy the entire directory ImageMagick-5.4.6 to my web server and that is it? Also, I haven't

Re: Re: Witango-Talk: Error In Syntax

2002-06-05 Thread Scott Cadillac
Hi Steve, Your error may have more to do with the database you're inserting too. What datatype is the field? To remove a space (or any character) from a string, you can do this: @OMIT STR=$ 25.00 CHARS= Let us know if that solves the problem. Cheers... Scott Cadillac http://xml-extra.net

RE: Re: Re: Witango-Talk: Error In Syntax

2002-06-05 Thread Campbell, Steve V.
Hi Scott It was what Lee suggested. My database was expecting an integer and I was giving it text. I have figured it out and your code to omit the space I used and that took care of that problem. Thanks Steve -Original Message- From: Scott Cadillac [mailto:[EMAIL PROTECTED]] Sent:

Re: Witango-Talk: Jump back two pages?

2002-06-05 Thread Garth Penglase
I have a range of different methods and code that I use for different situations with live examples which I'll post as soon as I have time. They include different types of form validation as well as methods to inhibit double-submissions, credit card validation etc. - some use images to

RE: Snippets: was: Witango-Talk: Jump back two pages?

2002-06-05 Thread Garth Penglase
Isn't Robert doing something along these lines in tango? How's it coming along Robert? (thought I'd put a plug in for you...) Garth At 09:40 5/06/02 -0500, you wrote: Gauthier, Thanks for the response. I am new to using Tango, so please bear with me. I downloaded Version 5.4.6 of ImageMagick

Re: ImageMagick was:Re: Snippets: was: Witango-Talk: Jump backtwo pages?

2002-06-05 Thread Nicholas Froome
jason wrote I'll put up a zip file of the tcf and batch file i've been using and post that so you can play with it. It's not too comprehensive, but covers identifying the size, height and width, resizing and sharpening (if desired) of any image. Is any of this relevant to / reusable on a Mac

RE: Witango-Talk: Email validation

2002-06-05 Thread Jon Grieve
Garth, NSLOOKUP is available on most platforms - Windows (possibly only 2000?), OSX and *nix. My External Action looks something like this: Command: nslookup.exe Parameters: -querytype=mx -timeout=5 @VAR local$Address | find MX preference In the Results HTML, I simply display 1. In

Snippets: was: Witango-Talk: Jump back two pages?

2002-06-05 Thread [Gauthier]
Hi, here is the tcf that I've quicly made for managing these processes with imagemagick (sorry for the french parameters names...) You only need to have the .bat in your webserver dir, the imagemagick executables should be at any place where the Witango service have execution rights. basically

Re: Witango-Talk: HTTP Header Content-Disposition: Problem[must read]

2002-06-05 Thread Robert Garcia
Title: Re: Witango-Talk: HTTP Header Content-Disposition: Problem [must read] I had major problems using content disposition with Apache, although I have not used SuiteSpot. I have found that serving binary information from Tango, and messing with HTTP headers works well with Tango/WebStar, and

RE: Snippets: was: Witango-Talk: Jump back two pages?

2002-06-05 Thread Jacob Stevens
Steve, I'm sending this to you off the list just as a pointer. You don't ever want to leave an executable in your web root as you hinted towards here: @WEBROOT@APPFILEPATHmyfile.bat Some hacker types may be able to mess with it. Also if your web server allows execution of files you could

RE: ImageMagick was:Re: Snippets: was: Witango-Talk: Jump back two pages?

2002-06-05 Thread Fogelson, Steve
Jason, Where will you post the tcf and batch file? If you email back to me, could you email to [EMAIL PROTECTED] as my other email account comes from a server that likes to delete attachments if it thinks it is a virus. Thanks Steve -Original Message- From: Jason Pamental

Re: Witango-Talk: HTTP Header Content-Disposition: Problem[must read]

2002-06-05 Thread Scott Cadillac
Thank you Robert, This is a very useful piece of information. I often have my own debates as to whether to switch back to Apache on Windows - but you've answered this for me. Secure document management is an important piece of my application - thank you. Does anyone have some feedback about

Re: ImageMagick was:Re: Snippets: was: Witango-Talk: Jump backtwo pages?

2002-06-05 Thread Jason Pamental
Absolutely! you can use applescript instead of a batch file... It works pretty much the same way. (but I haven't dealt with the applescript writing part...) Jason On 6/5/02 11:08 AM, Nicholas Froome [EMAIL PROTECTED] wrote: jason wrote I'll put up a zip file of the tcf and batch file

RE: Re: Re: Witango-Talk: Error In Syntax

2002-06-05 Thread Ben Johansen
Hi, I realize you have solved this issue just wanted to mention... if a different format syntax had been used like Format=num:,\,,2,.,,,-, (yields 5.00 out of 5) instead of Format=num:US-accounting (yields $ 5.00 out of 5) Then there wouldn't have to deal with stripping any

Witango-Talk: What's wrong with the list server?

2002-06-05 Thread Bill Conlon
I stopped receiving messages from witango-talk at 21:27 PDT on June 2. This is the third time in the last few weeks that the list has stopped mailing to me, each time I've had to re-subscribe to reactivate it. Obviously, it's difficult to follow threads that are incomplete, so it's kind of

Re: Witango-Talk: HTTP Header Content-Disposition: Problem[mustread]

2002-06-05 Thread Robert Garcia
The same bugs I found on Windows/Apache, also occurred on Linux/Apache. Until v5, I would stick with IIS 5. Also, as far as performance goes, I did bench testing on all of these platforms. I found that on the same hardware, there is no significant difference between Linux/apache, and

Witango-Talk: Is this valid?

2002-06-05 Thread Peter Fogg
I am wondering if this is a valid way to point to a specific cell within an array. I am very surprised I have not had to do something like this before. I guess I just rebuilt the arrays before, but this would cut down on my processing time a lot if I could just assign directly. @ASSIGN

RE: Witango-Talk: What's wrong with the list server?

2002-06-05 Thread Steve Smith
I've believe that I've been receiving messages all along, including the period since June 2nd. I'm running on a Windows machine using Outlook 2000. Hope this helps, Steve Smith Skadt Information Solutions Office: (519) 624-4388 GTA:(416) 606-3885 Fax:(519) 624-3353 Cell: (416)

RE: Witango-Talk: Is this valid?

2002-06-05 Thread Thomas Ferguson
I have an IRC server that I could make available to the list. Access via a Web page or and IRC client such as mIRC. I'd be happy to do so. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Peter Fogg Sent: Wednesday, June 05, 2002 3:25 PM To: Multiple

Re: Witango-Talk: Is this valid?

2002-06-05 Thread Scott Cadillac
Hi Alex, and everyone else. In my spare time, I am building http://witango.org as an aid to the Witango developer community. Providing a profile section for developers is a good idea, with options for displaying personal information. It is still under construction of course and suggestions are

Re: Witango-Talk: Insert error

2002-06-05 Thread Scott Cadillac
Hi Tom, Try putting @SQL in your Error Results window to see what your SQL Statement looks like exactly. This may help you (or us) figure out what is wrong. Hope this helps. Cheers... Scott Cadillac http://xml-extra.net [EMAIL PROTECTED] VP, Research and Development Plus International Corp.

Re: Witango-Talk: Insert error

2002-06-05 Thread [EMAIL PROTECTED]
Can it be, that you try to insert a record in a table where one field must have a entry - and you don't have post a value for this field ??? regards Daniel Richardy - Original Message - From: Tom Carr To: Multiple recipients of list witango-talk Sent: Wednesday,

RE: Witango-Talk: Insert error

2002-06-05 Thread Steve Smith
I saw that you were able to fix your immediate problem by doing a 'Save As' however that is not really practical for long-term purposes. I can't remember if the 101 error was just a catch-all for all things gone bad with a FM datasource but it might have been. I thought of some things to check so

RE: Witango-Talk: Is this valid?

2002-06-05 Thread Len Wright
We have developed a public and private discussion forum using Witango that does everything you would expect a discussion forum to do, and it will email you automatically when someone replies to your thread. The benefit of a forum over an email list is that you can read the threads that

Re: Witango-Talk: New version of Scheduling Software

2002-06-05 Thread ServerSmiths Tango Development
on 6/5/02 2:06 PM, Todd Trann at [EMAIL PROTECTED] wrote: Hello If you're looking for a WiTango-based group scheduling application, I have placed a new version of SACS on this web site: http://www.prairiewest.net/download/ The demo version is free for personal and non-commercial use and

Re: Witango-Talk: New version of Scheduling Software

2002-06-05 Thread Len Wright
Our scheduling app does what you are looking for, I think. Key features: User, or group scheduling resource scheduling (rooms, cars, equipment, etc) Integrates with our billing system (for billable appointments) User definable appointment time blocks Nice visual view of daily, monthly, grid or