RE: Generating unique values

2001-01-02 Thread JustinMacCarthy
While this is true in your case , it depends on the machine being used etc. GUIDs are created using a complicated algorithm which take several factors into consideration. Sometimes this results in consecutive UUID (Guids) being 1 apart, other times it doesn't. It depends on the resource etc.

RE: setting structures into arrays

2001-01-02 Thread JustinMacCarthy
Here is some code I use loop over a recordset (rs) and creates an array of structure with is stored as WDDX cfset MyArray = ArrayNew(1) cfloop query=rs cfscript tmp = StructNew(); tmp.ID = #id#; tmp.StatusCode = #statusid#; // add current thing to

RE: Who wants a CF-SQL Mailing List? - existing list

2000-12-21 Thread JustinMacCarthy
There is an existing SQL (mssql7) list below High Volume 100 mails a day? but some excellent minds subscribed including Sharon Dooley, Author of SQL Server 7.X Essential Reference and others FAQ: http://www.swynk.com/faq/sql/sqlserverfaq.asp Archives: http://www.swynk.com/sitesearch/search.asp

RE: WAY OT: C++

2000-12-20 Thread JustinMacCarthy
The best place to start is a simple console Hello World example!! The complicating factor in C/C++ is that there are a lot of different "Toolkits" to learn for different Platforms (MFC-Windows,Gtk-Gnome,ncurses;ptreads-Unix,QT-Kde etc...) mostly for GUI development, so it depends on what you

RE: WAY OT: C++ now Java

2000-12-20 Thread JustinMacCarthy
ject: Re: [RE: WAY OT: C++] learn java instead. its easier and "hotter". also if you already know how to program then learning a new language isn't that hard. also there is a huge difference between C and C++ (most unix apps are written in C). "JustinMacCarthy" [EMAIL PROTECTED] wr

RE: Internet Usage per country

2000-12-19 Thread JustinMacCarthy
www.nua.com Justin -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 19, 2000 3:12 PM To: CF-Talk Subject: OT: Internet Usage per country Hi, I need to find out some statistics of various countries' Internet Usage per county/state/population density

RE: Multiple CF Studios and Login _only_ from a certain machine.

2000-12-19 Thread JustinMacCarthy
-Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 19, 2000 3:19 PM 1. I did the little registry trick to enable 2 copies of CF Studio to run at the same time, so I could run CF Studio and JRun Studio at the same time. Did that work ??? Now,

RE: Securing Word Documents etc

2000-12-19 Thread JustinMacCarthy
Use cfcontent and store your doc outs of the web root. eg cfcontent file="c:\mysecuredir\myworddoc.doc" enctype="application/msword" Justin -Original Message- From: Nick Betts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 19, 2000 5:27 PM To: CF-Talk Subject: Securing Word

RE: CFFTP -- INVALID PORT COMMAND

2000-12-18 Thread JustinMacCarthy
Firewall issue ?? ~Justin -Original Message- From: Sean Renet [mailto:[EMAIL PROTECTED]] Sent: Monday, December 18, 2000 12:17 PM To: CF-Talk Subject: CFFTP -- INVALID PORT COMMAND Anyone ever see this error in your CFCATCH stuff using CFFTP? UNKNOWN 500 Invalid PORT Command.

RE: creating an url return string

2000-12-18 Thread JustinMacCarthy
Use the UrlEncodedFormat function Justin -Original Message- From: Greg Wolfinger [mailto:[EMAIL PROTECTED]] Sent: Monday, December 18, 2000 4:21 PM To: CF-Talk Subject: creating an url return string Hey Guys: I have an application that lets you browse a message board, however if

RE: Setting NumberFormat in CFGRIDCOLUMN

2000-12-18 Thread JustinMacCarthy
Apparently you can't do this, so the best way to get around it is to format your number in the SQL first. I never use this Applet though Justin -Original Message- From: Rosa, Issac [mailto:[EMAIL PROTECTED]] Sent: Monday, December 18, 2000 4:19 PM To: CF-Talk Subject: Setting

RE:

2000-12-18 Thread JustinMacCarthy
oh god don't do that !!! Use the SQL date functions to do the comparison, you could do all that stuff in one query UPDATE Ads SET online_approval = '2' WHERE ad_id in ( SELECT ad_id FROM Ads WHERE DATEADD(day, 30, posted_on) GetDate() ) 1 query V's 1 x Rows Justin -Original

