How to get several resultsets from SP

2006-05-05 Thread Michel Deloux
Hi all I need to know dynamically the number(and metadata) of resultsets returned after executing a Stored Procedure. I'm using CF MX 6 and SQL Server. With CF I can do that? Any tips? Factory methods? Cheers MD ~| Message:

Version control - how to?

2006-03-26 Thread Michel Deloux
Does anybody have any suggestions for somebody who's never used any source control? We use DW8 as our primary IDE, CF 6.1 in dev/prod server. Subversion is a good application? Works in WindowsXP and CF/IIS(without Apache) with application server? Any example with this settings? Cheers MD

threerelatedselects - do you can help?

2006-03-17 Thread Michel Deloux
I was wondering if anyone had a fixed version of the custom tag, ThreeSelectsRelated. The copy that I have doesn't work properly with the default values when using with edit mode forms. Only the value of default1 work. I've been banging my head and pulling my hair out trying to get it to work,

Converting application.cfc to application.cfm

2006-03-07 Thread Michel Deloux
Hi all I'm testing stickyCache, a very nice encapsulate model build by Nic Tunney. Your link: http://www.nictunney.com/stickyCache.cfm. stickyCache uses application.cfc to manage your session, init cache.cfc and facade.cfc and so on. Great. Works fine in my dev machine with CF 7. But our prod

OT - RegEx gurus - help

2006-03-06 Thread Michel Deloux
Hi all sorry for OT but I need your help RegEx gurus. In my form users can insert a field with this pattern: A|1-3|-B|C|D In resume can insert ? A or A1B or A2B or A3B or A1C, A2C, A3C, A1D, A2D, A3D, A1E, A2E, A3E, AB, AC, AD, B, C, D Validating only letters work fine but that all combinations

Re: OT - RegEx gurus - help

2006-03-06 Thread Michel Deloux
Thanx Chris. Using your sample fails when user enters A6 or B6. Please look my code used for client JS validation? ^([Aa]{1}[1-3]{0,1}[B-Eb-e]{0,1}|[B-Eb-e]{1}) Using RegEx Coach application works fine allowing only the correct chars. But when inserting in CF template fails. What's wrong?

Re: OT - RegEx gurus - help

2006-03-06 Thread Michel Deloux
Thanx Ben We`re using CF 6.1 too |o-) Using my regex pattern allows this entries- A8 (incorrect) C8 (incorrect) A9B(incorrect) A1-3B-E|B-E are the correct entry. Any suggestion? Cheers MD 2006/3/6, Ben Doom [EMAIL PROTECTED]: Michel Deloux wrote: ^([Aa]{1}[1-3]{0,1}[B-Eb-e]{0,1}|[B-Eb

Re: OT - RegEx gurus - help

2006-03-06 Thread Michel Deloux
Thanx Chris and Ben works fine now. After all your code is great. Simple and clear. Cheers MD 2006/3/6, Michel Deloux [EMAIL PROTECTED]: Thanx Ben We`re using CF 6.1 too |o-) Using my regex pattern allows this entries- A8 (incorrect) C8 (incorrect) A9B(incorrect) A1-3B-E|B-E

[SOT] RegEx question

2006-02-24 Thread Michel Deloux
Hi all. This is for RegEx gurus: look this example: (;*%3242432424;testing%%*%%from%%regex%*;) How to get all words inside the first (; and ;)? For this simple example will return *%3242432424;delete%%*%%from%%maçã%* Cheers MD

Re: [SOT] RegEx question

2006-02-24 Thread Michel Deloux
;-) Thnx Claude. Great marketer! ;-) 2006/2/24, Claude Schneegans [EMAIL PROTECTED]: This is for RegEx gurus: This is for CF_REextract: 1. go to http://www.contentbox.com/claude/customtags/REextract/testingREextract.cfm 2, enter [^a-zA-Zçä]* in RE1 2. enter [^a-zA-Zçã]+|$ in RE2 3.

