Re: inventory management

2004-06-25 Thread brobborb
Yikes.  So they literally click through the inventory to get to the product?!  Crazy! Can you describe to me this physical part no.?  Do same products have the same physical parts no. or are they different for every item?  Is there a field in the database that stores this physical part number?  Wha

Re: inventory management

2004-06-25 Thread brobborb
you can get a simple scanner for like $90.  dont have to spend over $200 :-D and a PC, of course!   - Original Message -   From: Burns, John D   To: CF-Talk   Sent: Friday, June 25, 2004 12:06 PM   Subject: RE: inventory management   I've thought about doing something a bar-code scanne

Re: inventory management

2004-06-25 Thread brobborb
We came across this problem...What if, someone was updating info on a product (enternig data into fields and such), and at a random moment, decided to skip to a different product, they want to be able to do it by just simply scanning that other product. We handled it this way 1.  Have them press

Re: [ANN] BlueDragon 6.1 Released!

2004-06-25 Thread Dick Applebaum
Hey Vince Don't mean to tell you how to do your job -- aw, maybe just a little. The 28th of this month is Apple's WWDC (world-wild developer's conference in San Francisco). As luck (or good planning) would have it, you have a very significant announcement for Mac developers. For the first tim

Re: SOT: Dreamweaver Question.

2004-06-25 Thread Kay Smoljak
On Fri, 25 Jun 2004 12:40:10 -0700, Ian Skinner <[EMAIL PROTECTED]> wrote: > Does anybody know if and how one may control which server a file goes to > with the put functions? DW puts to whichever server was connected to last. In a new session where no connections have been made, DW will put to t

RE: Mailing to email list using CF

2004-06-25 Thread Paul Vernon
> It is my understanding it's better to do your own loop for just this > reason.  If you use the query option in cfmail you have to make sure all > your address are clean and correct. Surely making sure your addresses are clean and correct is a good thing??? Paul [Todays Threads] [This Mes

RE: Mailing to email list using CF

2004-06-25 Thread Ian Skinner
It is my understanding it's better to do your own loop for just this reason.  If you use the query option in cfmail you have to make sure all your address are clean and correct. message Do somet

Re: Getting started with ASP.NET

2004-06-25 Thread Marlon Moyer
I think it really makes for some inefficient code.  The postback aspect of it seems only suitable for intranets.  I see the reasoning for the abstraction, but I feel that the way they've gone about it, making the vb programmers feel at home, results in some really kludgy ways of doing things. The

RE: MYSQL sysdate or getdate() equivalent

2004-06-25 Thread Barney Boisvert
Now() > -Original Message- > From: CFDEV [mailto:[EMAIL PROTECTED] > Sent: Friday, June 25, 2004 2:43 PM > To: CF-Talk > Subject: OT : MYSQL sysdate or getdate() equivalent > > Hi All, >   > What's the equivalent of oracle sysdate or MS SQL getdate() > in an insert > statement for mysq

RE: directory structure when using host headers?

2004-06-25 Thread Dave Watts
> Is there a best practice for directory structure when hosting > multiple websites with IIS Host Headers and a single CF engine? Just don't nest one web root directory within another, and put them all on a separate partition from your operating system and other applications. > I assume we can c

RE: directory structure when using host headers?

2004-06-25 Thread Paul Vernon
I generally work to this pattern     Drive:\Domains\{domainname}\{name} eg     X:\Domains\website1.co.uk\www     X:\Domains\website1.co.uk\demo     X:\Domains\website2.co.uk\www Some people go even further so you could represent the sites as follows but I think it can get a little to

OT : MYSQL sysdate or getdate() equivalent

2004-06-25 Thread CFDEV
Hi All, What's the equivalent of oracle sysdate or MS SQL getdate() in an insert statement for mysql? Thanks Pat [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: A little regexp help

2004-06-25 Thread Ben Doom
Yeah Using the pattern in _javascript_ (which is how cfinput checks) is different from CF.  You can write the same thing as a JS regex (I'd have to play around to get it right, but it should be awful similar) but I was writing a CF regex. All we had here was a failure to communicate :-

Re: A little regexp help

2004-06-25 Thread Jerry Johnson
Is this _javascript_ Regex, or CF regex? (It makes a BIG difference) Jerry Johnson >>> [EMAIL PROTECTED] 06/25/04 05:20PM >>> 6.1 Enterprise I'm beginning to think it's some screwy thing with the pattern attribute.  I should probably just break it out into a seperate _javascript_ function and be

Re: Where can I find NetServices.as

2004-06-25 Thread Dave Carabetta
On Fri, 25 Jun 2004 17:28:35 -0400, Troy Simpson <[EMAIL PROTECTED]> wrote: > > I am working though an example and I am trying to find the > NetServices.as file. > > Is this part of ColdFusion MX or Studio MX? > Where would I find this file? > Neither. It's part of the free, separately availabl

Re: A little regexp help

2004-06-25 Thread Todd
Yes.  The pattern attribute of cfinput does in fact seem to be the culprit. I tell it ^[a-zA-Z0-9]{6,20}$ and it generates this: if  (!_CF_checkregex(_CF_this.password.value, /\w{6,}/)) - Original Message - From: "Todd" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday,

Re: inventory management

2004-06-25 Thread Claude Schneegans
>>Can you control where the scanner puts the info it reads or does the user have to position the cursor to the right text box, etc in order for that to work?  Just curious. Mosy scanners and bar code readers will simply be connected to the keyboard port, and accept the keyboard as a pass through c

directory structure when using host headers?

2004-06-25 Thread Jeff Horne
Is there a best practice for directory structure when hosting multiple websites with IIS Host Headers and a single CF engine? We use CF 5 and IIS 5.0.  We currently have one website on our backup server, so the directory structure has the cfusion directory at the same level as inetpub directory wi

Where can I find NetServices.as

2004-06-25 Thread Troy Simpson
I am working though an example and I am trying to find the NetServices.as file. Is this part of ColdFusion MX or Studio MX? Where would I find this file? Thanks, Troy -- Troy Simpson    Applications Analyst/Programmer, OCPDBA, MCSE, SCSA North Carolina State University Libraries Campus Box 711

Re: [ANN] BlueDragon 6.1 Released!

2004-06-25 Thread Claude Schneegans
>>Any CFX tag that runs on CF5/MX will run correctly on BlueDragon. Ah ah! Great news! -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. [Todays Thr

Re: A little regexp help

2004-06-25 Thread Todd
6.1 Enterprise I'm beginning to think it's some screwy thing with the pattern attribute.  I should probably just break it out into a seperate _javascript_ function and be done with it. - Original Message - From: "Ben Doom" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Frida

RE: Dreamweaver Question.

2004-06-25 Thread Dave Watts
> Actually, I have accidently discovered that the put function > goes to the last non-local server I view.  So if I am, or > have most recently viewed the testing server, then when I put > files they go there.  If I have not viewed any non-local > server, or I am currently, or I have most recen

Re: A little regexp help

2004-06-25 Thread Ben Doom
When I tested ^[a-zA-Z0-9]{6,20}$ against "astrjuh" it matched, but not when I tested it against "astrjuh$". What version of CF are you using? --Ben Todd wrote: > Yes. > > It works correctly as long as there are not at least 6 alphanumeric > characters side by side.  Once there are 6 in a row

RE: Dreamweaver Question.

2004-06-25 Thread Ian Skinner
Actually, I have accidently discovered that the put function goes to the last non-local server I view.  So if I am, or have most recently viewed the testing server, then when I put files they go there.  If I have not viewed any non-local server, or I am currently, or I have most recently viewed the

RE: Billing App Help

2004-06-25 Thread Dave Watts
> If anyone's got some clever tips, I'd love to hear them.   > Finances is not an arena that I'm very familiar with, so I'm > in a little over my head. My "clever tip", to the extent that you can call it one, is to hire an application developer who's also an accountant as a consultant. I really t

Billing App Help

2004-06-25 Thread Barney Boisvert
I'm building an internal billing application and I'm not quite sure how to go about handling payment plans.  We've got a number of different ways to purchase software licenses, including a handful of up-front costs for different organizations (commercial, govmnt, non-profit, etc.), and several pay-

Re: A little regexp help

2004-06-25 Thread Todd
When someone adds or resets a password, I'm trying to make sure what they entered matches the pattern I described below. - Original Message - From: "Jerry Johnson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, June 25, 2004 4:14 PM Subject: Re: A little regexp help

Re: A little regexp help

2004-06-25 Thread Todd
Yes. It works correctly as long as there are not at least 6 alphanumeric characters side by side.  Once there are 6 in a row, it accepts everything, even when there are more than 20 characters entered.  I'm trying to validate a password, btw. - Original Message - From: "Ben Doom" <[EMAIL

ANNOUNCE: CFUN-04 interviews 36/37/39 Matt Liotta, Simon Horwith, John Hamman - Web Serv, CF, Accessibility

2004-06-25 Thread Michael Smith
In these CFUN-04 interviews, Michael Smith talks with Matt Liotta about "Utilizing Web Services", Simon Horwith about "Welcome to CF" and John Hamman about "Become an accessibility expert in 50 minutes" But first some news. * Conference and training news * Regular price of $299 expires tod

RE: Image Issue

2004-06-25 Thread Dave Watts
> Is it possible that a user or browser could send false MIME > types? Yes, of course. You could say whatever MIME type you want if you write the HTTP request yourself. > That's why I check the extension, because if someone somehow > spoofs a MIME type and uploads an exe to my server, I don't

RE: Dreamweaver Question.

2004-06-25 Thread Dave Watts
> Does anybody know if and how one may control which server a > file goes to with the put functions?  I have my sites set up > where the "local" copy is on a network file server that is > backed up each day.  Then my "testing" server is in my local > webroot where I can run and test my code on

Re: A little regexp help

2004-06-25 Thread Jerry Johnson
Are you trying to FIND a valid string, an invalid string, or are you trying to FIX an invalid string? Jerry Johnson >>> [EMAIL PROTECTED] 06/25/04 04:04PM >>> Thanks, but doesn't quite do it.  I should probably clarify what I need.  I left out an important word last time. What I need to end up w

RE: Mailing to email list using CF

2004-06-25 Thread Barney Boisvert
I didn't say that.  But in my experience, it's a lot faster than looping the CFMAIL tag itself.  We also validate very heavily before inserting any email addresses (including the same RE test we use at send time).  There the focus is on identifying errors and giving meaningful messages.  At send ti

Re: A little regexp help

2004-06-25 Thread Ben Doom
> characters long that contains _only_ letters and/or numbers.  No special > characters at all.  In the case of ^[a-zA-Z0-9]{6,20}$ it allows special > characters once it finds at least 6 letters and/or numbers.  It's that > "only" part that is giving me trouble. Um.  No, it shouldn't.  I doesn't

Re: A little regexp help

2004-06-25 Thread Todd
Thanks, but doesn't quite do it.  I should probably clarify what I need.  I left out an important word last time. What I need to end up with is a string that is anywhere between 6 and 20 characters long that contains _only_ letters and/or numbers.  No special characters at all.  In the case of ^[a

RE: Mailing to email list using CF

2004-06-25 Thread Paul Vernon
John, I've recently released a CFX tag I wrote some months back to help me scrub my e-mail address data because CFMX is much better at spotting crappy addresses and stopping before you send so I had to really clean up the data going in but that still left me with thousands of addresses already i

Re: A little regexp help

2004-06-25 Thread Ben Doom
^[a-zA-Z0-9]{6,20}$ The ^ matches the beginning o the string and the $ the end. --Ben Doom Todd wrote: > This is probably a simple one, but I have little experience with > regexps.  I have a string that must only contain letters and/or numbers > and be between 6 and 20 characters long.  So fa

RE: WOT: Getting started with ASP.NET

2004-06-25 Thread Calvin Ward
Is there such a category as too off topic -Original Message- From:  Vince Bonfanti Date:  6/25/04 12:50 pm To:  CF-Talk Subj:  RE: WOT: Getting started with ASP.NET I'd suggest starting with Microsoft's ASP.NET Quickstart tutorials:    http://www.asp.net/tutorials/quickstart.aspx

RE: Mailing to email list using CF

2004-06-25 Thread Burns, John D
So looping over the thousands of email addresses and running a regex against it will not cause a large performance hit?  I considered doing that on output to catch the ones that I didn't handle coming in. Everything that comes through any of my sites goes through a cfc method that scrubs the data a

SOT: Dreamweaver Question.

2004-06-25 Thread Ian Skinner
Does anybody know if and how one may control which server a file goes to with the put functions?  I have my sites set up where the "local" copy is on a network file server that is backed up each day.  Then my "testing" server is in my local webroot where I can run and test my code on my development

RE: Image Issue

2004-06-25 Thread Burns, John D
Is it possible that a user or browser could send false MIME types? That's why I check the extension, because if someone somehow spoofs a MIME type and uploads an exe to my server, I don't want it to get written to the file system. John -Original Message- From: Dave Watts [mailto:[EMAIL P

RE: Image Issue

2004-06-25 Thread Dave Watts
> Basically, I do not want to upload a file if the user did > not select an image on the form page and was just trying > to update some text instead. So, How do I check for the > existence of an image before file upload. I don't think you can effectively do this before the file is actually uplo

A little regexp help

2004-06-25 Thread Todd
This is probably a simple one, but I have little experience with regexps.  I have a string that must only contain letters and/or numbers and be between 6 and 20 characters long.  So far, I have [a-zA-Z0-9]{6,20} but that only gets me 1/2 way there. Thanks! [Todays Threads] [This Message] [Sub

Re: Coding Standards Implementation

2004-06-25 Thread Deanna Schneider
Candace, We never retrofit exisiting apps to new standards. We'd never get anything new done if we did. We always just move forward. Of course, if you're updating an old app, then we do try to bring it closer to current standards. - Original Message - From: "Candace Cottrell" > 1) Impose

Re: RTF File Question

2004-06-25 Thread Eric Gyenes
Thanks for the help. >I have RTF data in a database that I want to display in a text box. The only >solution I have seen is to purchase a very expensive RTF WYSIWYG editor. >Does anyone have any ideas? > > > >-Thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: HTML Issue

2004-06-25 Thread Douglas.Knudsen
a popular topic...see houseoffusion.com to search the archives.  I really dig http://fckeditor.sourceforge.net  version 2 promises to be even better! Doug -Original Message- From: Milan Mushran [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 2:49 PM To: CF-Talk Subject: HTML Issue

RE: Getting started with ASP.NET

2004-06-25 Thread Dave Watts
> That will be interesting. At this point, .NET looks like it > has some real intersting components, but I really dislike > Microsoft's black boxes. I want to be able to see the code > and what is going on, not have learn Microsoft's new language > which them compiles into HTML etc. Why don't I

HTML Issue

2004-06-25 Thread Milan Mushran
Hi Guys, Thanks for helping me out with the cffile issue. I have another issue - I want a way by which a user can add colors / font styles to pages. I guess I need a HTML WYSIWIG editor for this. Does anyone know of a good editor which is compatible with older browsers too. Thanks, Milan

Re: Mailing to email list using CF

2004-06-25 Thread Matt Robertson
This one has come up before, you can bet. Short answer:  If you have not validated your addresses you cannot use the query= attribute safely. If you wrap cfmail in a try/catch block and just let it continue on if it hits a bad address, then you'll never scrub your db.  What I do looks like what y

RE: Mailing to email list using CF

2004-06-25 Thread Barney Boisvert
Doing CFOUTPUT/CFMAIL is a huge performance hit, so you don't want to do it that way.  We manage mailing lists of pretty significant size, and we use a combination of fairly aggressive validation at insertion time, and at send time, we error check the list with a simple RE that every address must v

RE: Image Issue

2004-06-25 Thread Dave Watts
> Does this depend on the file extension at all? So, if I > upload a gif that I renamed to foo.jpg, the browser will > send what mime info, gif or jpg? Without testing this myself, I can't be absolutely sure, but I'm pretty sure that browsers running on Windows would send the MIME type correspon

RE: Coding Standards Implementation

2004-06-25 Thread Dave Watts
> I am drafting up a coding and design standards document for > the hospital. Once it is complete, what do you suggest in > terms if implementation? >   > 1) Impose the standards only on newly created apps > 2) Go back and implement the standards on apps that were > built in the past (pre-standa

Re: Getting started with ASP.NET

2004-06-25 Thread Jeff Chastain
That will be interesting.  At this point, .NET looks like it has some real intersting components, but I really dislike Microsoft's black boxes.  I want to be able to see the code and what is going on, not have learn Microsoft's new language which them compiles into HTML etc.  Why don't I just write

RE: Image Issue

2004-06-25 Thread Douglas.Knudsen
-Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 2:31 PM To: CF-Talk Subject: RE: Image Issue > you can also look at > cffile.contenttype and cffile.contentsubtype for mimetype > stuffs.  Better than the extension. >   > hmm...how does CF determine

Mailing to email list using CF

2004-06-25 Thread Burns, John D
I'm storing a list of users who have signed up for an email list in a database.  I have a simple web app for users to use when they want to send something to their email list.  When they click send, I'm using to send the mail out to all of the users individually.  The problem I've run into is that

RE: Image Issue

2004-06-25 Thread Dave Watts
> you can also look at > cffile.contenttype and cffile.contentsubtype for mimetype > stuffs.  Better than the extension. >   > hmm...how does CF determine this though?  anyone? The browser sends the MIME type when it posts a file upload using multipart/form-data. That's how the ACCEPT attribute o

RE: Getting started with ASP.NET

2004-06-25 Thread Robyn Follen
Oops, I lied - the discussion was yesterday (6/24/2004) and the subject is called "best book?" Sorry about that. Robyn -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 1:22 PM To: CF-Talk Subject: RE: Getting started with ASP.NET Thanks fo

OT: reasons for dumping CF? (was "Re: Getting started with ASP.NET")

2004-06-25 Thread Damien McKenna
On Jun 25, 2004, at 1:16 PM, Bruce Sorge wrote: > These helped me out when the decision in my company was made to > abandon CF and go to .NET. Out of interest, why did your employer decide to dump CF and go to .NET?  Was it for .NET or because of CF? -- Damien McKenna - Web Developer - [EMAIL P

Re: Getting started with ASP.NET

2004-06-25 Thread Michael Dinowitz
Everyone's on the road to CFUN. I'm sure that there will be more talk and posts next week. I'll be doing some comparisons between .Net implementations of things and CF ways. That's bound to get people talking. :) - Original Message - From: Jeff Chastain <[EMAIL PROTECTED]> Date: Fri, 25 Ju

RE: RTF File Question

2004-06-25 Thread Burns, John D
Google -> fckeditor Fckeditor is a free WYSIWYG editor. John -Original Message- From: Eric Gyenes [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 1:50 PM To: CF-Talk Subject: RTF File Question I have RTF data in a database that I want to display in a text box. The only solution

Re: Coding Standards Implementation

2004-06-25 Thread Damien McKenna
When I started at my current job I noticed that there was a fair range of coding styles, all from one developer.  In the few months I've been working here I've attempted to keep to one style myself and I rewrite older portions any time I have to make changes to them.  I've found this to work fa

RE: cftransaction inside or outside cfloops?

2004-06-25 Thread Barney Boisvert
It depends on whether the entire process needs to be atomic or just each iteration, how many iterations there are, and what other processes might need to access the database while it's running. The overall execution time will certianly be greater if the CFTRANSACTION tags are inside the CFLOOP tag

RE: RTF File Question

2004-06-25 Thread Kristopher Pilles
a long itme ago we used: http://www.softinterface.com/Convert-Doc/Convert-Doc.htm -Original Message- From: Eric Gyenes [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 1:50 PM To: CF-Talk Subject: RTF File Question I have RTF data in a database that I want to display in a t

Re: Coding Standards Implementation

2004-06-25 Thread Matt Robertson
I use 2), but *try* to keep in mind the old adage "if it ain't broke don't fix it".  When you mess with production code it becomes dev server code again; mostly due to stoopid typos made inadvertently during the re-dev process.  Very often I create more trouble for myself and wish I had left the co

RTF File Question

2004-06-25 Thread Eric Gyenes
I have RTF data in a database that I want to display in a text box. The only solution I have seen is to purchase a very expensive RTF WYSIWYG editor. Does anyone have any ideas? -Thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Suppo

Re: cftransaction inside or outside cfloops?

2004-06-25 Thread Matt Robertson
Wouldn't the answer to this be akin to the standard advice of putting cfoutputs *outside* of a cfloop?  In the given example, there is nothing meaningful going on in the loop other than stuff that needs a cftransaction applied to it.  Wouldn't applying and reapplying such a block repeatedly be unne

RE: Image Issue

2004-06-25 Thread Burns, John D
You can also do a check to make sure that the file is of the correct type (image) here.   (right(form.filefield,3) eq "jpg" or right(form.filefield,3) eq "gif")) You can do checks for other extensions as well, but that's just an idea. John -Original Message- From: Aaron Rouse [mailto:[

RE: cfmx service question

2004-06-25 Thread Burns, John D
Tony, The only 2 things you need for CF to do this is: 1. CF to be running as an account that has access to the network share. Local accounts don't have this, so you'd need a domain account or something. 2. The account that CF is running as needs the access that Dave Watts described in his post.

RE: inventory management

2004-06-25 Thread Burns, John D
I've thought about doing something a bar-code scanner and a web app. Does it work well?  What kind of hardware would I need to pick up and what would be the costs?  Can you control where the scanner puts the info it reads or does the user have to position the cursor to the right text box, etc in or

Re: mm bug db

2004-06-25 Thread Dave Carabetta
On Fri, 25 Jun 2004 19:14:25 +0200, Hugo Ahlenius <[EMAIL PROTECTED]> wrote: > > Is the Macromedia bug database publicly accessible? If so, does anyone > have any link -- I can't seem to find any.. > No. Regards, Dave. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [

RE: Getting started with ASP.NET

2004-06-25 Thread Jeff Chastain
Thanks for the pointers.  I will check out the different resources mentioned.  I did subscribe to the .NET-Talk list, but I don't see any discussions going on today. Thanks -- Jeff Quoting Robyn Follen <[EMAIL PROTECTED]>: > Check out the .NET-Talk group on House Of Fusion.  This exact topic is

Coding Standards Implementation

2004-06-25 Thread Candace Cottrell
Hello fam! I am drafting up a coding and design standards document for the hospital. Once it is complete, what do you suggest in terms if implementation? 1) Impose the standards only on newly created apps 2) Go back and implement the standards on apps that were built in the past (pre-standard

RE: [ANN] BlueDragon 6.1 Released!

2004-06-25 Thread Rick Faircloth
Thanks for the info! Rick   -Original Message-   From: Vince Bonfanti [mailto:[EMAIL PROTECTED]   Sent: Friday, June 25, 2004 12:52 AM   To: CF-Talk   Subject: RE: [ANN] BlueDragon 6.1 Released!   Hi Rick,   I'll let Dick answer about "run read-only".   Yes, there's a free standalone s

Re: Image Issue

2004-06-25 Thread Milan Mushran
I had tried this before posting the question and for some reason it did not work..Now it is. Thank u very much. Jordan Michaels <[EMAIL PROTECTED]> wrote: Checking the fields length would work as described in the tag below. I've always checked to see if the field was empty though. EG:     HT

RE: WOT: Getting started with ASP.NET

2004-06-25 Thread Vince Bonfanti
I'd suggest starting with Microsoft's ASP.NET Quickstart tutorials:    http://www.asp.net/tutorials/quickstart.aspx Of course, you'll want to watch for upcoming BlueDragon.NET release, which will allow you to natively deploy CFML pages as integrated parts of ASP.NET applications (sharing applicat

RE: [ANN] BlueDragon 6.1 Released!

2004-06-25 Thread Rick Faircloth
Thanks for the explanation, Dick! Rick   -Original Message-   From: Dick Applebaum [mailto:[EMAIL PROTECTED]   Sent: Friday, June 25, 2004 1:25 AM   To: CF-Talk   Subject: Re: [ANN] BlueDragon 6.1 Released!   I hit the send button too soon!   So, you can run a BD/CFML system from CD-ROM

Re: Getting started with ASP.NET

2004-06-25 Thread Bruce Sorge
Beginning ASP.NET with C# from WROX, and Essential C# (if you want to use C#, otherwise VB.NET in place of C#). These helped me out when the decision in my company was made to abandon CF and go to .NET.   - Original Message -   From: Jeff Chastain   To: CF-Talk   Sent: Friday, June 25, 2

mm bug db

2004-06-25 Thread Hugo Ahlenius
Is the Macromedia bug database publicly accessible? If so, does anyone have any link -- I can't seem to find any.. -- Hugo Ahlenius - Hugo Ahlenius  E-Mail: [EMAIL PROTECTED] Project Officer    Phone: 

Re: Image Issue

2004-06-25 Thread Aaron Rouse
I would check to make sure someone did not just accidently hit the space bar in the FileFIeld. On Fri, 25 Jun 2004 10:06:16 -0700, Jordan Michaels <[EMAIL PROTECTED]> wrote: > > Checking the fields length would work as described in the tag below. > I've always checked to see if the field was

Re: Image Issue

2004-06-25 Thread Jordan Michaels
Checking the fields length would work as described in the tag below. I've always checked to see if the field was empty though. EG:     HTH, Jordan Milan Mushran wrote: > Basically, I do not want to upload a file if the user did not select > an image on the form page and was just trying to

Re: Image Issue

2004-06-25 Thread Joe Rinehart
...on action page    -joe - Original Message - From: Milan Mushran <[EMAIL PROTECTED]> Date: Fri, 25 Jun 2004 09:53:01 -0700 (PDT) Subject: RE: Image Issue To: CF-Talk <[EMAIL PROTECTED]> Basically, I do not want to upload a file if the user did not select an image on the form pag

RE: Image Issue

2004-06-25 Thread Milan Mushran
Basically, I do not want to upload a file if the user did not select an image on the form page and was just trying to update some text instead. So, How do I check for the existence of an image before file upload. Thanks a ton, Milan [EMAIL PROTECTED] wrote: I think what he means is there a way

Re: WOT: Getting started with ASP.NET

2004-06-25 Thread Michael Dinowitz
1. Go to asp.net and get the sample code and such. 2. Join the Net-Talk list on HoF. 3. Play with code and ask questions. - Original Message - From: Jeff Chastain <[EMAIL PROTECTED]> Date: Fri, 25 Jun 2004 10:23:39 -0600 Subject: WOT: Getting started with ASP.NET To: CF-Talk <[EMAIL PROT

Re: WOT: Getting started with ASP.NET

2004-06-25 Thread Les Mizzell
Ray Champagne wrote: > I would be interested in this too.  Looks like I will HAVE to go the M$ > route for some projects, as much as I hate it, concurrent with writing CF > code for others.  YUck! Heh Sure they don't have PHP on that server?  I was in the same position - client wanted to ke

RE: Getting started with ASP.NET

2004-06-25 Thread Robyn Follen
Check out the .NET-Talk group on House Of Fusion.  This exact topic is being discussed today.   Robyn -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 12:24 PM To: CF-Talk Subject: WOT: Getting started with ASP.NET Does anybody have any reco

Re: WOT: Getting started with ASP.NET

2004-06-25 Thread Dave Carabetta
On Fri, 25 Jun 2004 10:23:39 -0600, Jeff Chastain <[EMAIL PROTECTED]> wrote: > > Does anybody have any recommendations on where to get started in ASP.NET?  I > worked with ASP traditional years back, but have been entirely CF since.  Now I > am being drug kicking back into the ASP world and have t

RE: cfmx service question

2004-06-25 Thread Tony Weeg
thanks jochem, will do, and actually, have my network admin do it ;) thanks again! tw -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 12:27 PM To: CF-Talk Subject: Re: cfmx service question Tony Weeg wrote: > need to write a csv file to

Re: WOT: Getting started with ASP.NET

2004-06-25 Thread Ray Champagne
I would be interested in this too.  Looks like I will HAVE to go the M$ route for some projects, as much as I hate it, concurrent with writing CF code for others.  YUck! Ray At 12:23 PM 6/25/2004, you wrote: >Does anybody have any recommendations on where to get started in ASP.NET?  I >worked w

Re: OT: Measure Application Bandwidth

2004-06-25 Thread Brandon Harper
Chris, Ahh, so you want something on the client side.  Check out NetStat Live by AnalogX: http://www.analogx.com/contents/download/network/nsl.htm - Brandon On Fri, 25 Jun 2004 11:23:08 -0500, Chris McGrath <[EMAIL PROTECTED]> wrote: > > It's an http based coldfusion application. Basically wha

WOT: Getting started with ASP.NET

2004-06-25 Thread Jeff Chastain
Does anybody have any recommendations on where to get started in ASP.NET?  I worked with ASP traditional years back, but have been entirely CF since.  Now I am being drug kicking back into the ASP world and have to immediately understand .NET and be able to write decent code. So anybody have any s

Re: cfmx service question

2004-06-25 Thread Jochem van Dieten
Tony Weeg wrote: > need to write a csv file to a network shared drive. > > getting access denied due to cfmx service running under local system account What I would do is: - create a normal user account on the domain - restrict that account to logging in on the webserver and the target server -

Re: OT: Measure Application Bandwidth

2004-06-25 Thread Chris McGrath
It's an http based coldfusion application. Basically what I am looking for is something I can put on a users machine and track how much bandwidth they use while they use the application. > This is a multi-part message in MIME format. > > > Chris McGrath wrote: > > > > I am in search of a tool

RE: cfmx service question

2004-06-25 Thread Tony Weeg
need to write a csv file to a network shared drive. getting access denied due to cfmx service running under local system account :) me -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 12:06 PM To: CF-Talk Subject: Re: cfmx service questio

RE: Image Issue

2004-06-25 Thread Douglas.Knudsen
you can also look at cffile.contenttype and cffile.contentsubtype for mimetype stuffs.  Better than the extension. hmm...how does CF determine this though?  anyone? Doug -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 12:04 PM To: CF-Talk Sub

RE: Image Issue

2004-06-25 Thread Greg.Morphis
I think what he means is there a way to check for the existence of that file FileExists -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 10:55 AM To: CF-Talk Subject: RE: Image Issue > -Original Message- > From: Milan Mushran [mailto:[

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread cf coder
thank you guys for your help. Alistair, I now see why this is not allowed or not recommended. Given that this is not possible, is it possible to open the file that's sitting on the server. I've changed the cfcontent deletefile attribute to 'no'        deletefile="no">    When a user hits on

Re: cfmx service question

2004-06-25 Thread Jochem van Dieten
Tony Weeg wrote: > what are the implications of changing how the service logs in? It gets different permissions :-) > if I wanted to change it from local system to lets say, a network admin > acct? I think others have sufficiently explained why this usually is not a good idea. So maybe it is a

Re: how to open an attached file in its own application (ms-word, excel etc).. please read

2004-06-25 Thread cf coder
thank you guys for your help. Alistair, I now see why this is not allowed or not recommended. Given that this is not possible, is it possible to open the file that's sitting on the server. I've changed the cfcontent deletefile attribute to 'no'        deletefile="no">    When a user hits on

RE: cfmx service question

2004-06-25 Thread Tony Weeg
ok, thanks dave, ill talk with my networkHomey, and see what he has to say, and go from there, until them ;) later. tw -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 11:58 AM To: CF-Talk Subject: RE: cfmx service question > true...local box ad

Re: OT: Measure Application Bandwidth

2004-06-25 Thread Jochem van Dieten
Chris McGrath wrote: > > I am in search of a tool that will allow me to measure how much > bandwidth an application uses per user(average). What sort of application? If you mean a HTTP based application just get it from your webserver logfiles. If you mean something else, please elaborate. Jo

  1   2   >