RE: SQL Server 2000

2000-12-18 Thread JustinMacCarthy
port : 1433 is the registered port of mssql Justin -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Monday, December 18, 2000 5:30 PM To: CF-Talk Subject: SQL Server 2000 What is the default/common port used for sql server? Thanks. Dave

RE: Is this even possible? - creating thumbnails

2000-12-15 Thread JustinMacCarthy
In addition you can automatically create thumbnails, look in the tag gallery for the tag to do this. Justin -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Friday, December 15, 2000 6:17 AM To: CF-Talk Subject: RE: Is this even possible? At 12:25 AM -0500

RE: URGENT: Not OT: SQL Server Problems...

2000-12-15 Thread JustinMacCarthy
Yes this is possible , the swap over can happen at odbc level so it's transparent to your apps / code. However this does require SQL server Enterprise Edition running on NT enterprise Edition or the win2000 equiv. Check out the lists @ http://www.swynk.com/ or look for a white paper on SQL

RE: CF 4.5 Studio Install Order

2000-12-15 Thread JustinMacCarthy
The FTP service in the latest build of CF studio uses the wsFtp code, one of the best Ftp Programs around. Justin MacCarthy -Original Message- From: Shane Witbeck [mailto:[EMAIL PROTECTED]] Sent: Friday, December 15, 2000 2:13 PM To: CF-Talk Subject: Re: CF 4.5 Studio Install Order I

RE: uuid

2000-12-15 Thread JustinMacCarthy
There is a COM to do this. But a cheat is to use a stored prod to return a uuid , use the Getid() function in SQL7 Justin MacCarthy -Original Message- From: Michel Vuijlsteke [mailto:[EMAIL PROTECTED]] Sent: Friday, December 15, 2000 2:06 PM To: CF-Talk Subject: OT: uuid (sorry for

RE: how many milliseconds is too many?

2000-12-15 Thread JustinMacCarthy
Want to post your code for some Friday Afternoon fun Justin MacCarthy The page pulls data from 6 different tables and performs several loops in the process. Unfortunately, I can't figure out how to make it go any faster. I'm sure a stored procedure would help, but it was all I could do

RE: CFFILE help

2000-12-15 Thread JustinMacCarthy
Don't use cffile , use cfhttp instead. Something like cfhttp url="http://yourserver.com/yourpage.cfm" method="get" resolveurl=yes cffile action=write output=cfhttp.content etc Justin MacCarthy -Original Message- From: John Allred [mailto:[EMAIL PROTECTED]] Sent: Friday, December 15,

RE: cfx tags

2000-12-15 Thread JustinMacCarthy
once you have the dll , you just need to register it in the ColdFusion admin section. Choose the path etc ... Justin -Original Message- From: Jay Brushett [mailto:[EMAIL PROTECTED]] Sent: Friday, December 15, 2000 1:08 PM To: CF-Talk Subject: cfx tags Hi all, I'm in the midst of

RE: uuid

2000-12-15 Thread JustinMacCarthy
I can't remember !! But there is a GUIDGEN exe to create them .. Otherwise you chould write you own COM, I'll give you the VB or C code to do that if you want... Justin -Original Message- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] Sent: Friday, December 15, 2000 2:27 PM To: CF

RE: Another debate

2000-12-14 Thread JustinMacCarthy
This is actually accurate. There is a module for PHP , which give a common interface to several DBs. Justin One big difference: in PHP you will have to write database-vendor specific code. The code to use Sybase is different than SQLServer is different than Oracle, etc. If portability is

RE: Unlimited Line Item Subform functionality in a FORM

2000-12-13 Thread JustinMacCarthy
Here is a very quick DHTML example I just knocked up for u. (ie4 + ) Needs to be changed slightly to be DOM compliant You need to loop over the 'Form' collection on the "action" page to add each field (lineitem1,lineitem2 lineitem3 etc) Justin MacCarthy html head script !--// currentItem

RE: Another debate - absolute rubbish.