Re: [SOT] RegEx question

2006-02-24 Thread Michel Deloux
],reMatch.len[3])# /cfoutput -Original Message- From: Michel Deloux [mailto:[EMAIL PROTECTED] Sent: Friday, February 24, 2006 9:26 AM To: CF-Talk Subject: [SOT] RegEx question Hi all. This is for RegEx gurus: look this example: (;*%3242432424;testing%%*%%from

Re: CFMX errs on Java class .isAuthenticated() method

2006-02-03 Thread Michel Deloux
Hi all It's possible to use .class file with CF MX 6.1? How can I do that? Cheers MD 2006/1/19, RADEMAKERS Tanguy [EMAIL PROTECTED]: -Original Message- Folks--- How do I get around this one? In my CFMX6.1 template I instantiate userObj from a Java User class used for

Crimson is faster than Xerces?

2006-01-31 Thread Michel Deloux
What's the fastest and reliable XML Parser for CF? Crimson, Xerces? Using Crimson(default for CF 6.1) my script runs slowly. Using Xerces I'll see any improvement? Cheers MD ~| Message:

Creole/Propel for CF World

2006-01-28 Thread Michel Deloux
Hi all CF haves an alternative ORM framework like Propel(PHP)? Propel looks a very interesting framework. But what's Propel? The propel generator creates a class Book for you that has all getter and setter methods for storing and retrieving the data. If you wanted to insert a new book with a

How to know if a DB is online

2006-01-27 Thread Michel Deloux
Hi all, do you have suggestions about how to know if a external DB is online? I'm using this simple script: cfsetting requesttimeout=500 cftransaction action=begin cftry cfquery name=blabla datasource=#app.DSN# select TOP 1 field from externalDB where 1=1 /cfquery cfcatch type=any Error - DB

Re: How to know if a DB is online

2006-01-27 Thread Michel Deloux
Thanx Pete and John. That script works fine for me. Looking for improvements. Cheers MD 2006/1/27, John Beynon [EMAIL PROTECTED]: and that's not working? the admin API should be able to verify a DSN for you - if not the factory service can, jb. On 27/01/06, Michel Deloux [EMAIL

Re: How to know if a DB is online

2006-01-27 Thread Michel Deloux
Thnx James. Great Ben Forta!! Cheers MD 2006/1/27, James Holmes [EMAIL PROTECTED]: http://www.cflib.org/udf.cfm?ID=685 On 1/27/06, Michel Deloux [EMAIL PROTECTED] wrote: Thanx Pete and John. That script works fine for me. Looking for improvements. Cheers -- CFAJAX docs

When CF restart?

2006-01-24 Thread Michel Deloux
Hi all After restart a server all applications will wake up right? How to know when(MM/DD/ HH:mm:ss) a server restart? Or an application restart? Cheers MD ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230293

Re: When CF restart?

2006-01-24 Thread Michel Deloux
Thanx Adrian and Dave. What I need to know: when an application starts, one event will be run setting a variable. If CF controls(via applicationtimeout) the application time where I'll view this settings? In server scope? Factory? MD 2006/1/24, Dave Watts [EMAIL PROTECTED]: After restart a

Re: When CF restart?

2006-01-24 Thread Michel Deloux
And using CFMX 6.1. ;-) 2006/1/24, Dave Watts [EMAIL PROTECTED]: Thanx Adrian and Dave. What I need to know: when an application starts, one event will be run setting a variable. If CF controls (via applicationtimeout) the application time where I'll view this settings? In server

Sorting array

2006-01-19 Thread Michel Deloux
Hi all I have an array with elements like this: 1 02/03/2006||3||Seattle||20||ATT||o||Overwrite||390||20060203 2 02/07/2006||3||Seattle||20||ATT||a||Append||390||20060207 3 01/26/2006||6||Phoenix||20||ATT||o||Overwrite||390||20060126 I need to sort this elements in date format using the final