2000-12-13 Thread JustinMacCarthy
Most "security issue" in ColdFusion are problems with IIS not ColdFusion or problems in standard security. There have been a couple of exceptions (the Expression Evaluator and samples mostly), but most are not the fault of CF. If he is comparing PHP on Unix to CF on NT, it's not really a fair

RE: CF_ThreeSelectsRelated nate Weiss

2000-12-12 Thread JustinMacCarthy
Hi Fng, Nate is a busy guy and his tag is open source, so you can s=do the mod yourself. The issue is (') in JavaScript, you need to escape it like this:- \' Luckily CF has a built in function to do this called JSStringFormat() Use this and your problems should be solved. It's good to know

RE: LDAP using CF? OT

2000-12-12 Thread JustinMacCarthy
There is a LDAP tag in ColdFusion, is this what you want? Justin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 12, 2000 1:12 AM To: CF-Talk Subject: LDAP using CF? OT Hi guys, Anyone know of a way to connect LDAP to a odbc datasource?

RE: Webserver and win 2000 Help

2000-12-12 Thread JustinMacCarthy
I'd add the MS loopback adapter to you network settings... Justin -Original Message- From: Shane Witbeck [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 12, 2000 1:49 PM To: CF-Talk Subject: Re: Webserver and win 2000 Help Edit your "hosts" file in your

RE: CF/JRun Studio

2000-12-12 Thread JustinMacCarthy
I remember someone talking about a RunMultiple copy (something like that ) setting in the REG , but I have no idea what it does J -Original Message- From: Clint Tredway [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 12, 2000 1:58 PM To: CF-Talk Subject: RE: CF/JRun Studio I have

RE: CF java object

2000-12-11 Thread JustinMacCarthy
I think you may be mixing up Java Applets with Java objects(Servelets , Beans etc...) Justin -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Friday, December 08, 2000 6:31 PM To: CF-Talk Subject: RE: CF java object Calling a Java class is done using HTML and thus

RE: [RE: CF java object]

2000-12-11 Thread JustinMacCarthy
)Servelets or JavaBeans using CFObject Justin -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Monday, December 11, 2000 1:17 PM To: CF-Talk Subject: Re: [RE: CF java object] OK. if I use cfobject. does the java class have to be on the CF server? "JustinMacCarthy&qu

RE: Retrieving database properties

2000-12-11 Thread JustinMacCarthy
Hi Howie, how are things? Check out http://www.swynk.com/sqlhome/scriptlibrary.asp , they'll have most of the scripts you are looking for (version 6.5 7 ). You 'll need to be DBowner or SA for most of them though. Otherwise connect though OleDB would work .. Justin MacCarthy I'm trying to

RE: Any good ideas?

2000-12-11 Thread JustinMacCarthy
This is not a task for a web request, you should really fire an another process to do reporting. Use cfexecute and what ever they are currently using, if it ain't broke... Justin Nope not these queries. This database is huge, I am talking hundreds of GIGs to terabytes. Average queries on this

RE: CFX_NNTP and WDDX

2000-12-07 Thread JustinMacCarthy
-Original Message- From: Owens, Howard [mailto:[EMAIL PROTECTED]] I've never worked with either CFX_NNTP or WDDX so I'm excited at getting an opportunity to do both. But before I over commit myself, I I need to use CFX_NNTP to access a private newsgroup and download articles No

RE: Regular Expressions - Programming Interface?

2000-12-07 Thread JustinMacCarthy
One thing I saw which was pretty cool was a web page with a form with the fields value to test: regex : It used the RE's in javascipt to do the tests, client side , no source editing etcjust an alert box... I can't remember where it is but it chould be replicated easy enough. Of course I

RE: Summary: A CF limitation in building a spider?

2000-12-06 Thread JustinMacCarthy
Look at the CoolFusion.com cfx tag, which calls the CFserver directly without going thru' the webserver.. it basically works the same way that a webserver does when passing a request on to a application server. (I persume!). Justin -Original Message- From: Bruce Heerssen [mailto:[EMAIL

RE: advanced coldfusion tutorials

2000-11-28 Thread JustinMacCarthy
And here are some good XML examples http://www.siteobjects.com/index.cfm?fuseaction=showproducts Justin -Original Message- From: Simon Horwith [mailto:[EMAIL PROTECTED]] Sent: Monday, November 27, 2000 8:47 PM To: CF-Talk Subject: RE: advanced coldfusion tutorials

RE: time in CF

2000-11-28 Thread JustinMacCarthy
Or as they say in perl RTFM :-) Even as an expert in CF you can still gain new information by reading the docs every so often. For example I recently "found out" that variables static in a Java cfx persist in memory, if I'd bothered to read the docs properly I would known ... ~Justin Mac Carthy

RE: CFHTTP still broken in SP2

2000-11-28 Thread JustinMacCarthy
Or use cfx_http or a java cfx Justin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 28, 2000 1:10 PM To: CF-Talk Subject: CFHTTP still broken in SP2 Substitute the IP address instead of the server name and watch it work!! From:

RE: CFMail, iMS advice needed

2000-11-28 Thread JustinMacCarthy
It's pretty great , but don't just take my opinion, join the mail list and Ask the users. Signup at [EMAIL PROTECTED] or http://www.coolfusion.com/index.htm and the mail archive http://www.mail-archive.com/infusion-email%40eoscape.com/ Also Howie (who is on this list) is very helpfull, quick

RE: Use End of Line Char as Delimiter?

2000-11-23 Thread JustinMacCarthy
BTW this depends on platform Linux /Windows use different "End OF line" combinations Justin --_=_NextPart_001_01C054C9.763C0AE0 Content-Type: text/plain; charset="iso-8859-1" CHR(13) and CHR(10) I can't remember which is which, but I believe one is line feed, and one is break. E

RE: cf-studio mailing list?

2000-11-23 Thread JustinMacCarthy
M.D. You should talk to Jeff Wilkinson http://www.wilk4.com/asp4hs/ if you are going to create one. He has a list http://www.wilk4.com/asp4hs/maillist.htm ~Justin MacCarthy -Original Message- M. Dinowitz: On that note, is there any demand for a ColdFusion Studio mailing list?

RE: Java to cf

2000-11-22 Thread JustinMacCarthy
How much of the app are you converting ,can you use some of the Java from ColdFusion??? Using the cfServlet and cfobject tags?? Or chould you wrap some of the Java in cfx_ 's ?? Java is quite easy, don't be afraid (Although it depends on the size of the site) Justin MacCarthy

RE: CF for UNIX

2000-11-21 Thread JustinMacCarthy
There is a cf-linux list @houseoffusion.com, good noise/signal ratio, Loads of smart *nix \ cf folks on it. and me ... Justin MacCarthy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 21, 2000 4:22 PM To: CF-Talk Subject: CF for UNIX

RE: Is this possible w/CF???

2000-11-20 Thread JustinMacCarthy
Assuming this is not an Access database, one way to make things a bit more effecient is to use Stored Procedures to perform all of the actual logging. :-) (Triggers:) Only problem with that idea is, it's probably the same user modifying the data each time (CF odbc source).. J

RE: Bizarre CFMAIL problem

2000-11-20 Thread JustinMacCarthy
It sounds like either a full disk drive or a permissions problem. Justin 'Unable to write mail message to disk.' ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Kooky Form Field/List question.

2000-11-20 Thread JustinMacCarthy
You need to use Evaluate() Check out Ben Forta's FormMail tag at the tag gallery http://devex.allaire.com/developer/gallery/info.cfm?ID=CA3470A1-2830-11D4-AA 9700508B94F380method=Full Justin -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: Monday, November 20, 2000

RE: Finding an Odd Number

2000-11-20 Thread JustinMacCarthy
Use the following code as an example, the function you should look at is MOD cfloop from="1" to="6" index="currentnumber" cfoutput The number : #currentnumber# is cfif (currentnumber MOD 2)oddcfelseeven/cfifbr /cfoutput /cfloop Justin -Original Message- From:

RE: How to tell between MS 2000, 97, 95, etc. with Cold Fusion