Re: Sorting array

2006-01-19 Thread Michel Deloux
should work. Mike T On 1/19/06, Michel Deloux [EMAIL PROTECTED] wrote: Hi all I have an array with elements like this: 1 02/03/2006||3||Seattle||20||ATT||o||Overwrite||390||20060203 2 02/07/2006||3||Seattle||20||ATT||a||Append||390||20060207 3 01/26/2006||6||Phoenix||20||ATT||o

The best CFC book is...

2006-01-15 Thread Michel Deloux
Hi all I'm an intermediate CF developer looking for(late 'cause CF 5 version) CFC books to learn how to work with components. Hal Helms wrote Discovering CFCs: ColdFusion MX Components. Do you recommend? Cheers MD ~|

isolating transaction - inside loops? or not?

2005-12-28 Thread Michel Deloux
Hi all, I`m developing an application with several table inserts/updates with relational data with. No problem. But I need your help about this: Please look this code: First query - father table: cfset CommitOK = true cftransaction action=begin cftry cfloop collection=#form#

Reporting, listing with CF, Java and so on

2005-12-08 Thread Michel Deloux
Hi all I'm searching experiences about reporting or listing with CF. Html tables or Java reporting tools(like ReportMill)? CFReport is not available(I'm using CFMX 6.1). Give me your comment. Cheers MD ~| Logware

Re: Creating dynamically array variables

2005-11-28 Thread Michel Deloux
You're right Dave. Works fine now looking like this: session.forms[#FormVariable#][1] Cheers MD 2005/11/27, Dave Watts [EMAIL PROTECTED]: I need to create a dynamically variable inside this code: cfset FormVariable = Subject cfset form.fieldnames = ListSort(form.fieldnames,textnocase)

Creating dynamically array variables

2005-11-26 Thread Michel Deloux
Hi all I need to create a dynamically variable inside this code: cfset FormVariable = Subject cfset form.fieldnames = ListSort(form.fieldnames,textnocase) cfloop list=form.fieldnames index=ThisItem cfif ThisItem is not fieldnames AND Len(Evaluate(ThisItem)) !--- HERE BEGIN THE TROUBLE---

Help system in CF

2005-11-19 Thread Michel Deloux
Hi all I'm looking for examples, tips, tricks, tutorials, ... about how to build a dynamic help system with CF. Data will be stored in DB and users can build the menu and related subjects. Any help will be very appreciated. Cheers MD

CFC - best practice - locks and so on

2005-10-30 Thread Michel Deloux
Hi all I'm looking for comments about cfc instantiation and the best practices for cflock. Please look this code used in my application. When user enters in application i call a cfc. In application.cfm: ---BEGIN application.cfm--- cfif not isDefined('session.Instantiated')

Re: SOT - Creating dynamically name field with JS

2005-10-25 Thread Michel Deloux
cross browser friendly versions of it. ...:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Michel Deloux [mailto:[EMAIL PROTECTED] Sent: Monday, October 24, 2005 4:55 PM To: CF-Talk Subject: SOT - Creating dynamically name field with JS

newbie question - Delete session variable - how?

2005-10-25 Thread Michel Deloux
Hi all I have one simple form with this fields: CFIF IsDefined('URL.a') AND URL.a IS e !--- kill session vars--- cfset ThisItem=ListFind(ArrayToList(Session.Cart.Data),URL.data) cfset StructDelete(Session,Cart.Data[ThisItem]) cfset StructDelete(Session,Cart.GroupID[ThisItem]) /CFIF How to kill

SOT - Creating dynamically name field with JS

2005-10-24 Thread Michel Deloux
Hi all sorry by OT but I need your help in JS. I have a form with only one field. I'll like to present that field with an option for insert more fields like that and/or exclude others fields. This is my form: form name=frm action=post INPUT size=50 maxlength=20 name=datefield onKeyPress=return

CFC - separate or all in one?

2005-10-20 Thread Michel Deloux
Hi all what's the best: separate functions/methods in several components or include all methods in a same component? Cheers MD ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

Re: CFC - separate or all in one?

2005-10-20 Thread Michel Deloux
, or are they varied in nature? In general, you want each object to be concerned with a single specific task. How big that task is can vary greatly, of course. cheers, barneyb On 10/20/05, Michel Deloux [EMAIL PROTECTED] wrote: Hi all what's the best: separate functions/methods in several components

Using cfinclude with component

2005-10-18 Thread Michel Deloux
Hi all it's possible(recommended) to use cfinclude to include another cfc inside a cfc? I'm using this approach because that cfc is created for other team... Drawbacks? Cheers MD ~| Discover CFTicket - The leading ColdFusion

Re: Using cfinclude with component

2005-10-18 Thread Michel Deloux
YE... Extends!!! Great... Cheers MD 2005/10/18, newsight [EMAIL PROTECTED]: Use instead of including a cfc into a cfc the extends param. Than you can use all the functions of the other cfc. Cheers Artur -Original Message- From: Michel Deloux [mailto:[EMAIL PROTECTED] Sent

Re: URL Variables

2005-10-18 Thread Michel Deloux
You can encrypt newurl value and decrypt it in your action page. Simple and cool. Or use session vars to store that url vars. Cheers. MD 2005/10/18, B G [EMAIL PROTECTED]: Is this possible? I want to pass a string containing URL variables through a URL. For example:

Invoking query and fails

2005-10-03 Thread Michel Deloux
Hi all we have a form with simple fields. If session.nameofquery is not defined I invoke a cfc to get that data. Looks like: CFIF IsDefined('session.qryMyQuery') cfdump var=#session.qryMyQuery# cfoutput query=#session.qryMyQuery# #ID_namebr / /cfoutput CFELSE

Re: Invoking query and fails

2005-10-03 Thread Michel Deloux
= obj.getAllNames() / Taco Fleur - Pacific Fox an industry leader with commercial IT experience since 1994 . http://www.pacificfox.com - Web Design and Development We endorse PayPal, accept payments online now! -Original Message- From: Michel Deloux [mailto:[EMAIL PROTECTED

Call cfscript inside cfc - its possible?

2005-09-26 Thread Michel Deloux
Hi all It's possible to call cfscript functions(application.cfm's living) inside cfc component? I'm calling this function PrepareSearch and CF returns an error: Variable PrepareSearch is undefined. The error occurred in D:\Inetpub\wwwroot\ghost\components\qryGhost.cfc: line 40 38 :

Re: Call cfscript inside cfc - its possible?

2005-09-26 Thread Michel Deloux
: Michel Deloux [mailto:[EMAIL PROTECTED] Sent: Monday, September 26, 2005 2:41 PM To: CF-Talk Subject: Call cfscript inside cfc - its possible? Hi all It's possible to call cfscript functions(application.cfm's living) inside cfc component? I'm calling this function PrepareSearch and CF

Logging users actions - DB or Log4J?

2005-09-20 Thread Michel Deloux
Hi all what's the best choice to store users actions in a CF application(inserts, updates and deletes)? DB or Log4J could be resolve this? Anyone use log4j? Any approaches? Cheers MD ~| Find out how CFTicket can increase your

Re: Logging users actions - DB or Log4J?

2005-09-20 Thread Michel Deloux
Thanks all. Using Michael example could be more robust because I can store what I want. Using trigger this is more hard to do, right? Michael do you can share that example using asinc gateway with us? Thanks all MD 2005/9/20, Michael Dinowitz [EMAIL PROTECTED]: I use an async process to log

Re: Converting DOCs to PDF with CF

2005-09-03 Thread Michel Deloux
it into PDF Adam H On 9/2/05, Michel Deloux [EMAIL PROTECTED] wrote: Hi all it's possible to convert DOC and XLS files to PDF using CF MX? Aaron Johnson talks about Jakarta Project and POI to do that. Anyone have experience about? Cheers MD

Converting DOCs to PDF with CF

2005-09-02 Thread Michel Deloux
Hi all it's possible to convert DOC and XLS files to PDF using CF MX? Aaron Johnson talks about Jakarta Project and POI to do that. Anyone have experience about? Cheers MD ~| Discover CFTicket - The leading ColdFusion Help

Get double quotes string inside another string

2005-08-30 Thread Michel Deloux
Hi all please look this var: cfset mylist = 'Rob Munchen Robert Munchen RDM Testing string inside string more testing 'cause Fred Gregg Robinson' How to get strings inside double quotes(RDM Testing string inside string and Fred)? Using GetToken don't work. Any help? Cheers MD

Re: Get double quotes string inside another string

2005-08-30 Thread Michel Deloux
Thanx Claude, Barney and S. Isaac. Why you're using BELL(chr(7)) char like separator for that list? Cheers MD 2005/8/30, S. Isaac Dealey [EMAIL PROTECTED]: Hi all please look this var: cfset mylist = 'Rob Munchen Robert Munchen RDM Testing string inside string more testing

Re: Get double quotes string inside another string

2005-08-30 Thread Michel Deloux
Right... Great! Great! Thanks guys(especially S. Isaac). Works fine now. Cheers MD 2005/8/30, Claude Schneegans [EMAIL PROTECTED]: Oh I just have a habbit of using the bell character to delimit a list Ah ah: that rings a bell in my head! ;-) -- ___

Listing directories and your size

2005-08-28 Thread Michel Deloux
Hi all We're using this sample structure to save all files for our client: -CA(Size: 3154.44KB - Sum of all cities) ---LA(Size: 3154.44KB - Sum of Marketing and Finance) --Marketing(Size: 2490.62KB) ---2005(Size: 264.43KB) ---meetings2005.pps(23.32KB)

Replace accented chars with unaccented ones

2005-08-20 Thread Michel Deloux
Hi all. Our client is a canadian airplanes supplier with a multilanguage web site(french-Canada, english-USA, spanish-Mexico). For french and spanish site visitors users can provide info with accented chars. For USA clients users enter all char with unaccented chars because english

file size missing with CFFILE use

2005-08-13 Thread Michel Deloux
Hi all after upload files to our server 20% that files don't have file size properties saved to DB. Do you know why CFFILE file size is missing? Maybe using Java getSize directly could be resolve that? Cheers MD ~| Find out

Re: Fusebox, Mach-II, GlueCode... the Oscar goes to...

2005-08-11 Thread Michel Deloux
Ok, ok. It depends. Other question: framework and speed dev are the same thing? Or not? I believe(my point of view) that using frameworks make development harder to code. I'm right? It's possible to separate 100% between M V C? Thanx MD 2005/8/11, Barney Boisvert [EMAIL PROTECTED]: Same

Re: Fusebox, Mach-II, GlueCode... the Oscar goes to...

2005-08-11 Thread Michel Deloux
, and the Flash C and V are bound. It's just the nature of the beast. cheers, barneyb On 8/11/05, Michel Deloux [EMAIL PROTECTED] wrote: Ok, ok. It depends. Other question: framework and speed dev are the same thing? Or not? I believe(my point of view) that using frameworks make development

Re: Fusebox, Mach-II, GlueCode... the Oscar goes to...

2005-08-11 Thread Michel Deloux
Thanx Barney once more again for your patience in answer questions like that. MD 2005/8/11, Michel Deloux [EMAIL PROTECTED]: Thanks Barney. Percieved development speed is governed by the methodology, not a framework.. Really great! MD. 2005/8/11, Barney Boisvert [EMAIL PROTECTED]: I

Fusebox, Mach-II, GlueCode... the Oscar goes to...

2005-08-10 Thread Michel Deloux
Personal point of view: choose the best Framework for CF. Thanks MD ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a

Reading CF log files

2005-08-04 Thread Michel Deloux
Hi all, We're looking for all slow templates used in our application. This information is so important to know what's happening. What I need to do: - read CF log to know the name of that slow files. Using CF is possible to do that? Any tips? Cheers MD

Re: Queries Totals

2005-08-03 Thread Michel Deloux
to do what you want, in general, because the debugging output doesn't change between versions much. cheers, barneyb On 8/2/05, Michel Deloux [EMAIL PROTECTED] wrote: Hi all it's possible to know the number of queries used in a template, including cfinclude ...? May be when you're

Queries Totals

2005-08-02 Thread Michel Deloux
Hi all it's possible to know the number of queries used in a template, including cfinclude ...? May be when you're using CF debug option. Cheers MD ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket

OT: Formatting textarea

2005-07-20 Thread Michel Deloux
Hi all Sorry for OT. I am inserting a textarea into a database and when I retrieve the data I would like to show that same user formats with breaks, returns and so on. But only show inline text without formatting. Using HTMLEditFormat, ParagraphFormat, Replace(UserInputText,chr(13),br,all) and

SOT - Tape library

2005-07-18 Thread Michel Deloux
Hi all. Sorry for OT. I'm looking examples about how to develop a tape library with CF7/Oracle for use with backup tapes. How to manage tapes(LTO, DAT, DLT, etc) in use, tapes life time, dates, and so on. Any tips will be very very useful. Thanx MD

Re: Using FSO with CF

2005-07-11 Thread Michel Deloux
Thank you S. Isaac... I'll be change our code to Java.io.File routines... Do you have any example about? Tutorials, how to use that Java classes? Thanks once more again. MD 2005/7/7, S. Isaac Dealey [EMAIL PROTECTED]: Thanks S. Isaac Dealey Yes. I need to use FSO with CF(CreateObject).

Re: Using FSO with CF

2005-07-11 Thread Michel Deloux
Thanx S. Isaac Dealey... Sun... i'll be there... ;-) Cheers. MD 2005/7/11, S. Isaac Dealey [EMAIL PROTECTED]: Thank you S. Isaac... I'll be change our code to Java.io.File routines... Do you have any example about? Tutorials, how to use that Java classes? Thanks once more again.

Using FSO with CF

2005-07-07 Thread Michel Deloux
Hi all I need to know about directories in our Win2003 server with CF7. Using FSO is the best option? What I need to do? Thanx ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

Re: Using FSO with CF

2005-07-07 Thread Michel Deloux
Thanks S. Isaac Dealey Yes. I need to use FSO with CF(CreateObject). But what I need to setup in our Win2003 Server. With Java I'll get best results? Thanx once more again. MD 2005/7/7, S. Isaac Dealey [EMAIL PROTECTED]: Hi all I need to know about directories in our Win2003 server

Re: Delete spaces inside form fields vars

2005-07-01 Thread Michel Deloux
Thank you Matthew. Great great job. Works fine now... More clear and concise! 2005/6/30, Matthew Walker [EMAIL PROTECTED]: You seem to be asking for all spaces in submitted values to be removed, yet your code seems to be changing all double-spaces to single spaces. What exactly do you want?

Delete spaces inside form fields vars

2005-06-30 Thread Michel Deloux
Hi all I need to delete all spaces between words inside form fields. Please look this simple code included in application.cfm: !--- FORM structure exists and haves content--- cfif NOT isEmpty(FORM) cfoutput cfloop list=#form.fieldnames# index=i !---update all form fields with spaces for your

Re: Install CF 7 with an existing MX installation

2005-06-19 Thread Michel Deloux
them. Alternatively, you can choose to install CFMX 7 without choosing to configure IIS. Then CFMX 7 will run on its built-in webserver, which will be either 8500 or 8501 in most cases. -Steven Erat Michel Deloux wrote: Thanks Will. But how IIS will know what CF version need to run

Install CF 7 with an existing MX installation

2005-06-18 Thread Michel Deloux
Hi all please give me your help. Today our intranet run with CF MX. All works fine. But I need to install CF 7 for our new application(cfforms and cfreport) but I need to preserve CF MX installation and applications running with. It's possible to define that? How to do if this application runs

Re: Install CF 7 with an existing MX installation

2005-06-18 Thread Michel Deloux
Thanks Will. But how IIS will know what CF version need to run with cfm templates? 2005/6/18, Will Tomlinson [EMAIL PROTECTED]: As far as I'm aware, they should run fine side by side. At least mine do with no problem. Will

Appending requesttimeout to URL via application.cfm

2005-06-16 Thread Michel Deloux
That's possible? I need to check if cgi.query_string exists in URL if yes OK; if no I need to insert that variable to all URL in our application... But... How can do that? Thanx all MD ~| Logware (www.logware.us): a new and

Re: Appending requesttimeout to URL via application.cfm

2005-06-16 Thread Michel Deloux
Via application.cfm? How to ensure that config works properly? It's possible to dump cfsetting? Thanx James MD 2005/6/16, James Holmes [EMAIL PROTECTED]: You can use cfsetting to do the same thing. On 6/16/05, Michel Deloux [EMAIL PROTECTED] wrote: That's possible? I need to check

Re: Appending requesttimeout to URL via application.cfm

2005-06-16 Thread Michel Deloux
is thrown: cfset createObject(java,java.lang.Thread).sleep(61000) On 6/16/05, Michel Deloux [EMAIL PROTECTED] wrote: Via application.cfm? How to ensure that config works properly? It's possible to dump cfsetting? ~| Logware

Using XForms with CFFORM in CF7

2005-05-31 Thread Michel Deloux
Hi all I'm looking for examples, advantages, disadvantages, requirements about using XForms with CFFORM in CF7. CF Documentation is so small about that subject. Any topic will be very helpful. Thanx MD ~| Logware

Re: Using XForms with CFFORM in CF7

2005-05-31 Thread Michel Deloux
Thanx Michael... great!!! MD 2005/5/31, Michael Dinowitz [EMAIL PROTECTED]: This article was published recently in Fusion Authority XForms: The 'Other' New Forms in CFMX 7 http://www.fusionauthority.com/Article.cfm/ArticleID:4430 - Original Message - From: Michel Deloux [EMAIL

Re: Viewing files in another server/directory outside CF server

2005-05-30 Thread Michel Deloux
Thanx Dave yes and yes. Please look my simple script(viewfiles.cfm): cfset namefile=Fresno_#CreateUUID()#.doc cfcase value=doc cfheader name=Content-Disposition value=inline;filename=#namefile# cfcontent type=application/msword file=#namefile# /cfcase IE show me a screen with save and cancel

Re: Viewing files in another server/directory outside CF server

2005-05-25 Thread Michel Deloux
]: That's the proper behavior. If you want them to display in the browser, you'll ned to change your value=attachment; to value=inline; - Original Message - From: Michel Deloux [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, May 24, 2005 2:49 PM Subject: Re: Viewing

Re: Viewing files in another server/directory outside CF server

2005-05-25 Thread Michel Deloux
Thanx Jim Using attachment or inline options IE don't show Open option only Save and Cancel. And IE recognize original MS Word doc like unknown. If user clicks Save needs to select a directory, name and so on... Using Mozilla works fine: I click in Open File and MS Word shows that... very

Re: Viewing files in another server/directory outside CF server

2005-05-24 Thread Michel Deloux
- From: Michel Deloux [mailto:[EMAIL PROTECTED] Sent: 23 May 2005 16:54 To: CF-Talk Subject: Viewing files in another server/directory outside CF server Hi all I can upload files to CA_LA_Fresno server using CF user. CF user haves administrator properties. But my user don't have

Re: Viewing files in another server/directory outside CF server

2005-05-24 Thread Michel Deloux
to talk to the server admin. -Original Message- From: Michel Deloux [mailto:[EMAIL PROTECTED] Sent: 24 May 2005 13:01 To: CF-Talk Subject: Re: Viewing files in another server/directory outside CF server Thank you Pascal for your answer. But don't work for us. With CF I

Re: Viewing files in another server/directory outside CF server

2005-05-24 Thread Michel Deloux
Thanx Dave, CF lives in CA_LA_WS server and all docs lives in CA_LA_Fresno server. How to show for our users docs stored in CA_LA_Fresno server with IE? It's possible? For IE I need to store my files in CF server? 2005/5/24, Dave Watts [EMAIL PROTECTED]: I'm using this script to show to the

Re: Viewing files in another server/directory outside CF server

2005-05-24 Thread Michel Deloux
Thanx Dave. and that your clients have network logon rights to that machine and read access to the share in question... it's impossible! What's UNC? How to setup? Thanx once more again. 2005/5/24, Dave Watts [EMAIL PROTECTED]: CF lives in CA_LA_WS server and all docs lives in

Re: Viewing files in another server/directory outside CF server

2005-05-24 Thread Michel Deloux
Thanx Dave using CFCONTENT and CFHEADER I need to get that file right? After that I can send that file to user browser... Works with users with no server rights? 2005/5/24, Dave Watts [EMAIL PROTECTED]: and that your clients have network logon rights to that machine and read access to

Re: Viewing files in another server/directory outside CF server

2005-05-24 Thread Michel Deloux
Using CFCONTENT and CFHEADER with MS Word files show me a Save/Download screen in IE. Please look my simple code: view_files.cfm?fileX=file://CA_LA_Fresno/systems/Fresno2004_12.doc in view_files I remove file: and change / bar to \ bar and after:: cfheader name=Content-Disposition

Viewing files in another server/directory outside CF server

2005-05-23 Thread Michel Deloux
Hi all I can upload files to CA_LA_Fresno server using CF user. CF user haves administrator properties. But my user don't have permission to access that server/directory. It's possible to my users see that file in your browser or Word? How? Thanks in advance

Using CFIF inside CFReport Builder

2005-05-15 Thread Michel Deloux
Hi all it's possible to use CFIF statements inside CF Report Builder? I need to use CFIF's for control titles and display selected informations. It's possible? How to? Thanks in advance for any help. Michel ~| Logware

[SOT] Reports in HTML with CF

2005-05-13 Thread Michel Deloux
Hi all I'm need to create reports in HTML mode. But how to use pagebreaks, headers in that pagebreaks, footers, and so with HTML? Do you have any example about how to use HTML in reports with CF? Cheers Michel ~| Logware

[OT] SQL Audit with CF - or maybe triggers?

2005-05-11 Thread Michel Deloux
Hi all I'm a CF newbie and look for any sort of help for my application. How to audit update and delete operations in our DB? I have try to use trigger but how to pass parameters for triggers like userID, fields changed, etc? Do you have any example about how to do that? Cheers Michel Deloux

Re: [OT] SQL Audit with CF - or maybe triggers?

2005-05-11 Thread Michel Deloux
Thanks Jochem We're using SQL Server 2000. Internally? But how to pass CF parameters and save that parameters in... AuditTable? It's possible? 2005/5/11, Jochem van Dieten [EMAIL PROTECTED]: Michel Deloux wrote: I'm a CF newbie and look for any sort of help for my application. How

Re: [OT] SQL Audit with CF - or maybe triggers?

2005-05-11 Thread Michel Deloux
Yes. Our application is done and tomorrow my boss send an email about Audit Control... ;-( Thanx 2005/5/11, Jochem van Dieten [EMAIL PROTECTED]: Michel Deloux wrote: We're using SQL Server 2000. Internally? Doubt so, I only know of plugins for MVCC databases. But how to pass CF