2000-11-17 Thread JustinMacCarthy
There is a "MagicNumber" in the FileFormat.Search for vmware, a C LIB for parsing word docs... Justin -Original Message- From: Jerry Tolentino [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 16, 2000 7:54 PM To: CF-Talk Subject: How to tell between MS 2000, 97, 95, etc. with Cold

RE: MAIL, HELP ME FOR THE LOVE OF GOD

2000-11-16 Thread JustinMacCarthy
Sorry for the delay in responding: Anyway look for cfx_mail at allaires site, you can add any headers you want Another option is iMS from www.coolfusion.com. It's a great product. If you just want to send mail it's only $70... Justin -Original Message- From: Robert Everland

RE: cd-rom based applications

2000-11-16 Thread JustinMacCarthy
Eh, care to share how ? :-) ~J -Original Message- From: Neil Clark [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 16, 2000 5:29 PM To: CF-Talk Subject: RE: cd-rom based applications yes, I have done a fully searchable (RAM-updateable) database on a CD-ROM good experience and

RE: append variable to a variable??

2000-11-16 Thread JustinMacCarthy
Using SetVariable is better cfset setvariable("Edname" numvar, "test") Justin -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 16, 2000 5:29 PM To: CF-Talk Subject: RE: append variable to a variable?? Thanks Everyone!! Sal From: "Andrew" [EMAIL

Automatic documentation

2000-11-14 Thread JustinMacCarthy
Anyone got a script that looks through CF code and adds Comments to the top of the code , listing which custom tags variables etc are used? Thanks Justin MacCarthy Archives:

RE: Report: Allaire Worldwide Developer Conference 2000

2000-11-13 Thread JustinMacCarthy
Hi Stephan , Excellent report, I missed the conf. because I was sick, thanks for getting me up to speed, Cheered me up no end :-) I'm off to buy some Allaire Stock JustinMacCarthy www.cfug.ie -Original Message- From: Stephan Tual (CFTutorials.com) [mailto:[EMAIL

RE: cfhttp - java code to get status only

2000-11-13 Thread JustinMacCarthy
Just for fun... Here is some java to just request the Http Status code (200 ok , 404 etc.)from a URL , it *should* be much faster than using cfhttp ... wrap it up in a java cfx , and there you go. Good exercise for you :-) If you need help give me a shout and I'll get to it a some stage :-)

RE: Date Manipulation?

2000-11-13 Thread JustinMacCarthy
DateAdd('d',number,date) Justin MacCarthy -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: Monday, November 13, 2000 4:34 PM To: CF-Talk Subject: Date Manipulation? Ok, I have a date. I need to add a day, or a number of days. How the devil does one do

RE: launching executables on client machines

2000-11-09 Thread JustinMacCarthy
It's is possible to do this using Java or a ActiveX, but there are many security concerns. Justin MacCarthy Irish CF Head Is there an easy way to launch an executable on the client's computer? What I want to do is have the user click on a link in their browser which will launch

RE: I need Help - Using an Java Application from CF page

2000-11-09 Thread JustinMacCarthy
Cfv4 + Has the CFExecute tag to run programs server side; v3.0 doesn't have ability natively, but you can use one of Min 's CFX tags to do the same thing. Check out www.intrafoundation.com/freeware.html Justin MacCarthy By the way Min http://www.public.usit.net/lsellers/ is 404ing ...

RE: Null Values

2000-11-08 Thread JustinMacCarthy
Much Better to do cfif Not Len(Trim(Whatever)) /cfif Justin MacCarthy IsNull() does not exist in Cold Fusion. It is a vbscript function. What I always do is: CFIF Whatever IS "" here is some stuff if whatever is null /CFIF

Re: top 10 is not a field

2000-10-20 Thread JustinMacCarthy
= B.Salary) GROUP BY A.salary HAVING COUNT(*) = 3 // change this for top n JustinMacCarthy - Original Message - From: "Patricia Lee" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 20, 2000 1:18 PM Subject: RE: top 10 is not a field Top 10

Re: Need help for execute a print command thru ColdFusion

2000-10-19 Thread JustinMacCarthy
with CFEXECUTE instead of calling the program directly. I've run into odd syntax problems using CFEXECUTE in the past. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 Me too, you chould also try one of min's execute cfx's @ www.intrafoundation.com I've

Re: Beep, Beep?

2000-10-17 Thread JustinMacCarthy
Not unless you want to use a ActiveX com or Java Applet Justin MacCarthy - Original Message - From: "Michael Rosario" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 17, 2000 4:00 PM Subject: Beep, Beep? This message is in MIME format. Since your mail reader

Re: CF Resources

2000-10-16 Thread JustinMacCarthy
You will find a load of stuff like this at http://devex.allaire.com/developer/gallery/ Also there are lots of CF resources out there www.cfadvisor.com www.houseoffusion.com www.defusion.com Also check out your local CFUG http://devex.allaire.com/developer/usergroups/ JustinMacCarthy

Re: cfm-resources??

2000-10-13 Thread JustinMacCarthy
yes cfm-resources.com/fisrtletterofuername/username Justin - Original Message - From: "HappyToad.com" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 12, 2000 9:12 PM Subject: cfm-resources?? Does anyone know the new path for users of cfm-resources.com??

Re: Multiple file filters for CFDIRECTORY

2000-10-13 Thread JustinMacCarthy
No but I'm in the middle of writting a Java CFX to do this.. send me a mail if you want to test it... Justin MacCarthy - Original Message - From: "Aidan Whitehall" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 13, 2000 10:59 AM Subject: Multiple file filters

Re: So, the Client isn't an issue to the CF Server?

2000-10-13 Thread JustinMacCarthy
Yeah I just figured this out too. It's weird. As for IE4.5 on the Mac... Justin This is your problem. IE5 on a mac has a strange (extremely strange, damn right weird infact) behaviour on ALL form fields. It puts a line termination (either CR/LF or LF or CR, can't remember which) string on

Re: IMG SRC = Some_CFML_file.cfm Banner Exchange

2000-10-13 Thread JustinMacCarthy
Why not just do CFSETTING ENABLECFOUTPUTONLY="Yes" SHOWDEBUGOUTPUT="No" CFHEADER NAME="Content-Disposition" VALUE="inline; Sample.jpg" CFCONTENT RESET="Yes" TYPE="image/jpeg" file="c:\Documentsandettings\jgarza\MyDocuments\My pictures\Sample.jpg" Justin MacCarthy The one where I do what

Re: ColdFusion SP2

2000-10-12 Thread JustinMacCarthy
I should also add DirectoryExists and UNC paths issues . Dosen't seem to work . Is this a confirmed bug also? Where can I get a list of confirm bugs? Justin MacCarthy Issues with cfcontent over UNC paths. Is this a confirmed Allaire Bug ?? Also Using cfwddx : Some sort of error

Re: Source Control for Linux

2000-10-12 Thread JustinMacCarthy
Yes there are many but not CF based CVS is one such system. Justin - Original Message - From: "William J Wheatley" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 12, 2000 12:53 PM Subject: Source Control for Linux Does anyone use a system of source control

Re: source code

2000-10-12 Thread JustinMacCarthy
That will work with Cfm files too. Justin - Original Message - From: "Gavin Myers" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 12, 2000 2:54 PM Subject: source code http://www.mydomain.com/null.htw?CiWebHitsFile=/pagenamehere.asp%20CiRestri

Re: Allaire trips over itself - flame warning

2000-10-12 Thread JustinMacCarthy
I agree. MS's site was bad but now it's pretty good. Allaire site is awful to find anything, even when you know what you are looking for!!! I always end up "listing all" when looking for stuff. Justin I've complained before, to no effect. Does anyone have the *correct* links to the

Re: Passing parameters to a COM object

2000-10-11 Thread JustinMacCarthy
Check out this great site for com CF http://www.cfm-resources.com/c/comet/ Justin - Original Message - From: "Sree@bigbuzz" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, October 11, 2000 5:01 PM Subject: Passing parameters to a COM object How do i pass

Re: Using IIS to append text or HTML to a static page.

2000-10-10 Thread JustinMacCarthy
I think You would need to write an ISAPI filter. http://www.15seconds.com/focus/ISAPI.htm Justin MacCarthy - Original Message - From: "Timothy C. Hill" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 10, 2000 5:26 PM Subject: OT: Using IIS to append text or HTML

Re: CFX-Image

2000-10-10 Thread JustinMacCarthy
Grab the zip from here (mins site) http://www.intrafoundation.com/3rdparty/CFX_Image.zip There is a set of egs + readme with it... Justin - Original Message - From: "Kevin Schmidt" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 10, 2000 7:06 PM Subject:

Re: Sending page break to Excel in a csv

2000-10-09 Thread JustinMacCarthy
Have a look here , you might find something http://www.sector13.org/jason/xls/ Justin - Original Message - From: "Stephen Collins" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Cc: "CF-Aussie (E-mail)" [EMAIL PROTECTED] Sent: Monday, October 09, 2000 11:15 AM Subject: Sending page

Re: Java Books

2000-10-09 Thread JustinMacCarthy
There are 2 Great Java books for beginners by Wrox Beginning Java 2 And Professional Java Server Programming Also check out java.sun.com for lots of code ,example help. Justin MacCarthy - Original Message - From: "Lee Surma" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent:

Re: robots.txt

2000-10-09 Thread JustinMacCarthy
The robot.txt is a file to control how a web spider , goes though your site . Not all spiders respect this file. Try http://info.webcrawler.com/mak/projects/robots/norobots.html Justin - Original Message - From: "Chad Gray" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent:

Re: [padding string with blanks]

2000-10-09 Thread JustinMacCarthy
look at the following functions CJustify, LJustify, ,RJustify and RepeatString Justin string- Original Message - From: [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, October 09, 2000 6:42 PM Subject: Re: [padding string with blanks] here is a perl example you might

Fw: CF Script

2000-10-06 Thread JustinMacCarthy
what is a good referance to learn CF_Script? What URL's do you have? CfScript is a hack of Javascript, There is not much to it. All the CF functions work the same. It's only really the control structures that are different. So if you know JavaScript you will know CFScript (with a few

Re: How to call an .EXE from web page

2000-10-06 Thread JustinMacCarthy
cfexecute in CF4 + otherwise look at www.intrafoundation.com for cfx_consolecommand , cfx_spawn etc... Justin - Original Message - From: "Paul Sizemore" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 06, 2000 3:11 PM Subject: OT: How to call an .EXE from web

Re: How to call an .EXE from web page

2000-10-06 Thread JustinMacCarthy
't CFExecute execute a on the server? And, it looks like the others do as well (but, Intra tools looks to have great products). I need to run a VB app on the end user's machine. (Like CF C:\Windows\ Calc.exe) -Original Message- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] S

Re: Oracle Cold Fusion $1 million dollars

2000-10-06 Thread JustinMacCarthy
Can anybody comment on MySQL speeds compared to SQL Server and Oracle? You can't really compare this products. MySql is very fast but at a cost of functionality and flexiblity. It has not stored Procedure or SubQuery support. Justin

Re: How to call an .EXE from web page

2000-10-06 Thread JustinMacCarthy
CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 06, 2000 5:15 PM Subject: RE: How to call an .EXE from web page Any leads on an Applet or Active X to do this - it is "planned" to be one of the big hits of our implimentation. -Original Message- From: JustinMacCarthy [m

Re: HTML Email Tracking

2000-10-05 Thread JustinMacCarthy
link to it like : img src=getimage.cfm in getimage.cfm - code to update counter cfcontent file="image.gif" cfcontent type="image/gif" Main thing to use is cfcontent HTH Justin - Original Message -

Re: Recommend CF-based threaded discussion sw?

2000-10-05 Thread JustinMacCarthy
Try fusetalk.com Justin - Original Message - From: "Joe Tartaglia" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 05, 2000 5:43 PM Subject: Recommend CF-based threaded discussion sw? Could anyone recommend a CF-based threaded discussion list application

Re: Netscape? Code Included

2000-10-05 Thread JustinMacCarthy
Your are missing some tr 's , around City Try using validate Document in CFStudio (Shift + F6) Justin - Original Message - From: "HappyToad.com" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 05, 2000 5:55 PM Subject: RE: Netscape? Code Included OK This

Re: Statistical Analyses

2000-10-05 Thread JustinMacCarthy
Min's homepage : www.intrafoundation.com but you would be better off using some OLAP , or Data mining tools to do generate reports.. Justin - Original Message - From: "Karl Simanonok" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 05, 2000 5:50 PM

Re: How to view textfiles

2000-10-05 Thread JustinMacCarthy
Look at the cfdirectory and cffile tags Justin - Original Message - From: "monika kon" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 05, 2000 6:04 PM Subject: How to view textfiles Hello everyone, I have text files present in the directory.I have a form

Re: Recommend CF-based threaded discussion sw?

2000-10-05 Thread JustinMacCarthy
Isn't "Allaire Forums" Free now? Shawnea yes (www.forumspot.com ) free and awful.. ~Justin -Original Message- From: Joe Tartaglia [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 05, 2000 12:43 PM To: CF-Talk Subject: Recommend CF-based threaded discussion sw? Could

Re: Report generation in Unix (Solaris)

2000-10-04 Thread JustinMacCarthy
You might try the cf-linux list , it's low noise / high signal Sign up at houseOfFusion.com Justin - Original Message - From: "Larry W. Virden" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 03, 2000 6:22 PM Subject: Report generation in Unix (Solaris) What

Re: CFPOP Experts????

2000-10-04 Thread JustinMacCarthy
What version of CF? ~J - Original Message - From: "Randy Adkins" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, October 04, 2000 1:13 PM Subject: CFPOP Experts I am having problems with CFPOP. I am attempting to POP the server and get a message. (See bottom

Re: Image Processing Tag.

2000-10-04 Thread JustinMacCarthy
Min has the dll on his site , but it's by Jukka Manner. go to http://www.intrafoundation.com/cf.html or directly http://www.intrafoundation.com/3rdparty/CFX_Image.zip it comes with lot of examples for thumbnailing , resizing etc JustinMacCarthy - Original Message - From: "Nadi

Re: Anyone know how to use CFPOP?

2000-10-04 Thread JustinMacCarthy
From the ColdFusion 4.0 Release Notes Updated October 5, 1998 a.. CFPOP throws an error when reading email messages that have a certain date/time convention. This appears to be related to messages from Netscape's InboxDirect or some other email that uses MDT instead of GMT. The error message is

Re: Reliability of CFSCHEDULE in CF 4.5.1

2000-10-04 Thread JustinMacCarthy
Howie and the guys @ www.coolfusion.com have built a program called cftimer , which allow you to run CF templates without using IIS so no timeouts and lots of other cool stuff The times etc are stored in an odbc DB I'm not sure of the cost , but it's not much. Ask Howie about it he is on

Re: autoresize custom tag

2000-10-04 Thread JustinMacCarthy
There is an app called Dependancy Walker (Visual Studio) , which very handy for checking what DLL etc a dll needs Justin MacCarthy forum and found that the error might be that my system needs a necessary .dll file. I tried using the custom tag cfx_gfgd and it worked fine for resizing. In

Re: Encryption in CF

2000-10-04 Thread JustinMacCarthy
How safe is the encryption in CF. What do you mean? Are there ways to unecrypt encrypted = CF files? Known exploits? Yes, it's very easy. There are programs to do this. Justin -- Archives:

Re: Statistical Analyses

2000-10-04 Thread JustinMacCarthy
There is a cfx , which has a lot of extra math functions http://devex.allaire.com/developer/gallery/info.cfm?ID=CA347518-2830-11D4-AA 9700508B94F380method=Full that Tom wrote maybe that would be some help ? Otherwise http://www.netlib.org is a good place to get LIB's or check out

Re: Sharing sessions between CFM ASP

2000-10-03 Thread JustinMacCarthy
Yeah , use client vars stored in a DB . and pass urltoken to each page.. Justin - Original Message - From: "Geoffrey V. Brown" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, October 02, 2000 11:06 PM Subject: RE: Sharing sessions between CFM ASP How about cookies,

Re: UNC Paths...

2000-10-03 Thread JustinMacCarthy
Yes you need to RUN cfserver under a user account and share the path with that user Check out : http://www.cffaq.org/cfserveruseraccount.cfm ~Justin - Original Message - From: "Neil H." [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, October 02, 2000 8:49 PM Subject:

Re: validating an image

2000-10-03 Thread JustinMacCarthy
Use accept on the cffile tag with a value of image/* See the Docs - cffile -upload for example... ~Justin - Original Message - From: "sebastian palmigiani" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 03, 2000 3:16 PM Subject: validating an image I am

Re: Eliminate duplicates??

2000-10-03 Thread JustinMacCarthy
Select Distinct OrderID FROM Table Justin - Original Message - From: "HappyToad.com" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 03, 2000 3:46 PM Subject: Eliminate duplicates?? Question: I have built a store app and orders are stored with each product

<    1   2   3   4   >