ColdFusion Hosts

2009-02-11 Thread Robert Bailey

I am trying to find a decent CF8 hosting company that offers SQL Server.
The company I am working with now (remotely) does not have a dev server, 
so I am looking for something that is going to have very little traffic, 
simply just allowing him to review. No email is needed, etc

Thanks!

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319211
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Hosting

2009-02-11 Thread Robert Bailey

I am trying to find a decent CF8 hosting company that offers SQL Server.
The company I am working with now (remotely) does not have a dev server, so I 
am looking for something that is going to have very little traffic, simply just 
allowing him to review. My current host does not offer CF at all, just .NET and 
SQL Server 2005.
No email is needed, etc

Thanks!



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319213
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cffile uploads and Load balancing

2009-01-20 Thread Robert Bailey
We always used a shared network directory when saving uploads when using 
load balancing, not sure if that would make any difference or not, 
though. It was always the rule of thumb

Thanks!
Robert Bailey
210.748.2363



Richard Steele wrote:
 We are getting an HTTP 503 Upload Error when using cffile and uploading 
 multiple files from one computer and load balancing. Without load balancing 
 it's not a problem. What might be going on here? 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318262
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to wait in CF?

2009-01-06 Thread Robert Bailey
objSleep = createObject(java, java.lang.Thread);
objSleep.sleep(1000);


Thanks!
Robert Bailey
210.748.2363


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317486
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to wait in CF?

2009-01-06 Thread Robert Bailey
Was not sure if he was using CF8 or not as can use cfthread 
action=sleep as well


Thanks!
Robert Bailey
210.748.2363



Raymond Camden wrote:
 sleep()

 cfset sleep(1000)


 On Tue, Jan 6, 2009 at 7:16 PM, Robert Bailey cft...@tropicalbean.com wrote:
   
 objSleep = createObject(java, java.lang.Thread);
 objSleep.sleep(1000);


 Thanks!
 Robert Bailey
 210.748.2363



 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317491
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to loop through formfields in a component?

2008-12-29 Thread Robert Bailey
Just pass the form as a struct variable, which is what the form is to 
begin with, and you can loop through it using the same code (with little 
changes) that you already have.

Thanks!
Robert Bailey
210.748.2363



Rick Faircloth wrote:
 I have this code that I've kept in my .cfm file
 to process images.  The form has an image field that
 can be cloned via jQuery, so I don't know before a form
 is submitted how many fildfields it will have.  Therefore,
 I have to loop through the fieldnames and process the fields
 named a certain way to specify images to be processed.

 I kept this code in the form's .cfm file, because I wasn't
 sure what to loop...in this code I loop through the form
 with collection=#form#.

 Would I loop through collection=#arguments# once the form
 variables are passed to the component via argumentCollection?

 Or am I better off keeping this code in the .cfm?

 Thanks,

 Rick

 Here's the code:

 cfloop collection=#form# item=fieldname
   
  cfset form.rental_photo_original=
  cfset form.rental_photo_w200=
  cfset form.rental_photo_w500=
   
  cfif left(#fieldname#, 5) eq image
   
   cffile action=upload filefield=#fieldname#
 destination=e:\inetpub\webroot\fortstewart\user_images
accept=image/jpg, image/pjpg, image/jpeg, image/pjpeg 
 nameconflict=makeunique


 etc...


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317258
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: spam form submission getting past server side validation

2008-12-23 Thread Robert Bailey
Use Captcha

http://www.captcha.net/

Thanks!
Robert Bailey
210.748.2363



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317119
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: problem to diplay results horizontally

2008-12-22 Thread Robert Bailey
Try this
Always works for me


..ul{   
margin: 0;
padding: 0;
cursor: default;
list-style-type: none;
display: inline;
}
..li{
display: table-cell;
position: relative;
padding: 2px 6px;
display:inline;
}

Thanks!
Robert Bailey
210.748.2363


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317068
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: problem to diplay results horizontally

2008-12-22 Thread Robert Bailey
And for the break, use the MOD operator and start your new list


Thanks!
Robert Bailey
210.748.2363


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317069
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: problem to diplay results horizontally

2008-12-22 Thread Robert Bailey
should be

Thanks!
Robert Bailey
210.748.2363



Robert Bailey wrote:
 Try this
 Always works for me


 ..ul{   
 margin: 0;
 padding: 0;
 cursor: default;
 list-style-type: none;
 display: inline;
 }
 ..li{
 display: table-cell;
 position: relative;
 padding: 2px 6px;
 display:inline;
 }

 Thanks!
 Robert Bailey
 210.748.2363


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:317070
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Slightly OT - JVM memory usage

2008-12-18 Thread Robert Bailey
Are you using a lot of CFC's? Maybe you are not varring

I like to use Bea's JRockit, but it is hard to get a hold of it unless 
you downloaded if before they took it off the site. It is still included 
in Weblogic (can download a trial). If you have CF Enterprise, you could 
deploy it as an ear/war and then run a stress test on it and watch what 
it does.

My two cents

Thanks!
Robert Bailey



Craigsell wrote:
 We've been having a problem with our cfmx7 server.  Something is grabbing all 
 the memory and refusing to release it.  The memory just spikes right up and 
 sticks.  The only way we have been able to fix this is to restart.  We are 
 trying to use FusionReactor to figure out the cause but so far 
 unsuccessfully.  There are a lot of developers and code on this box any one 
 of which could be causing the problem.

 Does anyone know of a tool we can use to show memory usage versus thread ?  
 If we can isolate the thread, then we stand a chance of finding the cause.

 Warren Koch

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316904
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Simply Amin Panel

2008-12-18 Thread Robert Bailey
It looks like you are inserting a new row, and when you do the cfoutput 
for the query, you are displaying both.

Try using an update, pass the primary key in the form to update the 
correct row

Thanks!
Robert Bailey



Steve LaBadie wrote:
 I created a simple (I thought) admin panel to update specific text on a
 page. But to my surprise when I update the text it adds it at the end
 instead of replacing the existing text. Not sure what I need to do so it
 adds and deletes existing text.

  

 This is the panel code:

  

 cfset CurrentPage=GetFileFromPath(GetTemplatePath())

 cfif IsDefined(FORM.MM_InsertRecord) AND FORM.MM_InsertRecord EQ
 frmAddAlert

 cfquery datasource=text

 INSERT INTO alert (alert)

 VALUES (

 cfif IsDefined(FORM.alert) AND #FORM.alert# NEQ 

 '#FORM.alert#'

 cfelse

 NULL

 /cfif

 )

 /cfquery

 cflocation url=../../status1.cfm?msg=Alert+Title+added+successfully.

 /cfif

  

 form action=cfoutput#CurrentPage#/cfoutput method=post
 name=frmalert id=frmAddAlert

 textarea name=alert cols=70 rows=10 id=alert
 class=formveld/textarea

 input name=Reset type=reset id=Reset value= Reset 
 class=formveldnbsp;input name=Submit type=submit id=Submit
 value= Submit  class=formveld

  

 input type=hidden name=MM_InsertRecord value=frmAddAlert

 /form

  

  

 This is the insertion page code:

  

 cfquery name=GetAlert datasource=text

 SELECT * 

 FROM alert

 /cfquery

 cfoutput query=GetAlert#GetAlert.alert#/cfoutput

  

  

 Steve LaBadie, Web Manager

 East Stroudsburg University

 200 Prospect St.

 East Stroudsburg, Pa 18301

 570-422-3999

 http://www.esu.edu

 slaba...@po-box.esu.edu

  



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316917
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Simply Amin Panel

2008-12-18 Thread Robert Bailey
I am guessing you are not using a primary key. I think your cfif is a 
little off,

try this

cfquery datasource=text
UPDATE alert 
SET alert = cfif IsDefined(FORM.alert) AND 
len(FORM.alert)'#FORM.alert#'cfelseNULL/cfif
WHERE alert = '#FORM.alert#';
/cfquery
cflocation url=../../status1.cfm?msg=Alert+Title+added+successfully.
/cfif



Thanks!
Robert Bailey



Steve LaBadie wrote:
 Is this correct? I am not getting any errors, but the updated text is
 not showing on the page.

 cfquery datasource=text
 UPDATE alert 
 SET alert = 'cfif IsDefined(FORM.alert) AND #FORM.alert# NEQ '
 WHERE alert = '#FORM.alert#';
 cfelse
 NULL
 /cfif
 /cfquery
 cflocation url=../../status1.cfm?msg=Alert+Title+added+successfully.
 /cfif

 Steve LaBadie, Web Manager
 East Stroudsburg University
 200 Prospect St.
 East Stroudsburg, Pa 18301
 570-422-3999
 http://www.esu.edu
 slaba...@po-box.esu.edu
 -Original Message-
 From: Ravi Gehlot [mailto:r...@ravigehlot.net] 
 Sent: Thursday, December 18, 2008 1:59 PM
 To: cf-talk
 Subject: Re: Simply Amin Panel

 Hello Steve,

 You want to update and not insert if you want to replace the text.

 Good Luck,
 Ravi Gehlot.

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316922
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Simply Amin Panel

2008-12-18 Thread Robert Bailey
or param your var

Makes it cleaner to read too


cfparam name=form.alert default=

cfquery datasource=text
UPDATE alert SET alert = cfif 
len(FORM.alert)'#FORM.alert#'cfelseNULL/cfif
WHERE alert = '#FORM.alert#';
/cfquery
cflocation url=../../status1.cfm?msg=Alert+Title+added+successfully.
/cfif

Thanks!
Robert Bailey



Steve LaBadie wrote:
 Is this correct? I am not getting any errors, but the updated text is
 not showing on the page.

 cfquery datasource=text
 UPDATE alert 
 SET alert = 'cfif IsDefined(FORM.alert) AND #FORM.alert# NEQ '
 WHERE alert = '#FORM.alert#';
 cfelse
 NULL
 /cfif
 /cfquery
 cflocation url=../../status1.cfm?msg=Alert+Title+added+successfully.
 /cfif

 Steve LaBadie, Web Manager
 East Stroudsburg University
 200 Prospect St.
 East Stroudsburg, Pa 18301
 570-422-3999
 http://www.esu.edu
 slaba...@po-box.esu.edu
 -Original Message-
 From: Ravi Gehlot [mailto:r...@ravigehlot.net] 
 Sent: Thursday, December 18, 2008 1:59 PM
 To: cf-talk
 Subject: Re: Simply Amin Panel

 Hello Steve,

 You want to update and not insert if you want to replace the text.

 Good Luck,
 Ravi Gehlot.

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316924
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Simply Amin Panel

2008-12-18 Thread Robert Bailey
Then add the primary key to your form (as a hidden field) and you can 
update like this

cfquery datasource=text
UPDATE alert 
SET alert = '#FORM.alert#'
WHERE alertID = #FORM.alertID#;
/cfquery


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316927
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Simply Amin Panel

2008-12-18 Thread Robert Bailey
But it seems like what he is doing is if the form value is blank, he 
wants to make the database value null, not skip processing.

Thanks!
Robert Bailey



Ravi Gehlot wrote:
 Hello Steve,

 Set your table to accept NULL and wrap your cfquery around with a 
 cfif. This way, you will only run the query if you need to. You will 
 save unnecessary trips to the database if there is no value being passed 
 by the form variable.

 Example:

 cfparam name=FORM.alert default= /
 cfif len(FORM.alert)
 cfquery name=qryUpdate datasource=text
   update alert set
  alert = '#FORM.alert#'
   where alert = '#FORM.alert#'
 /cfquery
 cflocation url=../../status1.cfm?msg=succeed.
 cfelse
 cflocation url=../../status1.cfm?msg=fail.
 /cfif
  
 Also, make sure your method is set to POST on your form in order for the 
 form variables to be passed correctly.

 Also, your table will not update if alert is not equal to FORM.alert.

 Ravi Gehlot.

   

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316929
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Simply Amin Panel

2008-12-18 Thread Robert Bailey
Ravi,

He can use an empty string '' if he does not want to use a NULL.

Your suggestion, to set the database to default to NULL would only apply 
if he was doing an INSERT.

Now think about this

What if the alert (in the database) was Help Me

Now he is on his form, he deletes help me to be empty in the text field, 
and he wants this change to be reflected in the database.

With what you are suggesting, it will remain Help Me if he wipes it 
out of the text field (or whatever he is using) since it would not update.

Thanks!
Robert Bailey



Ravi Gehlot wrote:
 Hello Robert,

 I mentioned that he set the value on the database side to default to 
 NULL so even if nothing is passed it defaults to NULL. It is also a good 
 practice to default the value to NULL since NULL has no value/spaces and 
 it is less likely to cause an error.

 Thanks,
 Ravi Gehlot.



 Robert Bailey wrote:
   
 But it seems like what he is doing is if the form value is blank, he 
 wants to make the database value null, not skip processing.

 Thanks!
 Robert Bailey

   
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316932
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: WDDX Future

2005-02-17 Thread Robert Bailey
 1) Are you using WDDX?

I work with it, other developers here use it all the time, I stick to
straight XML for the most part
 
2) If so, how are you using it, which languages (and versions) are you
using
it with (CF, JS, PHP, et al.)?

CF, JS

3) Are you limited by the current version of the WDDX SDK?

No

4) If so, what features would you like to see included?
 
5) Should the WDDX community effort be revived and would you be willing
to
 actively help in this community effort to expand WDDX's capabilities?

It would depend on what you are pushing; XML really does all I need and
more.

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195217
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Plum vs Adalon?

2005-02-17 Thread Robert Bailey
It really does not take that much to get plum. I downloaded it
yesterday and I installed it here on my local machine, and I had no
problems and it was pretty easy to get running, adding new modules,
etc. I am actually going to recommend it to a non profit group I do
some work for on the side. It is good for what it is worth, but you are
not going to understand that unless you download it and install it, and
take the time to try to understand what it does. 

Now I am sure (100 percent positive) that I do not know all that it can
do, and I will take a look at the docs more in the next week or two, but
getting it up and running and understanding the basics is fairly easy. 

Good job on that Adam. It looks great!



Robert Bailey
Internal Systems
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com
 

-Original Message-
From: Calvin Ward [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 17, 2005 1:16 PM
To: CF-Talk
Subject: RE: Plum vs Adalon?

I can imagine that it would be tough for folks to commit to reading 400
pages of documentation to 'get' Plum :P

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 17, 2005 1:04 PM
To: CF-Talk
Subject: RE: Plum vs Adalon?

 But do take the time to really look through Plum's 
 documentation to see all that it *can* do for you.
 
 If you don't have the time to download and install Plum, you 
 can view Plum's documentation online:
 
 http://www.productivityenhancement.com/support/plumhelp/plumhelp.htm

One nice thing about Adalon and other tools is that there is an
abundance of
tutorial/videos online so people can view the what can x do for you
without installing it, etc... do you guys have anything like that coming
out? I bet that would be helpful in at least getting people to look.. I
know
a lot of us don't like to weed through documentation :-)

Mike








~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195240
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Plum vs Adalon?

2005-02-17 Thread Robert Bailey
I second that one, I have never had a problem finding any errors in any
FB code I have written. Usually the error or the debug is more then
enough.

As for maintenance, it depends on if you inherited the site after some
@*^$ got finished applying his new knowledge from ColdFusion for
Dummies and figured they should write the app in FB because they heard
about it on some website, heh.

Then the problems come in :)

We can go on about that one


Robert Bailey
Internal Systems
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com
 

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 17, 2005 1:24 PM
To: CF-Talk
Subject: RE: Plum vs Adalon?

 From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
 What bugs me with FB is that it takes hours just to figure 
 out in WHICH %$/? template is the piece of code you need to 
 modify. So if maintenance easiness was the concern, they 
 totally missed the point.

This surprises me as maintenance in FB is much easier as far as I am
concerned. If you have proper error/exception handling in place as well
as a
properly structured FB app, finding out where an issue is takes about 2
seconds.






~|
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 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195242
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Form Error

2005-02-17 Thread Robert Bailey
Oh, by the way, I found the fix for this error. It is a problem in IE
5-5.5, so that Sun states.

Usually happens when they are using this browser and the encoding is not
defined in the form, and they are sending large chunks of data. 

I do not completely understand it, they really did not go into too much
detail, but FYI



Robert Bailey
Internal Systems
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com
 

-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 16, 2005 11:05 AM
To: CF-Talk
Subject: Form Error

Anyone ever seen this error:

500 Corrupt form data: no leading boundary: POST
/ENG/Recruiters/submittodepartment_confirm.cfm?szReturnTo=History_Parser
szOrderID=844szSearchType=CacheszStart=0szDepartmentID=0 HTTP/1.1 !=
-7d526118201a6


Robert Bailey
Internal Systems
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com






~|
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 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195243
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Form Error

2005-02-16 Thread Robert Bailey
Anyone ever seen this error:

500 Corrupt form data: no leading boundary: POST
/ENG/Recruiters/submittodepartment_confirm.cfm?szReturnTo=History_Parser
szOrderID=844szSearchType=CacheszStart=0szDepartmentID=0 HTTP/1.1 !=
-7d526118201a6


Robert Bailey
Internal Systems
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com


~|
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 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:194984
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Plum V1.0 Released!

2005-02-16 Thread Robert Bailey
That is pretty impressive


Robert Bailey
Internal Systems
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com
 
-Original Message-
From: Adam Churvis [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 16, 2005 12:48 PM
To: CF-Talk
Subject: Plum V1.0 Released!

Plum V1.0 Has Been Released

Productivity Enhancement has released its new *free* product, Plum,
which
combines a code generator with a comprehensive application framework and
an
effective rapid development methodology. Plum can build a complete
website
with full administrative control over a large relational database in a
matter of minutes, and building custom business logic and workflows on
top
of the Plum Framework is simple and straightforward.

You can download Plum here:
http://www.productivityenhancement.com/plum/DownloadPlum.cfm

Here is a more complete list of what Plum can do:
http://www.productivityenhancement.com/plum/WhatPlumCanDo.cfm

Read the CFDJ article about Plum here:
http://sys-con.com/story/?storyid=48233DE=1

Read FusionAuthority's review of Plum here:
http://www.fusionauthority.com/Article.cfm/ArticleID:4378

Read FusionAuthority's interview with us here:
http://www.fusionauthority.com/Article.cfm/ArticleID:4377

Please use our support system for all your support needs:
http://www.productivityenhancement.com/support

Tell us what you like and don't like on the Plum Discussion List:
http://www.productivityenhancement.com/support/DiscussionListsForm.cfm

We sincerely hope you like Plum! :)

Respectfully,

Adam Phillip Churvis
Member of Team Macromedia
http://www.ProductivityEnhancement.com

Download Plum and other cool development tools,
and get advanced intensive Master-level training:

* C#  ASP.NET for ColdFusion Developers
* ColdFusion MX Master Class
* Advanced Development with CFMX and SQL Server 2000




~|
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 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195039
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Suggestions for writing a calendar app

2005-02-08 Thread Robert Bailey
http://cfopen.org/projects/coldcalendar/

decent place to start as well, and open source/free


Robert Bailey
Internal Systems
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com
 

-Original Message-
From: Mark Smyth [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 08, 2005 12:04 PM
To: CF-Talk
Subject: RE: Suggestions for writing a calendar app

This could be handy (depending on the type of calender you want) if you
want
to record events etc

http://www.infusiontechnology.com/web/products/handler.cfm?event=Product
View
Changedproduct=calendarInfusion

Theres a free open source version and its cfc based
hth
mark
-Original Message-
From: Damien McKenna [mailto:[EMAIL PROTECTED] 
Sent: 08 February 2005 16:59
To: CF-Talk
Subject: Suggestions for writing a calendar app

I need to write calendaring functionality into an existing system and
was
wondering if anyone had suggestions for CFCs or UDFs that might help?
Thanks.
 
--
Damien McKenna - Web Developer - [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/
http://www.thelimucompany.com/  - 407-804-1014 #include stdjoke.h
 






~|
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 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193667
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Suggestions for writing a calendar app

2005-02-08 Thread Robert Bailey
You beat me to it :)


Robert Bailey
Internal Systems
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com
 

-Original Message-
From: Ian Winter [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, February 08, 2005 12:11 PM
To: CF-Talk
Subject: Re: Suggestions for writing a calendar app

Have a look on CFOpen.org, I seem to recall a couple of calendars on
there.

Ian


On Tue, 8 Feb 2005 11:58:55 -0500, Damien McKenna
[EMAIL PROTECTED] wrote:
 I need to write calendaring functionality into an existing system and
 was wondering if anyone had suggestions for CFCs or UDFs that might
 help?  Thanks.
 
 --
 Damien McKenna - Web Developer - [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 The Limu Company - http://www.thelimucompany.com/
 http://www.thelimucompany.com/  - 407-804-1014
 #include stdjoke.h
 
 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193668
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: SQL Triggers

2005-01-11 Thread Robert Bailey
Thanks Tony


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 10, 2005 7:40 PM
To: CF-Talk
Subject: RE: SQL Triggers

I took the liberty of rewriting your trigger for you. Just a hint, when
posting a question like this, include the table create statements if you
can. It makes writing the answer code easier (and in most cases
correct).

Remember that in triggers you have the inserted and the deleted tables.
You
can join them with any other tables in the database, so you don't have
to do
select statements to get the values. This also makes the trigger handle
multiple inserts / updates. Remember that trigger in SQL Server one get
executed once for the transaction. So in order to update multiple rows
you
have to use a LOOP, CURSOR, or know how to write some AWESOME SQL ;).

I also remember that UPDATE can use the FROM operator to update multiple
rows. Thus your trigger can be rewritten into just one little UPDATE
statemenet. How cute and compact. :P


CREATE TRIGGER dbo.MyTest ON dbo.UserTime
FOR INSERT
AS

UPDATE ProjectCosts
SET
InternalCost = ProjectCosts.InternalCost + (UR.UserRate *
i.ActualHours),
ActualHours = ProjectCosts.ActualHours + i.ActualHours
FROM
Orders
INNER JOIN inserted i
ON Orders.OrderID = i.OrderID
INNER JOIN UserRates UR
ON i.UserID = UR.UserID






-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 10, 2005 7:14 PM
To: CF-Talk
Subject: SQL Triggers

A little rusty at the triggers I see, but here is what I got:

CREATE TRIGGER dbo.MyTest ON dbo.UserTime AFTER INSERT  AS

DECLARE @UserTimeProjID Int , @OrderProjID Int, @InternalCostAdd
Int,@ActualHours Int

Select @UserTimeProjID, @OrderProjID, @InternalCostAdd,@ActualHours 

(

SELECTUT.ProjectID, Orders.ProjectID, UR.UserRate * UT.ActualHours ,
UT.ActualHours
FROM Orders INNER JOIN
  UserTime UT ON Orders.OrderID = UT.OrderID INNER
JOIN
  UserRates UR ON UT.UserID = UR.UserID AND
UT.UserTimeID = @@IDENTITY

)

UPDATE ProjectCosts
SET InternalCost = ProjectCosts.InternalCost + @InternalCostAdd,
ActualHours = ProjectCosts.ActualHours + @ActualHours 
WHERE ProjectID = @UserTimeProjID
OR ProjectID = @OrderProjID
go


I am not sure if the @@identity works for the inserted row and if my
select statement is correct. Any pointers?

Robert Bailey
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com






~|
Protect your mail server with built in anti-virus protection. It's not only 
good for you, it's good for everybody.
http://www.houseoffusion.com/banners/view.cfm?bannerid=39

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189900
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Submitting a Form through email

2005-01-10 Thread Robert Bailey
Try using the method get and see if that works. My understanding is that
most, if not all, email clients will block form posts from an email. 


 Robert Bailey
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com
 
-Original Message-
From: Chad McCue [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 10, 2005 8:41 AM
To: CF-Talk
Subject: Re: Submitting a Form through email

form name=myform
action=#request.sitename#/index.cfm?Fuseaction=Reply90dayemail
method=post
  input type=hidden name=BuyersID value=#CurrAcctID#
  table border=0 cellpadding=0 cellspacing=0 width=100%
   tr
td
 font face=Arial, Helvetica, sans-serif size=2
  This email is to let you know that your account on has been
inactive
for 90 days.
  brbr
  Please take a few seconds to answer the following questions.
 /font
/td
   /tr
   trtdnbsp;/td/tr
   tr
td
 table border=0 cellpadding=0 cellspacing=0 width=100%
  Tr
   td valign=top
font face=Arial, Helvetica, sans-serif size=2
 1. Would you like to re-register for another 90-days?
/font
   /td
   td width=5/td
   td
input type=radio name=Reregister value=1 checkedfont
face=Arial, Helvetica, sans-serif size=2Yes/font
nbsp;nbsp;
input type=radio name=Reregister value=0font
face=Arial,
Helvetica, sans-serif size=2No/font
   /td
  /Tr
 /table
/td
   /tr
   trtdnbsp;/td/tr
   tr
td align=center
 input type=Submit value=Send Response
/td
   /tr
  /table
  /fORM
- Original Message - 
From: Mark Drew [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Monday, January 10, 2005 8:37 AM
Subject: Re: Submitting a Form through email


 What is the code in the html?

 MD


 On Mon, 10 Jan 2005 08:14:17 -0500, Chad McCue
 [EMAIL PROTECTED] wrote:
  I have an email being sent out to expired accounts that is a small
form
to see if they would like to renew their account. The form that is in
the
email contains two questions and a hidden field carrying their acctID. I
am
having a problem submitting these fields, when the account receives the
email and answers the question and clicks the Submit button they land
on
the correct page but my form variables are undefined. Any ideas?
 
 

 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189798
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Building a SQL WHERE clause

2005-01-10 Thread Robert Bailey
The '' does not help in your query, that are wrapped around your where
clause:

SELECT service_population,agency,city,state,salary_status FROM
internships WHERE service_population=''Children'' ORDER BY agency ASC


Not sure how you are passing them in the form, but you want it to read:

SELECT service_population,agency,city,state,salary_status FROM
internships WHERE service_population='Children' ORDER BY agency ASC




Robert Bailey
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com
 

-Original Message-
From: Daniel Kessler [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 10, 2005 1:10 PM
To: CF-Talk
Subject: Building a SQL WHERE clause

I'm doing my first Search utility:
http://hhp.umd.edu/studentservices/internships.cfm

I'm trying to build a WHERE clause in CF where it check to see if a 
form field is part of a search and if it is, then it builds into the 
WHERE string.  Unfortunatley when I do, I get the error, SQL command 
doesn't end properly after clicking Search.

Here's some of the code:

cfif structKeyExists(Form,service_population) OR 
structKeyExists(Form,agency) OR structKeyExists(Form,city) OR 
structKeyExists(Form,state) OR 
structKeyExists(Form,salary_status)

cfoutput
  --- setup a search ---
cfset find_text = WHERE 
cfif structKeyExists(Form,service_population)
   !--- cfset find_text =WHERE
service_population='children'---
   cfset find_text 
=#find_text#service_population='#Form.service_population#'
/cfif

cfquery name=getSearchItem datasource=dpch
   SELECT service_population,agency,city,state,salary_status
   FROM internships
   #find_text#
   ORDER BY agency ASC
/cfquery

/cfoutput
cfelse
  --- setup some presets ---
cfset service_population = ''
cfset agency = ''
cfset city = ''
cfset state = ''
cfset salary_status = ''

/cfif


Also, if someone can just point me to a tutorial on this, then that'd be
fine.
Really, any help would be appreciated.

-- 
Daniel Kessler

Department of Public and Community Health
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
301-405-2545 Phone
www.phi.umd.edu



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189826
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


SQL Triggers

2005-01-10 Thread Robert Bailey
A little rusty at the triggers I see, but here is what I got:

CREATE TRIGGER dbo.MyTest ON dbo.UserTime AFTER INSERT  AS

DECLARE @UserTimeProjID Int , @OrderProjID Int, @InternalCostAdd
Int,@ActualHours Int

Select @UserTimeProjID, @OrderProjID, @InternalCostAdd,@ActualHours 

(

SELECTUT.ProjectID, Orders.ProjectID, UR.UserRate * UT.ActualHours ,
UT.ActualHours
FROM Orders INNER JOIN
  UserTime UT ON Orders.OrderID = UT.OrderID INNER
JOIN
  UserRates UR ON UT.UserID = UR.UserID AND
UT.UserTimeID = @@IDENTITY

)

UPDATE ProjectCosts
SET InternalCost = ProjectCosts.InternalCost + @InternalCostAdd,
ActualHours = ProjectCosts.ActualHours + @ActualHours 
WHERE ProjectID = @UserTimeProjID
OR ProjectID = @OrderProjID
go


I am not sure if the @@identity works for the inserted row and if my
select statement is correct. Any pointers?

Robert Bailey
Software Engineer
813-230-9967 \\ mobile
[EMAIL PROTECTED]
www.recruitmax.com


~|
Protect your mail server with built in anti-virus protection. It's not only 
good for you, it's good for everybody.
http://www.houseoffusion.com/banners/view.cfm?bannerid=39

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:189869
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


What is the cause of this error?

2004-04-16 Thread Robert Bailey
I have an application, simple form with a simple MS SQL update. Was working
fine, checked on it today and got the following error:

The system has attempted to use an undefined value, which usually indicates
a programming error, either in your code or some system code. 
Null Pointers are another name for undefined values.

I have never seen this at all. Any ideas as to what may be the cause?
Thanks!
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: What is the cause of this error?

2004-04-16 Thread Robert Bailey
Well, ummm, never mind, now it is not doing it and nothing has changed.

-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 16, 2004 12:34 PM
To: CF-Talk
Subject: What is the cause of this error?

I have an application, simple form with a simple MS SQL update. Was working
fine, checked on it today and got the following error:

The system has attempted to use an undefined value, which usually indicates
a programming error, either in your code or some system code. 
Null Pointers are another name for undefined values.

I have never seen this at all. Any ideas as to what may be the cause?
Thanks!
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: What is the cause of this error?

2004-04-16 Thread Robert Bailey
Nope, no CFQueryParams at all, was more like this:

Update table
Set this = 'that',
this2 = 'that2'
Where myid = id

VERY Simple update. Oh well, not doing it now, so can not complain :)

-Original Message-
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] 
Sent: Friday, April 16, 2004 12:52 PM
To: CF-Talk
Subject: Re: What is the cause of this error?

You are probably using cfqueryparam and defining a datatype but not 
clarifying what to do if the form value is empty. null=#yesnoformat(not 
len(trim(form.field)))# is an option I use (per a suggestion from this 
list, thank you very much).

The other option is that your SQL table field does not allow null 
(empty) values.

Hope this helps.

Cutter

Robert Bailey wrote:
 I have an application, simple form with a simple MS SQL update. Was
working
 fine, checked on it today and got the following error:
 
 The system has attempted to use an undefined value, which usually
indicates
 a programming error, either in your code or some system code.
 Null Pointers are another name for undefined values.
 
 I have never seen this at all. Any ideas as to what may be the cause?
 Thanks!

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Timeout connecting to access DB

2004-04-14 Thread Robert Bailey
We have had that problem quite a bit as well. Same set up. We tried both the
standard install of CFMX and with JRUN with little luck. We are completely
updated with all the patches from MM, even tried the garbage collecting fix
on the MacroMedia website. Anyone knows how to correct this I would love to
know as well. We are actually going to start turning back about 45 servers
to CF5, which kinda sucks. So about 80 percent of out CFMX servers are going
back to CF5, what a sad day. :(

-Original Message-
From: cfhelp [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 14, 2004 9:28 AM
To: CF-Talk
Subject: Timeout connecting to access DB

I just recently upgraded the Servers, Windows 2k and CF5.0 to Win2k3 and
CFMX 6.1.

 
The system is runs great for a few days and then all Access Database's start
to timeout. This does not seem to affect any other system on the server just
Access ODNC connections.

 
OS is fully patched

 
Rick
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Timeout connecting to access DB

2004-04-14 Thread Robert Bailey
That is what we heard when we contacted them about these issues about 3
months ago, lol.


-Original Message-
From: Thomas Chiverton [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 14, 2004 12:08 PM
To: CF-Talk
Subject: Re: Timeout connecting to access DB

On Wednesday 14 Apr 2004 15:56 pm, Robert Bailey wrote:
 We have had that problem quite a bit as well. Same set up. 

There are apperently updated DB drivers coming soon from MM. Don't give up 
yet !

-- 
Tom Chiverton 
Advanced ColdFusion Programmer

Tel: +44(0)1749 834997
email: [EMAIL PROTECTED]
BlueFinger Limited
Underwood Business Park
Wookey Hole Road, WELLS. BA5 1AF
Tel: +44 (0)1749 834900
Fax: +44 (0)1749 834901
web: www.bluefinger.com
Company Reg No: 4209395 Registered Office: 2 Temple Back East, Temple
Quay, BRISTOL. BS1 6EG.
*** This E-mail contains confidential information for the addressee
only. If you are not the intended recipient, please notify us
immediately. You should not use, disclose, distribute or copy this
communication if received in error. No binding contract will result from
this e-mail until such time as a written document is signed on behalf of
the company. BlueFinger Limited cannot accept responsibility for the
completeness or accuracy of this message as it has been transmitted over
public networks.***
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Timeout connecting to access DB

2004-04-14 Thread Robert Bailey
Which one? We have installed all the patches current as of about a week ago,
and nothing has changed, problems are still going on with any access
databases.

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 14, 2004 12:19 PM
To: CF-Talk
Subject: RE: Timeout connecting to access DB

  We have had that problem quite a bit as well. Same set up. 
 
 There are apperently updated DB drivers coming soon from MM. 
 Don't give up yet !

They have recently been released.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: 202-797-5496
fax: 202-797-5444
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Timeout connecting to access DB

2004-04-14 Thread Robert Bailey
Yeah, we tried that one, and did not help, made the problem not happen 10
times a day down to like 2 or 3 times a day. 

-Original Message-
From: Nathan C. Smith [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 14, 2004 12:23 PM
To: CF-Talk
Subject: RE: Timeout connecting to access DB

Here is the link to the MM hotfix list
:'http://www.macromedia.com/support/coldfusion/ts/documents/tn17883.htm#MX61
'

By OS fully patched, do you mean it was run through all the Windows update
patches?If so you may still be missing a recent MDAC update, you may wish
to check that too.I can't remember off hand if 2.8 is the same version
that shipped with Win2k3 or not.

-Nate

Nathan SmithMcKee, Voorhees  Sease, P.L.C.515.288.3667

-Original Message-
From: cfhelp [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 14, 2004 8:28 AM
To: CF-Talk
Subject: Timeout connecting to access DB

I just recently upgraded the Servers, Windows 2k and CF5.0 to Win2k3 and
CFMX 6.1.

The system is runs great for a few days and then all Access Database's start
to timeout. This does not seem to affect any other system on the server just
Access ODNC connections.

OS is fully patched

Rick
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: SQL Query Problems

2004-04-12 Thread Robert Bailey
Yeah, it was a bad join, for some reason I just did not see it until about
10 minutes ago :)

Thanks!

Robert Bailey
Aesir Network Technologies
Direct: (727) 489-2604
Main: (903) 238-8211
Support: (903) 238-8212
Toll Free: (877) 238-8211
Fax: (903) 238-8251

-Original Message-
From: Tangorre, Michael [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 12, 2004 6:48 AM
To: CF-Talk
Subject: RE: SQL Query Problems

 I take out the or clause and use either one of those 
 product_id's I get 1 record back, this should only return 2 
 records, it returns 1 for id 7000 and 12 for 6868

Have you confirmed that only one record is returned when you use ONLY ID
7000 and only one record is returned when you use ONLY ID 6868? Start there.
If both queries individually return the right amount of records, you may
have a join issue... As in there might not be any product images, or more
than one product image with an associated ID, etc...

HTH,

Mike
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Weird: CF Debug info Firebird

2004-02-02 Thread Robert Bailey
I get debugging info on my firebird

 
Robert Bailey
Aesir Network Technologies
Direct: (214) 432-5865
Main: (903) 238-8211
Support: (903) 238-8212
Toll Free: (877) 238-8211
Fax: (903) 238-8251





From: Josh Remus [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 02, 2004 11:02 AM
To: CF-Talk
Subject: Weird: CF Debug info  Firebird

I'm just finally getting to the point where I'm using Firebird as my browser
full-time.But I just realized the weirdest thing

When I turn on debugging for a page, I see the debug info in IE, but not in
Firebird on identical pages!

If I view source on both browsers, I see the closing HTML tag, but on
Firebird that's as far as it goes, while on IE it continues onto the debug
info.

I can understand why firebird thinks it's done after the closing HTML tag,
but is there a way to still see this debug info in there? Thanks for any
help.
---
Josh Remus
Network Manager 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




HTTP_REFERER

2004-01-25 Thread Robert Bailey
On every one of our CFMX servers(18 of them!), when using this:
CFOUTPUT#CGI.HTTP_REFERER#/CFOUTPUT
It never returns anything, just an empty string. Anyone have this problem at
all?

CFMX 6.01 (latest update, some are standard install, some are installed with
JRUN), IIS 6, 2003 server
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: HTTP_REFERER

2004-01-25 Thread Robert Bailey
Yes, that was what it was. Norton is not good for everything :)




From: Matthew Walker [mailto:[EMAIL PROTECTED] 
Sent: Sunday, January 25, 2004 4:32 PM
To: CF-Talk
Subject: RE: HTTP_REFERER

I *think* Norton Internet Security also blocks them.

-Original Message-
From: cfhelp [mailto:[EMAIL PROTECTED] 
Sent: Monday, 26 January 2004 5:27 a.m.
To: CF-Talk
Subject: RE: HTTP_REFERER

I use it. 

I get an empty string when they use a Bookmark or type in the URL. If they
click a link it works. Also I believe you can turn header info off in some
browsers.

So I use a IsDefined(CGI.HTTP_REFERER) and cfif CGI.HTTP_REFERER IS NOT ''
Before outputting it.

Rick

-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED] 
Sent: Sunday, January 25, 2004 11:18 AM
To: CF-Talk
Subject: HTTP_REFERER

On every one of our CFMX servers(18 of them!), when using this:
CFOUTPUT#CGI.HTTP_REFERER#/CFOUTPUT
It never returns anything, just an empty string. Anyone have this problem at
all?

CFMX 6.01 (latest update, some are standard install, some are installed with
JRUN), IIS 6, 2003 server
_

_ 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: so what am I doing wrong?

2004-01-24 Thread Robert Bailey
you need to give it a name

 
CFQUERY name=something datasource=moteladam_moteladam_com



From: Daniel Farmer [mailto:[EMAIL PROTECTED] 
Sent: Saturday, January 24, 2004 10:31 AM
To: CF-Talk
Subject: so what am I doing wrong?

cfquery datasource=moteladam_moteladam_com
update data
set data = "" value=#form.EditorDefault#
cfsqltype=cf_sql_varchar
where nav_id = #form.nav_id#
/cfquery

ERROR

ODBC Error Code = S1104 (Invalid precision value) 

[Microsoft][ODBC Microsoft Access Driver]Invalid precision value 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




2003 server and CFMX

2004-01-24 Thread Robert Bailey
Is anyone having any problems running CFMX, either JRUN installed or default
installation as a filter? We seem to keep having problems with the ODBC
server dropping and JRUN dying on us a few times a day. We are running IIS
6, Windows 2003 server, and CFMX with the latest update. Any feedback would
be appreciated.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: 2003 server and CFMX

2004-01-24 Thread Robert Bailey
Oh, and if it helps, it is 2003 enterprise edition.



From: Robert Bailey [mailto:[EMAIL PROTECTED] 
Sent: Saturday, January 24, 2004 1:18 PM
To: CF-Talk
Subject: 2003 server and CFMX

Is anyone having any problems running CFMX, either JRUN installed or default
installation as a filter? We seem to keep having problems with the ODBC
server dropping and JRUN dying on us a few times a day. We are running IIS
6, Windows 2003 server, and CFMX with the latest update. Any feedback would
be appreciated. 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: 2003 server and CFMX

2004-01-24 Thread Robert Bailey
If they are not timing out in a timely fashion, how can I fix that? Looking
at the logs now.



From: Doug White [mailto:[EMAIL PROTECTED] 
Sent: Saturday, January 24, 2004 1:30 PM
To: CF-Talk
Subject: Re: 2003 server and CFMX

Check your error logfiles.Sounds like there are some long running
processes
that are not timing out in a timely fashion.

==
Stop spam on your domain, Anti-spam solutions
http://www.clickdoug.com/mailfilter.cfm
For hosting solutions http://www.clickdoug.com
==
Aspire to Inspire before you Retire or Expire!

- Original Message - 
From: Robert Bailey [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Saturday, January 24, 2004 12:18 PM
Subject: 2003 server and CFMX

: Is anyone having any problems running CFMX, either JRUN installed or
default
: installation as a filter? We seem to keep having problems with the ODBC
: server dropping and JRUN dying on us a few times a day. We are running IIS
: 6, Windows 2003 server, and CFMX with the latest update. Any feedback
would
: be appreciated.
:
:
: 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: 2003 server and CFMX

2004-01-24 Thread Robert Bailey
Thanks Doug. I personally know SQL very well, but these are hosted domains
and we do not have any control over the content that other developers use.





From: Doug White [mailto:[EMAIL PROTECTED] 
Sent: Saturday, January 24, 2004 4:16 PM
To: CF-Talk
Subject: Re: 2003 server and CFMX

In CF administrator, you can shorten the setting for terminating long
running
queries.You can also set the log setting to log the long running queries.

One of the biggest challenges to ColdFusion developers is to learn enough
SQL to
avoid huge queries when supporting a data driven web site.There are more
posts
on this list describing HUGE numbers of records returned from a query and
then
having to do sub-queries to actually extract the records with which to
display a
page for display in the browser. It is just not a good practice to force the
server to churn, loop, etc in the process of returning a page of data.The
effort would be better spent in learning and practicing optimized quires in
the
first place.With good indexing practices, and the right query, a page of
data
can be very fast to load and display, and make your web site hum along even
with
a large number of simultaneous users.

==
Stop spam on your domain, Anti-spam solutions
http://www.clickdoug.com/mailfilter.cfm
For hosting solutions http://www.clickdoug.com
==
Aspire to Inspire before you Retire or Expire!

- Original Message - 
From: Robert Bailey [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Saturday, January 24, 2004 12:32 PM
Subject: RE: 2003 server and CFMX

: If they are not timing out in a timely fashion, how can I fix that?
Looking
: at the logs now.
:
:
: 
:
: From: Doug White [mailto:[EMAIL PROTECTED]
: Sent: Saturday, January 24, 2004 1:30 PM
: To: CF-Talk
: Subject: Re: 2003 server and CFMX
:
:
: Check your error logfiles.Sounds like there are some long running
: processes
: that are not timing out in a timely fashion.
:
: ==
: Stop spam on your domain, Anti-spam solutions
: http://www.clickdoug.com/mailfilter.cfm
: For hosting solutions http://www.clickdoug.com
: ==
: Aspire to Inspire before you Retire or Expire!
:
: - Original Message - 
: From: Robert Bailey [EMAIL PROTECTED]
: To: CF-Talk [EMAIL PROTECTED]
: Sent: Saturday, January 24, 2004 12:18 PM
: Subject: 2003 server and CFMX
:
: : Is anyone having any problems running CFMX, either JRUN installed or
: default
: : installation as a filter? We seem to keep having problems with the ODBC
: : server dropping and JRUN dying on us a few times a day. We are running
IIS
: : 6, Windows 2003 server, and CFMX with the latest update. Any feedback
: would
: : be appreciated.
: :
: :
: :
: 
:
:
: 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: 2003 server and CFMX

2004-01-24 Thread Robert Bailey
Yeah, that is what we are going to do. We actually just purchased 160 new
hosting accounts from this one webhost/developer and all the code is so
sloppy, and I am still going through the mess. I will watch the timeouts now
that I shoved it down to 60, that should do it.



From: Doug White [mailto:[EMAIL PROTECTED] 
Sent: Saturday, January 24, 2004 5:07 PM
To: CF-Talk
Subject: Re: 2003 server and CFMX

As a host, I am in a similar position.By reviewing the log files, you can
see
which application is bottlenecking things, and perhaps a polite note to the
client will encourage them to fix things.The other option is to time out
those
long running queries, and the errors he will start getting will force him to
fix
his code. :-)

==
Stop spam on your domain, Anti-spam solutions
http://www.clickdoug.com/mailfilter.cfm
For hosting solutions http://www.clickdoug.com
==
Aspire to Inspire before you Retire or Expire!

- Original Message - 
From: Robert Bailey [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Saturday, January 24, 2004 3:48 PM
Subject: RE: 2003 server and CFMX

: Thanks Doug. I personally know SQL very well, but these are hosted domains
: and we do not have any control over the content that other developers use.
:
: 
:
:
: 
:
: From: Doug White [mailto:[EMAIL PROTECTED]
: Sent: Saturday, January 24, 2004 4:16 PM
: To: CF-Talk
: Subject: Re: 2003 server and CFMX
:
:
: In CF administrator, you can shorten the setting for terminating long
: running
: queries.You can also set the log setting to log the long running
queries.
:
: One of the biggest challenges to ColdFusion developers is to learn enough
: SQL to
: avoid huge queries when supporting a data driven web site.There are more
: posts
: on this list describing HUGE numbers of records returned from a query and
: then
: having to do sub-queries to actually extract the records with which to
: display a
: page for display in the browser. It is just not a good practice to force
the
: server to churn, loop, etc in the process of returning a page of data.
The
: effort would be better spent in learning and practicing optimized quires
in
: the
: first place.With good indexing practices, and the right query, a page of
: data
: can be very fast to load and display, and make your web site hum along
even
: with
: a large number of simultaneous users.
:
: ==
: Stop spam on your domain, Anti-spam solutions
: http://www.clickdoug.com/mailfilter.cfm
: For hosting solutions http://www.clickdoug.com
: ==
: Aspire to Inspire before you Retire or Expire!
:
: - Original Message - 
: From: Robert Bailey [EMAIL PROTECTED]
: To: CF-Talk [EMAIL PROTECTED]
: Sent: Saturday, January 24, 2004 12:32 PM
: Subject: RE: 2003 server and CFMX
:
: : If they are not timing out in a timely fashion, how can I fix that?
: Looking
: : at the logs now.
: :
: :
: : 
: :
: : From: Doug White [mailto:[EMAIL PROTECTED]
: : Sent: Saturday, January 24, 2004 1:30 PM
: : To: CF-Talk
: : Subject: Re: 2003 server and CFMX
: :
: :
: : Check your error logfiles.Sounds like there are some long running
: : processes
: : that are not timing out in a timely fashion.
: :
: : ==
: : Stop spam on your domain, Anti-spam solutions
: : http://www.clickdoug.com/mailfilter.cfm
: : For hosting solutions http://www.clickdoug.com
: : ==
: : Aspire to Inspire before you Retire or Expire!
: :
: : - Original Message - 
: : From: Robert Bailey [EMAIL PROTECTED]
: : To: CF-Talk [EMAIL PROTECTED]
: : Sent: Saturday, January 24, 2004 12:18 PM
: : Subject: 2003 server and CFMX
: :
: : : Is anyone having any problems running CFMX, either JRUN installed or
: : default
: : : installation as a filter? We seem to keep having problems with the
ODBC
: : : server dropping and JRUN dying on us a few times a day. We are running
: IIS
: : : 6, Windows 2003 server, and CFMX with the latest update. Any feedback
: : would
: : : be appreciated.
: : :
: : :
: : :
: : 
: :
: :
: :
: 
:
:
: 

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Monitoring SQL server and general server performance

2004-01-23 Thread Robert Bailey
I am looking for an app that will monitor our SQL server at a minimum for
performance. Something like this product, but I am unable to really find
many things out there and not really interested in this one
http://www.tntsoftware.com/Products/EEM/
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




RE: Dealer locator

2003-08-29 Thread Robert Bailey
I have a database with the long/lat of each zipcode if you want it and
think it may help. Email me off list @ [EMAIL PROTECTED]


Robert Bailey

-Original Message-
From: Hagan, Ryan Mr (Contractor ACI) [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 29, 2003 10:54 AM
To: CF-Talk
Subject: Dealer locator


Greetings,

I'm working on a dealer locator for a manufacturing company.  The
company has about 5 dealers in each state.  I'd like to make this as
dynamic as possible, so that the company can simply use an online
interface to enter in the zip code of each dealer and have a nice little
dot appear on a US Map on their website.  This prevents me from having
to manually insert (or remove) a dot each time a dealer comes, leaves or
moves (which actually happens very often).

My obstacle, of course, is translating Lat - Long into screen / image
coordinates for my map.  Has anyone done this before or have any clues
that will help me?  As always, any help is greatly appreciated.  Thanks.


Ryan Hagan
ph: 540-731-3588


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: Anyone have this problem with CFMX?

2003-03-28 Thread Robert Bailey
I get am [empty string] for anything I return. If I do not do the trim(),
returns the XML doc perfectly fine

The value I am getting that needs to be trimmed is in a list, so I have
tried this hack:
ListGetAt(results.data, 2, , );

adding the space as a delimter, but still to no avail. Still crashes on me

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Joe Eugene [mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 12:00 AM
To: CF-Talk
Subject: RE: Anyone have this problem with CFMX?


What error are u getting?

Joe Eugene


 -Original Message-
 From: Robert Bailey [mailto:[EMAIL PROTECTED]
 Sent: Thursday, March 27, 2003 10:31 PM
 To: CF-Talk
 Subject: Anyone have this problem with CFMX?


 So been playing with some of my cfc's that kinda stopped working after
 updater 2. I can not user trim(), rjustify(), etc.

 Anyone ever have this problem? Know a work around?

 If I use any of these functions, the cfc crashes, will not run.

 I am running CFMX with updater 3, IIS5, Windows 2000 Server.

 Thanks!
 Robert Bailey




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Anyone have this problem with CFMX?

2003-03-28 Thread Robert Bailey
I can use it in my CFM pages, trying to make it reproducible, but it is
working in other CFC's, so I am not quite sure what the problem is. Without
giving all my code, let me give you the gist:

A query is made to the database, picking out the mail server. The query is
called results, has a table called data that holds the server that I need to
ping

Now this data is in the format (don't ask me why they did it this way, I
just need to work around it, ugh) 01, 192.168.1.25 or whatever, you get
the point

So now I do the following:

CFSCRIPT
server = ListGetAt(results.data, 2, ,);
/CFSCRIPT

CFRETURN trim(server) /

Empty string.

So I tried it this way:

CFSCRIPT
server = ListGetAt(results.data, 2, , );
/CFSCRIPT

CFRETURN server /

This hack does not work

And I tried this way:

CFSCRIPT
server = trim(ListGetAt(results.data, 2, ,));
/CFSCRIPT

CFRETURN server /

Pretty much I have tried many different ways, all return an empty string
through out the whole application. no idea what is happening, ugh.

I also tried writing a UDF, didn't work, I am pretty much about to give up.
Another application that I need to write in ASP and drop MX? This is the 2nd
time this month I have had to abort MX because of it's problems and move to
ASP to get what I need done. If this keeps up, not sure how much longer I
will be staying with CF. Getting a little tired of getting more then halfway
through a project and having to stop because of it's problems and moving to
ASP.


Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 7:07 AM
To: CF-Talk
Subject: Anyone have this problem with CFMX?


Robert-

I've used trim() successfully with U2 and U3 running your same config. Want
to send me your particular reproducible scenario and I'll try it out?

Thanks.

Collin Tobin
CFMX QA Engineer

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Anyone have this problem with CFMX?

2003-03-28 Thread Robert Bailey
actually it is test_server, that is just something I wrote out real quick

sorry

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Collin Tobin [mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 10:12 AM
To: CF-Talk
Subject: RE: Anyone have this problem with CFMX?


Robert-

Are you actually using server for your variable?  That's a restricted
scope. Could you try your code with another variable name?

Thanks.


Collin Tobin
CFMX QA Engineer
Macromedia®
What the web can be.(tm)

Announcing Macromedia DevNet Subscriptions
Maximize your power with our new premium software subscription for
Macromedia developers
Find out more: http://www.macromedia.com/go/devnetsubs/





-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 9:59 AM
To: CF-Talk
Subject: RE: Anyone have this problem with CFMX?


I can use it in my CFM pages, trying to make it reproducible, but it is
working in other CFC's, so I am not quite sure what the problem is. Without
giving all my code, let me give you the gist:

A query is made to the database, picking out the mail server. The query is
called results, has a table called data that holds the server that I need to
ping

Now this data is in the format (don't ask me why they did it this way, I
just need to work around it, ugh) 01, 192.168.1.25 or whatever, you get
the point

So now I do the following:

CFSCRIPT
server = ListGetAt(results.data, 2, ,);
/CFSCRIPT

CFRETURN trim(server) /

Empty string.

So I tried it this way:

CFSCRIPT
server = ListGetAt(results.data, 2, , );
/CFSCRIPT

CFRETURN server /

This hack does not work

And I tried this way:

CFSCRIPT
server = trim(ListGetAt(results.data, 2, ,));
/CFSCRIPT

CFRETURN server /

Pretty much I have tried many different ways, all return an empty string
through out the whole application. no idea what is happening, ugh.

I also tried writing a UDF, didn't work, I am pretty much about to give up.
Another application that I need to write in ASP and drop MX? This is the 2nd
time this month I have had to abort MX because of it's problems and move to
ASP to get what I need done. If this keeps up, not sure how much longer I
will be staying with CF. Getting a little tired of getting more then halfway
through a project and having to stop because of it's problems and moving to
ASP.


Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 7:07 AM
To: CF-Talk
Subject: Anyone have this problem with CFMX?


Robert-

I've used trim() successfully with U2 and U3 running your same config. Want
to send me your particular reproducible scenario and I'll try it out?

Thanks.

Collin Tobin
CFMX QA Engineer



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Anyone have this problem with CFMX?

2003-03-28 Thread Robert Bailey
Works fine:

192.168.1.25

Not sure what is the problem in this CFC. I can not show all the code, but
if you mail me off list, I can show you what is giving the problems, just do
not want to post it here.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Collin Tobin [mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 10:29 AM
To: CF-Talk
Subject: RE: Anyone have this problem with CFMX?


Robert-

Can you try this component on your server and let me know your results?

cfcomponent
cffunction name=testFunction access=public
CFSCRIPT
recordset = queryNew(serverinfo);
queryAddRow(recordset,1);
querySetCell(recordset,serverinfo,01, 192.168.1.25,1);
test_server = recordset.serverinfo;
test_server = Trim(ListGetAt(test_server,2,,));
/CFSCRIPT
cfreturn test_server
/cffunction
/cfcomponent


Collin Tobin
CFMX QA Engineer
Macromedia®
What the web can be.(tm)

Announcing Macromedia DevNet Subscriptions
Maximize your power with our new premium software subscription for
Macromedia developers
Find out more: http://www.macromedia.com/go/devnetsubs/





-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 9:59 AM
To: CF-Talk
Subject: RE: Anyone have this problem with CFMX?


I can use it in my CFM pages, trying to make it reproducible, but it is
working in other CFC's, so I am not quite sure what the problem is. Without
giving all my code, let me give you the gist:

A query is made to the database, picking out the mail server. The query is
called results, has a table called data that holds the server that I need to
ping

Now this data is in the format (don't ask me why they did it this way, I
just need to work around it, ugh) 01, 192.168.1.25 or whatever, you get
the point

So now I do the following:

CFSCRIPT
server = ListGetAt(results.data, 2, ,);
/CFSCRIPT

CFRETURN trim(server) /

Empty string.

So I tried it this way:

CFSCRIPT
server = ListGetAt(results.data, 2, , );
/CFSCRIPT

CFRETURN server /

This hack does not work

And I tried this way:

CFSCRIPT
server = trim(ListGetAt(results.data, 2, ,));
/CFSCRIPT

CFRETURN server /

Pretty much I have tried many different ways, all return an empty string
through out the whole application. no idea what is happening, ugh.

I also tried writing a UDF, didn't work, I am pretty much about to give up.
Another application that I need to write in ASP and drop MX? This is the 2nd
time this month I have had to abort MX because of it's problems and move to
ASP to get what I need done. If this keeps up, not sure how much longer I
will be staying with CF. Getting a little tired of getting more then halfway
through a project and having to stop because of it's problems and moving to
ASP.


Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Friday, March 28, 2003 7:07 AM
To: CF-Talk
Subject: Anyone have this problem with CFMX?


Robert-

I've used trim() successfully with U2 and U3 running your same config. Want
to send me your particular reproducible scenario and I'll try it out?

Thanks.

Collin Tobin
CFMX QA Engineer



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Anyone have this problem with CFMX?

2003-03-27 Thread Robert Bailey
So been playing with some of my cfc's that kinda stopped working after
updater 2. I can not user trim(), rjustify(), etc.

Anyone ever have this problem? Know a work around?

If I use any of these functions, the cfc crashes, will not run.

I am running CFMX with updater 3, IIS5, Windows 2000 Server.

Thanks!
Robert Bailey


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Scanning a Drivers License

2003-03-25 Thread Robert Bailey
Not sure if you could use a smartcard reader, which I think reads track 1
and 2, and I am pretty sure that most DL's are on these tracks except the CA
drivers license, which is on track 3.

Anyway, I have worked with magnetic card readers using Java, and it really
was not a hard task to do, with Smart Cards and credit cards anyway. You can
pick up the readers for about 80 dollars or so, at least you could about 8
months ago, the last time I worked with them.

I would contact the vendor to make sure that it will read a drivers license,
though. A good place to start would be http://www.javapos.com/index.html

If you can use the smart card readers, there are a few java and C products
out there that can get you on your way. Check out the Javapos site, thanks
Sun!, for some really good information to start with.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 10:10 AM
To: CF-Talk
Subject: RE: Scanning a Drivers License


 Hi All,

 Has anyone here done anything with interfacing with a drivers license
 scanner?

 A client of mine has made request for an application that can read a
drivers
 license mag strip. There doesn't seem to be a lot of info available on the
 web about this.


http://www.google.com/search?num=50hl=enie=UTF-8oe=UTF-8newwindow=1q=Ma
gnetic+Stripe+Readers+programming

You will need to write something in C or Java most likely

WG


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Scanning a Drivers License

2003-03-25 Thread Robert Bailey
Good question. I doubt that they are encrypted, though.

But I could be completely wrong, as I have never worked with drivers
licenses. But here is why I do not think they would be. I am originally from
MD, and when I was in MD about a year and a half ago, all the clubs and
liqueur stores had card readers that when they took your DL, they swiped it
and it displayed your age to them, ensuring that it was not fake and was
real. I would imagine this data could not be retrieved if it was encrypted
and I doubt they would make the key publicly available if it was encrypted.


Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Bosky, Dave [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 10:35 AM
To: CF-Talk
Subject: RE: Scanning a Drivers License


What about encryption? Wouldn't DL information somehow be encrypted?

Regards,

Dave Bosky
Sr. Multimedia Web Designer
Horry Telephone Cooperative, Inc.
office: (843)369-8613
[EMAIL PROTECTED]


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 10:28 AM
To: CF-Talk
Subject: RE: Scanning a Drivers License


Not sure if you could use a smartcard reader, which I think reads track 1
and 2, and I am pretty sure that most DL's are on these tracks except the CA
drivers license, which is on track 3.

Anyway, I have worked with magnetic card readers using Java, and it really
was not a hard task to do, with Smart Cards and credit cards anyway. You can
pick up the readers for about 80 dollars or so, at least you could about 8
months ago, the last time I worked with them.

I would contact the vendor to make sure that it will read a drivers license,
though. A good place to start would be http://www.javapos.com/index.html

If you can use the smart card readers, there are a few java and C products
out there that can get you on your way. Check out the Javapos site, thanks
Sun!, for some really good information to start with.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 10:10 AM
To: CF-Talk
Subject: RE: Scanning a Drivers License


 Hi All,

 Has anyone here done anything with interfacing with a drivers license
 scanner?

 A client of mine has made request for an application that can read a
drivers
 license mag strip. There doesn't seem to be a lot of info available on the
 web about this.


http://www.google.com/search?num=50hl=enie=UTF-8oe=UTF-8newwindow=1q=Ma
gnetic+Stripe+Readers+programming

You will need to write something in C or Java most likely

WG




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Scanning a Drivers License

2003-03-25 Thread Robert Bailey
I would imagine your DL number as well.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Bosky, Dave [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 10:58 AM
To: CF-Talk
Subject: RE: Scanning a Drivers License


How much information is actually on the DL card?
Is only the printed information(name,address,etc.) available from the strip?

Regards,

Dave Bosky
Sr. Multimedia Web Designer
Horry Telephone Cooperative, Inc.
office: (843)369-8613
[EMAIL PROTECTED]


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 10:51 AM
To: CF-Talk
Subject: RE: Scanning a Drivers License


Good question. I doubt that they are encrypted, though.

But I could be completely wrong, as I have never worked with drivers
licenses. But here is why I do not think they would be. I am originally from
MD, and when I was in MD about a year and a half ago, all the clubs and
liqueur stores had card readers that when they took your DL, they swiped it
and it displayed your age to them, ensuring that it was not fake and was
real. I would imagine this data could not be retrieved if it was encrypted
and I doubt they would make the key publicly available if it was encrypted.


Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Bosky, Dave [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 10:35 AM
To: CF-Talk
Subject: RE: Scanning a Drivers License


What about encryption? Wouldn't DL information somehow be encrypted?

Regards,

Dave Bosky
Sr. Multimedia Web Designer
Horry Telephone Cooperative, Inc.
office: (843)369-8613
[EMAIL PROTECTED]


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 10:28 AM
To: CF-Talk
Subject: RE: Scanning a Drivers License


Not sure if you could use a smartcard reader, which I think reads track 1
and 2, and I am pretty sure that most DL's are on these tracks except the CA
drivers license, which is on track 3.

Anyway, I have worked with magnetic card readers using Java, and it really
was not a hard task to do, with Smart Cards and credit cards anyway. You can
pick up the readers for about 80 dollars or so, at least you could about 8
months ago, the last time I worked with them.

I would contact the vendor to make sure that it will read a drivers license,
though. A good place to start would be http://www.javapos.com/index.html

If you can use the smart card readers, there are a few java and C products
out there that can get you on your way. Check out the Javapos site, thanks
Sun!, for some really good information to start with.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: webguy [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 10:10 AM
To: CF-Talk
Subject: RE: Scanning a Drivers License


 Hi All,

 Has anyone here done anything with interfacing with a drivers license
 scanner?

 A client of mine has made request for an application that can read a
drivers
 license mag strip. There doesn't seem to be a lot of info available on the
 web about this.


http://www.google.com/search?num=50hl=enie=UTF-8oe=UTF-8newwindow=1q=Ma
gnetic+Stripe+Readers+programming

You will need to write something in C or Java most likely

WG






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: USPS Address Verification

2003-03-25 Thread Robert Bailey
hmmm, I do not even see a mention of it anywhere on the site

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 1:52 PM
To: CF-Talk
Subject: USPS Address Verification


I have successfully registered with USPSWebTools.com to be able to access
the USPS developer area. However, for the life of me, I can't find the PDF
on their site that describes how to use the Address Verification service.
I've found PDFs for every *other* service they offer, but not this one!!

Can anybody who has used their service show me where to look to get the
right URLs and parameters? I would appreciate it immensely. I'm in a Unix
envrionment, so their DLL file is not an option for me. I was hoping to
create a CFC to directly connect to their site.

Thanks,
Dave.





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Webservices hangup

2003-03-24 Thread Robert Bailey
This is a complete hack, and I am sure there may be a better way to do it,
but when I call a service, I go ahead and retrieve the WSDL via CFHTTP,
www.thedomain.com/smoething.cfc?wsdl and if there is a connection error I
will not try to consume the service.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Tyler Silcox [mailto:[EMAIL PROTECTED]
Sent: Monday, March 24, 2003 1:46 PM
To: CF-Talk
Subject: CFMX Webservices hangup


Is there any way to check to see if a webservice exists before you call it?
We have a application on a shared server, and as far as we can tell whenever
the webservice can't connect to the remote server, it creates a
server-crashing thread that eventually brings ColdFusion.  It's on a shared
box, so we're in a panic trying to get it fixed...any ideas?

Tyler




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Easter egg (I think)

2003-03-14 Thread Robert Bailey
When i run that on my server, I just get the CF Admin login

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Jim Campbell [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 4:07 PM
To: CF-Talk
Subject: RE: CFMX Easter egg (I think)


If this is an Easter Egg, I'd hate to see what they do for Halloween.

/nightmares

Thanks, this'll be a hit amongst my cadre of ColdFusion goons :)

- Jim

-Original Message-
From: Zachary Bedell [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 2:45 PM
To: CF-Talk
Subject: CFMX Easter egg (I think)


I certainly can't recommend anyone try this.  It didn't hurt my server any,
but my head still hurts a little.

This is somewhat disturbing  Kind of reminds me of some of the SciFi
channel's logo spots lately.

http://your_cfmx_server/cfide/administrator/settings/_licensedata.cfm?seri
alize

You'll need the Flash player installed.

Best regards,
Zac Bedell



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Easter egg (I think)

2003-03-14 Thread Robert Bailey
lol, that baby is scary looking

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Jim Campbell [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 4:19 PM
To: CF-Talk
Subject: RE: CFMX Easter egg (I think)


Log into the administrator first, then replace the URL with the one Zac
provided, that'll do the trick.

- Jim

-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 2:59 PM
To: CF-Talk
Subject: RE: CFMX Easter egg (I think)


When i run that on my server, I just get the CF Admin login

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Jim Campbell [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 4:07 PM
To: CF-Talk
Subject: RE: CFMX Easter egg (I think)


If this is an Easter Egg, I'd hate to see what they do for Halloween.

/nightmares

Thanks, this'll be a hit amongst my cadre of ColdFusion goons :)

- Jim

-Original Message-
From: Zachary Bedell [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2003 2:45 PM
To: CF-Talk
Subject: CFMX Easter egg (I think)


I certainly can't recommend anyone try this.  It didn't hurt my server any,
but my head still hurts a little.

This is somewhat disturbing  Kind of reminds me of some of the SciFi
channel's logo spots lately.

http://your_cfmx_server/cfide/administrator/settings/_licensedata.cfm?seri
alize

You'll need the Flash player installed.

Best regards,
Zac Bedell





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Com and CFMX

2003-03-13 Thread Robert Bailey
Yeah, I gave up trying to get it to work. Guess I am moving over to ASP for
this part of the application.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 6:01 PM
To: CF-Talk
Subject: Re: Com and CFMX


It helped in the senses that before the updater the COM was totally
unusable. Now it's somewhat usable. Bottom line is that it's not totally
fixed yet.

- Original Message -
From: Robert Bailey [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 3:51 PM
Subject: RE: Com and CFMX


 even the updater did not help the server, ugh

 Thanks!
 Robert Bailey
 Famous for nothing


 -Original Message-
 From: Frank Mamone [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 12, 2003 3:54 PM
 To: CF-Talk
 Subject: Re: Com and CFMX


 Updater 2 fixed alot of issues but there's still one for me where it
doesn't
 release the object from memory for a few seconds. Not a real issue if your
 object is multi-threaded but a problem for me as the object I'm using  is
 not. So ASP it is for the COM stuff.


 - Original Message -
 From: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, March 12, 2003 3:39 PM
 Subject: RE: Com and CFMX


  there is info on this in the known issues lists at macromedia.com
 
  D
 
  -Original Message-
  From: Robert Bailey [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, March 12, 2003 3:12 PM
  To: CF-Talk
  Subject: Com and CFMX
  
  
  So running the same scripts under CFMX and CF5 server, they do not work
  under CFMX. So I am guessing the CFMX is having some problems
  communicating
  with com objects. Any work arounds or has MM addressed this issue? Any
  pointers would be very welcomed, as I really need to be able
  to work with
  com objects within CFMX and it is a little disappointing that
  I am unable to
  :(
  
  Thanks!
  Robert Bailey
  Famous for nothing
  
  
  
 



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Com and CFMX

2003-03-13 Thread Robert Bailey
LOL, must have missed that memo.

Yeah, it is a pain, but I figure I have to work around it, just going to
make it an ASP web service and work with my objects via SOAP.

Thanks!
Robert Bailey
Famous for nothing
www.tinetics.com



-Original Message-
From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2003 11:01 AM
To: CF-Talk
Subject: RE: Com and CFMX


Robert,

I feel your pain. Although is a huge pain in the arse, I found that by
creating wrappers in .NET for the COM object I wanted to use, I was able
to get them working properly in CF. I've also found that a lot of the
time CFMX doesn't like the type of variables returned by COM and
vice-versa. Basically I just write a wrapper that only passes the
minimum amount of data between CF and COM. i.e. if I want to get a word
count of a doc using word, I'll put all the logic inside the wrapper, so
the only thing CF has to pass to it is the filename. (Even hard-coding
the filename when possible, so CF really only needs to trigger it.)

Btw. Didn't you get the memo from MM that said 'COM was dead'? j/k

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2003 8:28 AM
To: CF-Talk
Subject: RE: Com and CFMX

Yeah, I gave up trying to get it to work. Guess I am moving over to ASP
for
this part of the application.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 6:01 PM
To: CF-Talk
Subject: Re: Com and CFMX


It helped in the senses that before the updater the COM was totally
unusable. Now it's somewhat usable. Bottom line is that it's not totally
fixed yet.

- Original Message -
From: Robert Bailey [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 3:51 PM
Subject: RE: Com and CFMX


 even the updater did not help the server, ugh

 Thanks!
 Robert Bailey
 Famous for nothing


 -Original Message-
 From: Frank Mamone [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 12, 2003 3:54 PM
 To: CF-Talk
 Subject: Re: Com and CFMX


 Updater 2 fixed alot of issues but there's still one for me where it
doesn't
 release the object from memory for a few seconds. Not a real issue if
your
 object is multi-threaded but a problem for me as the object I'm using
is
 not. So ASP it is for the COM stuff.


 - Original Message -
 From: [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Wednesday, March 12, 2003 3:39 PM
 Subject: RE: Com and CFMX


  there is info on this in the known issues lists at macromedia.com
 
  D
 
  -Original Message-
  From: Robert Bailey [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, March 12, 2003 3:12 PM
  To: CF-Talk
  Subject: Com and CFMX
  
  
  So running the same scripts under CFMX and CF5 server, they do not
work
  under CFMX. So I am guessing the CFMX is having some problems
  communicating
  with com objects. Any work arounds or has MM addressed this issue?
Any
  pointers would be very welcomed, as I really need to be able
  to work with
  com objects within CFMX and it is a little disappointing that
  I am unable to
  :(
  
  Thanks!
  Robert Bailey
  Famous for nothing
  
  
  
 





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



working with objects

2003-03-12 Thread Robert Bailey
OK, working with the MS Word object (still).

I need some help porting over this VB code to CF so that it will work. Here
is the VB Code:

   Sub Test()

   Dim DocOpen As Word.Document


   Set DocOpen = Documents.Open(c:\blah.doc)

   Set temp = Dialogs(wdDialogToolsWordCount)
   temp.Execute
   numWords = temp.Words


   With DocOpen
   MsgBox This doc has a count of   numWords
   .Close wdDoNotSaveChanges
   End With
   Set DocOpen = Nothing

   End Sub

Works perfectly. So I am trying to get this to do the same thing in CF,
without the msgbox, obviously. Here is where I have gotten:

CFSCRIPT

   OpenDoc = objWord.Documents.Open(c:\blah.doc);

   Count = opendoc.words.count();

   temp = openDoc.Dialogs(wdDialogToolsWordCount)

   OpenDoc.Close();

   objWord.Quit();

   objWord = Nothing;
/CFSCRIPT

Does not work, it is telling me that wdDialogToolsWordCount is undefined. So
I have even tried declaring a variable like myvar =
wdDialogToolsWordCount and it still fails. How can I port this VB over to
CFScript where it works? Can anyone help? Thanks in advance!
Thanks!
Robert Bailey
Famous for nothing




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: working with objects

2003-03-12 Thread Robert Bailey
The document is opening properly, my problem lies in when I do a word count,
it counts the punctuation. So after reading the MS website, it tells me how
to only count the words and ignore the punctuation, in VB, which is:

   Set temp = Dialogs(wdDialogToolsWordCount)
   temp.Execute
   numWords = temp.Words

But I can not seem to get the above to execute in CFScript.

The problem seems to lie in the temp.execute

Now sure how to get that to work

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: A.Little [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 10:18 AM
To: CF-Talk
Subject: RE: working with objects


I came across a similar problem and ended up having to change my code so
that it looks like;

cfscript
objDoc = objWord.Documents;

newDoc = objDoc.open(c:\mydocument.doc);

myRevisions = newDoc.Revisions;
MyRevCount = myRevisions.count;

MyComments = newDoc.Comments;
MyCommentCount = MyComments.Count;

/cfscript

So instead of using the object 'dot' notation as it should really be used,
you can only have one dot per expression. Hence why I've got:
myRevisions = newDoc.Revisions;
MyRevCount = myRevisions.count;
Instead of:
MyRevCount = newDoc.Revisions.count

Perhaps the reason your code isn't working is because the document isn;t
being opened properly or at all (too many dots in your OpenDoc statement)

HTH,

Alex

PS. Don't ask me why it works the way it does!

 -Original Message-
 From: Robert Bailey [mailto:[EMAIL PROTECTED]
 Sent: 12 March 2003 14:51
 To: CF-Talk
 Subject: working with objects


 OK, working with the MS Word object (still).

 I need some help porting over this VB code to CF so that it
 will work. Here
 is the VB Code:

Sub Test()

Dim DocOpen As Word.Document


Set DocOpen = Documents.Open(c:\blah.doc)

Set temp = Dialogs(wdDialogToolsWordCount)
temp.Execute
numWords = temp.Words


With DocOpen
MsgBox This doc has a count of   numWords
.Close wdDoNotSaveChanges
End With
Set DocOpen = Nothing

End Sub

 Works perfectly. So I am trying to get this to do the same
 thing in CF,
 without the msgbox, obviously. Here is where I have gotten:

 CFSCRIPT

OpenDoc = objWord.Documents.Open(c:\blah.doc);

Count = opendoc.words.count();

temp = openDoc.Dialogs(wdDialogToolsWordCount)

OpenDoc.Close();

objWord.Quit();

objWord = Nothing;
 /CFSCRIPT

 Does not work, it is telling me that wdDialogToolsWordCount
 is undefined. So
 I have even tried declaring a variable like myvar =
 wdDialogToolsWordCount and it still fails. How can I port
 this VB over to
 CFScript where it works? Can anyone help? Thanks in advance!
 Thanks!
 Robert Bailey
 Famous for nothing






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: working with objects

2003-03-12 Thread Robert Bailey
that is suppose to be not sure how to get that to work, lol

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 10:25 AM
To: CF-Talk
Subject: RE: working with objects


The document is opening properly, my problem lies in when I do a word count,
it counts the punctuation. So after reading the MS website, it tells me how
to only count the words and ignore the punctuation, in VB, which is:

   Set temp = Dialogs(wdDialogToolsWordCount)
   temp.Execute
   numWords = temp.Words

But I can not seem to get the above to execute in CFScript.

The problem seems to lie in the temp.execute

Now sure how to get that to work

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: A.Little [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 10:18 AM
To: CF-Talk
Subject: RE: working with objects


I came across a similar problem and ended up having to change my code so
that it looks like;

cfscript
objDoc = objWord.Documents;

newDoc = objDoc.open(c:\mydocument.doc);

myRevisions = newDoc.Revisions;
MyRevCount = myRevisions.count;

MyComments = newDoc.Comments;
MyCommentCount = MyComments.Count;

/cfscript

So instead of using the object 'dot' notation as it should really be used,
you can only have one dot per expression. Hence why I've got:
myRevisions = newDoc.Revisions;
MyRevCount = myRevisions.count;
Instead of:
MyRevCount = newDoc.Revisions.count

Perhaps the reason your code isn't working is because the document isn;t
being opened properly or at all (too many dots in your OpenDoc statement)

HTH,

Alex

PS. Don't ask me why it works the way it does!

 -Original Message-
 From: Robert Bailey [mailto:[EMAIL PROTECTED]
 Sent: 12 March 2003 14:51
 To: CF-Talk
 Subject: working with objects


 OK, working with the MS Word object (still).

 I need some help porting over this VB code to CF so that it
 will work. Here
 is the VB Code:

Sub Test()

Dim DocOpen As Word.Document


Set DocOpen = Documents.Open(c:\blah.doc)

Set temp = Dialogs(wdDialogToolsWordCount)
temp.Execute
numWords = temp.Words


With DocOpen
MsgBox This doc has a count of   numWords
.Close wdDoNotSaveChanges
End With
Set DocOpen = Nothing

End Sub

 Works perfectly. So I am trying to get this to do the same
 thing in CF,
 without the msgbox, obviously. Here is where I have gotten:

 CFSCRIPT

OpenDoc = objWord.Documents.Open(c:\blah.doc);

Count = opendoc.words.count();

temp = openDoc.Dialogs(wdDialogToolsWordCount)

OpenDoc.Close();

objWord.Quit();

objWord = Nothing;
 /CFSCRIPT

 Does not work, it is telling me that wdDialogToolsWordCount
 is undefined. So
 I have even tried declaring a variable like myvar =
 wdDialogToolsWordCount and it still fails. How can I port
 this VB over to
 CFScript where it works? Can anyone help? Thanks in advance!
 Thanks!
 Robert Bailey
 Famous for nothing







~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: working with objects

2003-03-12 Thread Robert Bailey
OK, I am starting to think that it is MX that is not wanting to do this
right, as I have even looked at some of the tutorials on how to print or
create a word doc and the thing still crashes. I tested on 2 seperate MX
servers, even changing the service to boot up using an admin account, and I
am gettng the same errors. Anyone have a CF5 server with word installed
where I can send something to them and test this out? If this is a big,
would like to speak with MM about it.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 10:40 AM
To: CF-Talk
Subject: RE: working with objects


that is suppose to be not sure how to get that to work, lol

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 10:25 AM
To: CF-Talk
Subject: RE: working with objects


The document is opening properly, my problem lies in when I do a word count,
it counts the punctuation. So after reading the MS website, it tells me how
to only count the words and ignore the punctuation, in VB, which is:

   Set temp = Dialogs(wdDialogToolsWordCount)
   temp.Execute
   numWords = temp.Words

But I can not seem to get the above to execute in CFScript.

The problem seems to lie in the temp.execute

Now sure how to get that to work

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: A.Little [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 10:18 AM
To: CF-Talk
Subject: RE: working with objects


I came across a similar problem and ended up having to change my code so
that it looks like;

cfscript
objDoc = objWord.Documents;

newDoc = objDoc.open(c:\mydocument.doc);

myRevisions = newDoc.Revisions;
MyRevCount = myRevisions.count;

MyComments = newDoc.Comments;
MyCommentCount = MyComments.Count;

/cfscript

So instead of using the object 'dot' notation as it should really be used,
you can only have one dot per expression. Hence why I've got:
myRevisions = newDoc.Revisions;
MyRevCount = myRevisions.count;
Instead of:
MyRevCount = newDoc.Revisions.count

Perhaps the reason your code isn't working is because the document isn;t
being opened properly or at all (too many dots in your OpenDoc statement)

HTH,

Alex

PS. Don't ask me why it works the way it does!

 -Original Message-
 From: Robert Bailey [mailto:[EMAIL PROTECTED]
 Sent: 12 March 2003 14:51
 To: CF-Talk
 Subject: working with objects


 OK, working with the MS Word object (still).

 I need some help porting over this VB code to CF so that it
 will work. Here
 is the VB Code:

Sub Test()

Dim DocOpen As Word.Document


Set DocOpen = Documents.Open(c:\blah.doc)

Set temp = Dialogs(wdDialogToolsWordCount)
temp.Execute
numWords = temp.Words


With DocOpen
MsgBox This doc has a count of   numWords
.Close wdDoNotSaveChanges
End With
Set DocOpen = Nothing

End Sub

 Works perfectly. So I am trying to get this to do the same
 thing in CF,
 without the msgbox, obviously. Here is where I have gotten:

 CFSCRIPT

OpenDoc = objWord.Documents.Open(c:\blah.doc);

Count = opendoc.words.count();

temp = openDoc.Dialogs(wdDialogToolsWordCount)

OpenDoc.Close();

objWord.Quit();

objWord = Nothing;
 /CFSCRIPT

 Does not work, it is telling me that wdDialogToolsWordCount
 is undefined. So
 I have even tried declaring a variable like myvar =
 wdDialogToolsWordCount and it still fails. How can I port
 this VB over to
 CFScript where it works? Can anyone help? Thanks in advance!
 Thanks!
 Robert Bailey
 Famous for nothing








~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Anyone with CF 5 server?

2003-03-12 Thread Robert Bailey
OK, I am starting to think that it is MX that is not handling objects right,
as I have even looked at some of the tutorials on how to print or create a
word doc and the thing still crashes. I tested on 2 separate MX
servers, even changing the service to boot up using an admin account, and I
am getting the same errors. Anyone have a CF5 server with word installed
where I can send something to them and test this out? If this is a bug,
would like to speak with MM about it. Email me off list if you will test the
script so we can see what is happening. I do not have a CF 5 server anymore
:(

Thanks!
Robert Bailey
Famous for nothing


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Com and CFMX

2003-03-12 Thread Robert Bailey
So running the same scripts under CFMX and CF5 server, they do not work
under CFMX. So I am guessing the CFMX is having some problems communicating
with com objects. Any work arounds or has MM addressed this issue? Any
pointers would be very welcomed, as I really need to be able to work with
com objects within CFMX and it is a little disappointing that I am unable to
:(

Thanks!
Robert Bailey
Famous for nothing


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Com and CFMX

2003-03-12 Thread Robert Bailey
even the updater did not help the server, ugh

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 3:54 PM
To: CF-Talk
Subject: Re: Com and CFMX


Updater 2 fixed alot of issues but there's still one for me where it doesn't
release the object from memory for a few seconds. Not a real issue if your
object is multi-threaded but a problem for me as the object I'm using  is
not. So ASP it is for the COM stuff.


- Original Message -
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 3:39 PM
Subject: RE: Com and CFMX


 there is info on this in the known issues lists at macromedia.com

 D

 -Original Message-
 From: Robert Bailey [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 12, 2003 3:12 PM
 To: CF-Talk
 Subject: Com and CFMX
 
 
 So running the same scripts under CFMX and CF5 server, they do not work
 under CFMX. So I am guessing the CFMX is having some problems
 communicating
 with com objects. Any work arounds or has MM addressed this issue? Any
 pointers would be very welcomed, as I really need to be able
 to work with
 com objects within CFMX and it is a little disappointing that
 I am unable to
 :(
 
 Thanks!
 Robert Bailey
 Famous for nothing
 
 
 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



MS Word Object

2003-03-11 Thread Robert Bailey
Hey guys.

Playing around here, and trying to count the words in a MS Word document. It
is returning a number, but not the amount of words in the doc, as when I
open it up using word, and look at the count there, it is a few off from
when I use the object. Maybe I am going it wrong.

I created a small document. I open it in the object and do the count (which
I think I am going it right), and the total count is returned as 18. I open
the document in Word, do a count, says I have 14 words. Very odd.

I am using Word 2000 and CFMX. Also, anyone know how I can get the total
pages, document name, paragraphs, etc... that word gives you on the word
count box? not seeing much information on it online, and stumbled up on the
count by mistake, so it may be not what I am trying to do. I just need a
realistic count. The document does have 14 words, as I counted it myself,
not sure why when using the code below it says I have 18 words. Here is the
code. Thanks for any help!

CFTRY
   CFOBJECT
   ACTION=CONNECT
   CLASS=Word.Application
   NAME=objWord
   TYPE=COM
 CFCATCH
   CFOBJECT
   ACTION=CREATE
   CLASS=Word.Application
   NAME=objWord
   TYPE=COM
 /CFCATCH
/CFTRY

CFSCRIPT

   OpenDoc = objWord.Documents.Open(c:\blah.doc);

   Count = opendoc.words.count();

   OpenDoc.Close();

   objWord.Quit();

   objWord = Nothing;
/CFSCRIPT
CFOUTPUT
COUNT: #count#
/CFOUTPUT



Thanks!
Robert Bailey
Famous for nothing


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: MS Word Object

2003-03-11 Thread Robert Bailey
hmmm, very odd. Maybe my install of word is messed up here?

So I wrote a quick script in word:

   Sub Test()

   Dim DocOpen As Word.Document

   Set DocOpen = Documents.Open(c:\blah.doc)

   With DocOpen
   MsgBox The name of this doc is   .Name  Which has a count of  
.Words.Count
   .Close wdDoNotSaveChanges
   End With
   Set DocOpen = Nothing

   End Sub

OK, simple, displays the name of the document and how many words. The
document I opened has one word, simply hi

Even this script returns is as 2 words! But if I open up blah.doc in MS Word
manually and check the count, it says one word, as it should. Also, when I
am using the com object, I can not get the .name value, says it is not a
method. Know anything about this at all? is it something I should not worry
about?

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Mike Townend [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 11, 2003 2:23 PM
To: CF-Talk
Subject: RE: MS Word Object


Try prototyping how to do it in the vba editor (alt-F11) in word, that's how
I always do stuff in word, then you get intellisense and help etc.

Then when you have it done, port it to cfscript and then try running it

HTH



-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 11, 2003 18:49
To: CF-Talk
Subject: MS Word Object


Hey guys.

Playing around here, and trying to count the words in a MS Word document. It
is returning a number, but not the amount of words in the doc, as when I
open it up using word, and look at the count there, it is a few off from
when I use the object. Maybe I am going it wrong.

I created a small document. I open it in the object and do the count (which
I think I am going it right), and the total count is returned as 18. I open
the document in Word, do a count, says I have 14 words. Very odd.

I am using Word 2000 and CFMX. Also, anyone know how I can get the total
pages, document name, paragraphs, etc... that word gives you on the word
count box? not seeing much information on it online, and stumbled up on the
count by mistake, so it may be not what I am trying to do. I just need a
realistic count. The document does have 14 words, as I counted it myself,
not sure why when using the code below it says I have 18 words. Here is the
code. Thanks for any help!

CFTRY
   CFOBJECT
   ACTION=CONNECT
   CLASS=Word.Application
   NAME=objWord
   TYPE=COM
 CFCATCH
   CFOBJECT
   ACTION=CREATE
   CLASS=Word.Application
   NAME=objWord
   TYPE=COM
 /CFCATCH
/CFTRY

CFSCRIPT

   OpenDoc = objWord.Documents.Open(c:\blah.doc);

   Count = opendoc.words.count();

   OpenDoc.Close();

   objWord.Quit();

   objWord = Nothing;
/CFSCRIPT
CFOUTPUT
COUNT: #count#
/CFOUTPUT



Thanks!
Robert Bailey
Famous for nothing




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: MS Word Object

2003-03-11 Thread Robert Bailey
OK, I have tested this code on 3 machines, all get the wrong count. Anyone
know what is going on?

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 11, 2003 2:43 PM
To: CF-Talk
Subject: RE: MS Word Object


hmmm, very odd. Maybe my install of word is messed up here?

So I wrote a quick script in word:

   Sub Test()

   Dim DocOpen As Word.Document

   Set DocOpen = Documents.Open(c:\blah.doc)

   With DocOpen
   MsgBox The name of this doc is   .Name  Which has a count of  
.Words.Count
   .Close wdDoNotSaveChanges
   End With
   Set DocOpen = Nothing

   End Sub

OK, simple, displays the name of the document and how many words. The
document I opened has one word, simply hi

Even this script returns is as 2 words! But if I open up blah.doc in MS Word
manually and check the count, it says one word, as it should. Also, when I
am using the com object, I can not get the .name value, says it is not a
method. Know anything about this at all? is it something I should not worry
about?

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Mike Townend [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 11, 2003 2:23 PM
To: CF-Talk
Subject: RE: MS Word Object


Try prototyping how to do it in the vba editor (alt-F11) in word, that's how
I always do stuff in word, then you get intellisense and help etc.

Then when you have it done, port it to cfscript and then try running it

HTH



-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 11, 2003 18:49
To: CF-Talk
Subject: MS Word Object


Hey guys.

Playing around here, and trying to count the words in a MS Word document. It
is returning a number, but not the amount of words in the doc, as when I
open it up using word, and look at the count there, it is a few off from
when I use the object. Maybe I am going it wrong.

I created a small document. I open it in the object and do the count (which
I think I am going it right), and the total count is returned as 18. I open
the document in Word, do a count, says I have 14 words. Very odd.

I am using Word 2000 and CFMX. Also, anyone know how I can get the total
pages, document name, paragraphs, etc... that word gives you on the word
count box? not seeing much information on it online, and stumbled up on the
count by mistake, so it may be not what I am trying to do. I just need a
realistic count. The document does have 14 words, as I counted it myself,
not sure why when using the code below it says I have 18 words. Here is the
code. Thanks for any help!

CFTRY
   CFOBJECT
   ACTION=CONNECT
   CLASS=Word.Application
   NAME=objWord
   TYPE=COM
 CFCATCH
   CFOBJECT
   ACTION=CREATE
   CLASS=Word.Application
   NAME=objWord
   TYPE=COM
 /CFCATCH
/CFTRY

CFSCRIPT

   OpenDoc = objWord.Documents.Open(c:\blah.doc);

   Count = opendoc.words.count();

   OpenDoc.Close();

   objWord.Quit();

   objWord = Nothing;
/CFSCRIPT
CFOUTPUT
COUNT: #count#
/CFOUTPUT



Thanks!
Robert Bailey
Famous for nothing





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Rich Text Editor

2003-03-04 Thread Robert Bailey
Damn that is a nice one, and free. Going to have to play with that when I
get some time

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Ewok [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 04, 2003 9:43 AM
To: CF-Talk
Subject: Re: Rich Text Editor


http://www.interactivetools.com/products/htmlarea/
free and open source :)

- Original Message -
From: Taz [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, March 04, 2003 9:13 AM
Subject: Re: Rich Text Editor


  Does anyone know of any free rich text editors to build into a CMS (like
  a WYSIWYG)?

 SoEditor from siteobjects.com

 Taz


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Free Mail Server

2003-03-04 Thread Robert Bailey
I will second mail enable.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Kris Pilles [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 04, 2003 11:59 AM
To: CF-Talk
Subject: RE: Free Mail Server


Mail Enable

Mailenable.com

Nice product...

Only $175 if you need webmail otherwise it is free

-Original Message-
From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 04, 2003 11:58 AM
To: CF-Talk
Subject: OT: Free Mail Server


Anyone know of a good free mail server?  (sorry for the ot, but as
always you'all know everything)

Running on Windows2000 Advanced Server
IIS 5

Paul Giesenhagen
QuillDesign


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFC Expert Group?

2003-02-25 Thread Robert Bailey
There is a CFC group, and a good one at that. Maybe you can direct your
ideas there:

http://www.cfczone.org/listserv.cfm


Thanks!
Robert Bailey
http://www.Tinetics.com
Famous for nothing


-Original Message-
From: Vince Bonfanti [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 25, 2003 9:03 AM
To: CF-Talk
Subject: CFC Expert Group?


I've seen several discussions, all of which have the same general theme:
Here's what's wrong with CFCs. The most recent is the FBX3 AND CFMX
thread on this list. Why not borrow an idea from the way Sun creates Java
specifications and form a CFC Expert Group to write the specification for
the next version of CFC?

Basically all you need is a mailing list and a couple of people who are
knowledgeable and interested enough to write and review a specification
document. Vendor participation helps; I'm willing to participate in such a
group, and I'll bet that Sean Corfield would too. The leader of the group
should probably not be affiliated with Macromedia or New Atlanta to insure
vendor neutrality. I'm sure Michael Dinowitz would be happy to provide a
separate mailing list for this purpose.

The efforts of this group would not be wasted because I'll commit that if a
CFC Expert Group is formed and produces a reasonable consensus on a final
specification, then New Atlanta will implement that specification in the
next major release of BlueDragon after the final specification is published.

So, is anyone interested in taking the lead in forming a CFC Expert Group?

Vince Bonfanti
New Atlanta Communications, LLC
http://www.newatlanta.com


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFC Expert Group?

2003-02-25 Thread Robert Bailey
but regardless, I would be interested and you could count me in.

Thanks!
Robert Bailey
http://www.Tinetics.com
Famous for nothing


-Original Message-
From: Vince Bonfanti [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 25, 2003 9:03 AM
To: CF-Talk
Subject: CFC Expert Group?


I've seen several discussions, all of which have the same general theme:
Here's what's wrong with CFCs. The most recent is the FBX3 AND CFMX
thread on this list. Why not borrow an idea from the way Sun creates Java
specifications and form a CFC Expert Group to write the specification for
the next version of CFC?

Basically all you need is a mailing list and a couple of people who are
knowledgeable and interested enough to write and review a specification
document. Vendor participation helps; I'm willing to participate in such a
group, and I'll bet that Sean Corfield would too. The leader of the group
should probably not be affiliated with Macromedia or New Atlanta to insure
vendor neutrality. I'm sure Michael Dinowitz would be happy to provide a
separate mailing list for this purpose.

The efforts of this group would not be wasted because I'll commit that if a
CFC Expert Group is formed and produces a reasonable consensus on a final
specification, then New Atlanta will implement that specification in the
next major release of BlueDragon after the final specification is published.

So, is anyone interested in taking the lead in forming a CFC Expert Group?

Vince Bonfanti
New Atlanta Communications, LLC
http://www.newatlanta.com


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



context-sensetive help

2003-02-24 Thread Robert Bailey
I remember a few years ago using finding and using a great little plug in
for larger applications that allowed for context-sensitive help. It had a
windows type interface to it, looked almost exactly like windows help. I can
not remember where we purchased this, and it has been a few years. Anyone
work with something like this or may be able to help me recall the product?

Thanks!
Robert Bailey
Famous for nothing


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: context-sensetive help

2003-02-24 Thread Robert Bailey
Not what I was thinking, but going to check this one out, thanks!

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Monday, February 24, 2003 3:26 PM
To: CF-Talk
Subject: RE: context-sensetive help


cf_activehelp from Activefeedback.com?


Bryan F. Hogan
Director of Internet Development
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]
Sent: Monday, February 24, 2003 3:04 PM
To: CF-Talk
Subject: context-sensetive help


I remember a few years ago using finding and using a great little plug in
for larger applications that allowed for context-sensitive help. It had a
windows type interface to it, looked almost exactly like windows help. I can
not remember where we purchased this, and it has been a few years. Anyone
work with something like this or may be able to help me recall the product?

Thanks!
Robert Bailey
Famous for nothing




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Free?

2003-02-21 Thread Robert Bailey
OK, I am not understanding what BlueDragon is. It is an application server,
I got that, but it serves CFML without CF Server?

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 21, 2003 9:52 AM
To: CF-Talk
Subject: Re: Free?


Randell B Adkins wrote:
 OK, before I jump on this bandwagon, I have seen a lot of talk
 about BlueDragon.

 How stable of a server is it for development needs?

I have no complaints about stability. The only thing is I have to run it
in standalone mode, because it refuses to detect IIS and there are no
manual configuration instructions available.


 What are the + and - of it

Biggest downside: it is not CF MX rewritten, it is CF 5 rewritten.
Biggest upside: there are free versions for production use.

But in the end it is not for me because of the lack of choice in
database drivers in the free version. And if I have to pay for it, I
might as well go for something that not only supports PostgreSQL, but
also CFCs.

Jochem



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Add Banner Management

2003-02-20 Thread Robert Bailey
Really? I am running IIS and would love to know where the banner management
is. I have not come across it before.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: samcfug [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 20, 2003 5:28 AM
To: CF-Talk
Subject: Re: Add Banner Management


I can't help you there, but Banner management is a built-in feature of IIS
on
Windows.

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: Russ [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, February 20, 2003 1:15 AM
Subject: RE: Add Banner Management


| My bad--
|
| It'll be running on RH 7.2 up on the server.  It'd be nice if it wasn't
| platform dependent and could work with Access and/or MySQL, but, I can
| survive--MySQL would be better in that case.
|
| Russ
|
|  -Original Message-
|  From: samcfug [mailto:[EMAIL PROTECTED]]
|  Sent: Thursday, February 20, 2003 12:11 AM
|  To: CF-Talk
|  Subject: Re: Add Banner Management
| 
| 
|  What Operating system?
| 
|  =
|  Douglas White
|  group Manager
|  mailto:[EMAIL PROTECTED]
|  http://www.samcfug.org
|  =
|  - Original Message -
|  From: Russ [EMAIL PROTECTED]
|  To: CF-Talk [EMAIL PROTECTED]
|  Sent: Wednesday, February 19, 2003 10:31 PM
|  Subject: Add Banner Management
| 
| 
|  | Hi all...
|  |
|  | I've been doing some searching and searching (and the one
|  inexpensive
|  | banner management system I found had a broken URL) and I've
|  found a lot
|  | of different sources for this type of thing, but I've yet
|  to find one
|  | that is affordable (read: free or very close to it).
|  |
|  | I'm also hoping to be able manage inventory, set limits,
|  zones, etc. and
|  | I don't have a lot of experience with it, so something with some
|  | easy-to-grasp way to it would be great, too.
|  |
|  | Any recommendations?
|  |
|  | Thanks!
|  |
|  | Russ
|  |
|  | (apologies if this is a duplicate)
|  |
|  |
| 
|

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Add Banner Management

2003-02-20 Thread Robert Bailey
Did not see that, but I did find an app.tag called bannerman:

http://www.cfhub.com/tutorials/bannerman/index.cfm

Maybe could help

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Mark Stephenson - Evolution Internet
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 20, 2003 8:28 AM
To: CF-Talk
Subject: RE: Add Banner Management


I am unsure... But i am sure there is a tutorial/sample files on the
cfhub.com website

its free...

Mark Stephenson
New Media Director
Evolution Internet
T: 0870 757 1631
F: 0870 757 1632
W: www.evolutioninternet.co.uk
E: [EMAIL PROTECTED]


WARNING:
---
The information contained in this document and attachments is confidential
and intended only for the person(s) named above.  If you are not the
intended recipient you are hereby notified that any disclosure, copying,
distribution, or any other use of the information is strictly prohibited.
If you have received this document by mistake, please notify the sender
immediately and destroy this document and attachments without making any
copy of any kind.

AVIS IMPORTANT:
---
Les informations contenues dans le present document et ses pieces jointes
sont strictement confidentielles et reservees a l'usage de la (des)
personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, soyez
avise que toute divulgation, distribution, copie, ou autre utilisation de
ces informations est strictement prohibee.  Si vous avez recu ce document
par erreur, veuillez s'il vous plait communiquer immediatement avec
l'expediteur et detruire ce document sans en faire de copie sous quelque
forme.




-Original Message-
From: Russ [mailto:[EMAIL PROTECTED]]
Sent: 20 February 2003 13:28
To: CF-Talk
Subject: RE: Add Banner Management


Thanks; but there's not a lot built-in with IIS is typically the best
way to go, IMHO.

I'm still open for suggestions on banner management; I've seen some
really robust ones out there and simply am not able to afford them since
it's a personal project.

Thanks again for any feedback.

Russ

 -Original Message-
 From: samcfug [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, February 20, 2003 4:28 AM
 To: CF-Talk
 Subject: Re: Add Banner Management


 I can't help you there, but Banner management is a built-in
 feature of IIS on
 Windows.

 =
 Douglas White
 group Manager
 mailto:[EMAIL PROTECTED]
 http://www.samcfug.org
 =
 - Original Message -
 From: Russ [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, February 20, 2003 1:15 AM
 Subject: RE: Add Banner Management


 | My bad--
 |
 | It'll be running on RH 7.2 up on the server.  It'd be nice
 if it wasn't
 | platform dependent and could work with Access and/or MySQL,
 but, I can
 | survive--MySQL would be better in that case.
 |
 | Russ
 |
 |  -Original Message-
 |  From: samcfug [mailto:[EMAIL PROTECTED]]
 |  Sent: Thursday, February 20, 2003 12:11 AM
 |  To: CF-Talk
 |  Subject: Re: Add Banner Management
 | 
 | 
 |  What Operating system?
 | 
 |  =
 |  Douglas White
 |  group Manager
 |  mailto:[EMAIL PROTECTED]
 |  http://www.samcfug.org
 |  =
 |  - Original Message -
 |  From: Russ [EMAIL PROTECTED]
 |  To: CF-Talk [EMAIL PROTECTED]
 |  Sent: Wednesday, February 19, 2003 10:31 PM
 |  Subject: Add Banner Management
 | 
 | 
 |  | Hi all...
 |  |
 |  | I've been doing some searching and searching (and the one
 |  inexpensive
 |  | banner management system I found had a broken URL) and I've
 |  found a lot
 |  | of different sources for this type of thing, but I've yet
 |  to find one
 |  | that is affordable (read: free or very close to it).
 |  |
 |  | I'm also hoping to be able manage inventory, set limits,
 |  zones, etc. and
 |  | I don't have a lot of experience with it, so something with some
 |  | easy-to-grasp way to it would be great, too.
 |  |
 |  | Any recommendations?
 |  |
 |  | Thanks!
 |  |
 |  | Russ
 |  |
 |  | (apologies if this is a duplicate)
 |  |
 |  |
 | 
 |



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Add Banner Management

2003-02-20 Thread Robert Bailey
yeah, just found that one, lol

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Mark Stephenson - Evolution Internet
[mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 20, 2003 8:33 AM
To: CF-Talk
Subject: RE: Add Banner Management


http://cfhub.com/tutorials/BannerMan/

Try that


Mark Stephenson
New Media Director
Evolution Internet
T: 0870 757 1631
F: 0870 757 1632
W: www.evolutioninternet.co.uk
E: [EMAIL PROTECTED]


WARNING:
---
The information contained in this document and attachments is confidential
and intended only for the person(s) named above.  If you are not the
intended recipient you are hereby notified that any disclosure, copying,
distribution, or any other use of the information is strictly prohibited.
If you have received this document by mistake, please notify the sender
immediately and destroy this document and attachments without making any
copy of any kind.

AVIS IMPORTANT:
---
Les informations contenues dans le present document et ses pieces jointes
sont strictement confidentielles et reservees a l'usage de la (des)
personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, soyez
avise que toute divulgation, distribution, copie, ou autre utilisation de
ces informations est strictement prohibee.  Si vous avez recu ce document
par erreur, veuillez s'il vous plait communiquer immediatement avec
l'expediteur et detruire ce document sans en faire de copie sous quelque
forme.




-Original Message-
From: Mark Stephenson - Evolution Internet
[mailto:[EMAIL PROTECTED]]
Sent: 20 February 2003 13:28
To: CF-Talk
Subject: RE: Add Banner Management


I am unsure... But i am sure there is a tutorial/sample files on the
cfhub.com website

its free...

Mark Stephenson
New Media Director
Evolution Internet
T: 0870 757 1631
F: 0870 757 1632
W: www.evolutioninternet.co.uk
E: [EMAIL PROTECTED]


WARNING:
---
The information contained in this document and attachments is confidential
and intended only for the person(s) named above.  If you are not the
intended recipient you are hereby notified that any disclosure, copying,
distribution, or any other use of the information is strictly prohibited.
If you have received this document by mistake, please notify the sender
immediately and destroy this document and attachments without making any
copy of any kind.

AVIS IMPORTANT:
---
Les informations contenues dans le present document et ses pieces jointes
sont strictement confidentielles et reservees a l'usage de la (des)
personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, soyez
avise que toute divulgation, distribution, copie, ou autre utilisation de
ces informations est strictement prohibee.  Si vous avez recu ce document
par erreur, veuillez s'il vous plait communiquer immediatement avec
l'expediteur et detruire ce document sans en faire de copie sous quelque
forme.




-Original Message-
From: Russ [mailto:[EMAIL PROTECTED]]
Sent: 20 February 2003 13:28
To: CF-Talk
Subject: RE: Add Banner Management


Thanks; but there's not a lot built-in with IIS is typically the best
way to go, IMHO.

I'm still open for suggestions on banner management; I've seen some
really robust ones out there and simply am not able to afford them since
it's a personal project.

Thanks again for any feedback.

Russ

 -Original Message-
 From: samcfug [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, February 20, 2003 4:28 AM
 To: CF-Talk
 Subject: Re: Add Banner Management


 I can't help you there, but Banner management is a built-in
 feature of IIS on
 Windows.

 =
 Douglas White
 group Manager
 mailto:[EMAIL PROTECTED]
 http://www.samcfug.org
 =
 - Original Message -
 From: Russ [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, February 20, 2003 1:15 AM
 Subject: RE: Add Banner Management


 | My bad--
 |
 | It'll be running on RH 7.2 up on the server.  It'd be nice
 if it wasn't
 | platform dependent and could work with Access and/or MySQL,
 but, I can
 | survive--MySQL would be better in that case.
 |
 | Russ
 |
 |  -Original Message-
 |  From: samcfug [mailto:[EMAIL PROTECTED]]
 |  Sent: Thursday, February 20, 2003 12:11 AM
 |  To: CF-Talk
 |  Subject: Re: Add Banner Management
 | 
 | 
 |  What Operating system?
 | 
 |  =
 |  Douglas White
 |  group Manager
 |  mailto:[EMAIL PROTECTED]
 |  http://www.samcfug.org
 |  =
 |  - Original Message -
 |  From: Russ [EMAIL PROTECTED]
 |  To: CF-Talk [EMAIL PROTECTED]
 |  Sent: Wednesday, February 19, 2003 10:31 PM
 |  Subject: Add Banner Management
 | 
 | 
 |  | Hi all...
 |  |
 |  | I've been doing some searching and searching (and the one
 |  inexpensive
 |  | banner management system I found had a broken URL

SOAP, CF, ASP and web services

2003-02-19 Thread Robert Bailey
Sorry, this may be a little off topic as it has some ASP questions in it

I have been writing a few web services with CF, but when I try to consume
them using .net, I get an error. I am using MSSOAP, and here is how I am
trying to consume it:

%
Dim oSOAP
oSOAP = Server.CreateObject(MSSOAP.SoapClient)
oSOAP.ClientProperty(ServerHTTPRequest) = True

oSOAP.mssoapinit(http://www.tinetics.com/webservices/securitylevel.cfc?WSDL
)
%

Also, the example is here:

http://www.tinetics.com/temp/test.aspx

and I have turned on debugging.

Basically, I am not understanding why I am having these errors when trying
to consume a CF web service, but works fine when working with .net services.
Is CF not compatable?

Thanks!
Robert Bailey
Famous for nothing


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: experthost.com cfmx

2003-02-12 Thread Robert Bailey
I have used them, no problems at all

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003 11:18 PM
To: CF-Talk
Subject: experthost.com  cfmx


is anyone else out there, using experthost.com
to host your sites, on one of their cfmx servers
and noticed that sometimes when you ftp a file over
that when you refresh in your browser, you wont
see the new file, and sometimes, you can delete the file
refresh, and it still shows the old cached version?

i emailed them and they told me that it was a cfmx bug, and
that they werent sure of a fix?

thanks!

tony

tony weeg
[EMAIL PROTECTED]
www.revolutionwebdesign.com
rEvOlUtIoN wEb DeSiGn
410.334.6331


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: experthost.com cfmx

2003-02-12 Thread Robert Bailey
Last domain I put on there was about 2 months ago, CFMX. Has not had any
problems at all, except some wacky CFFILE problem which is gone now

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 12, 2003 9:14 AM
To: CF-Talk
Subject: RE: experthost.com  cfmx


h. when was the last domain
you put on there? I have no problems,with the domains
that I have on their cf5 servers, its just the new cfmx servers.


...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping  reporting
www.navtrak.net
410.548.2337

-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 12, 2003 8:55 AM
To: CF-Talk
Subject: RE: experthost.com  cfmx


I have used them, no problems at all

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003 11:18 PM
To: CF-Talk
Subject: experthost.com  cfmx


is anyone else out there, using experthost.com
to host your sites, on one of their cfmx servers
and noticed that sometimes when you ftp a file over
that when you refresh in your browser, you wont
see the new file, and sometimes, you can delete the file
refresh, and it still shows the old cached version?

i emailed them and they told me that it was a cfmx bug, and
that they werent sure of a fix?

thanks!

tony

tony weeg
[EMAIL PROTECTED]
www.revolutionwebdesign.com
rEvOlUtIoN wEb DeSiGn
410.334.6331




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Datapipe hosting

2003-02-12 Thread Robert Bailey
Also have had some clients that had Datapipe. Not as a shared host, but as a
colo. Their PC, and was a workhorse. Good host for colo, not sure about
shared

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 12, 2003 9:16 AM
To: CF-Talk
Subject: Datapipe hosting


Could someone please comment on their experience with Datapipe? I am looking
for dedicated hosting. Thank you!







~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Hosting Question

2003-02-11 Thread Robert Bailey
Yeah, I used them for a while, nothing but problems with them and would not
recommend them at all.


Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003 1:23 PM
To: CF-Talk
Subject: Hosting Question


Is anyone using CFM-Resources for hosting?






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Hosting Question

2003-02-11 Thread Robert Bailey
Yeah, I had nothing but problems with them. I had my credit card stolen so I
cancelled it, it was the one that I used to pay for hosting, and tried for 3
weeks via email and phone to give them my new number, as they were emailing
me telling me that they can not bill it, and NEVER got it fixed, so they
cancelled my account and I went somewhere else. Always had problems logging
in to the FTP, my mail server went down too many times. I went to
http://www.experthost.com/, for MX hosting, and have had nothing but GREAT
things to say about them, they are responsive and never had any problems.
www.hostmysite.com is also a great host as well.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003 1:34 PM
To: CF-Talk
Subject: RE: Hosting Question


awesome.crap.i guess there was a reason why it is so cheap for cf
hosting. i cant even get an image to display on my site. is there a setting
i need to have in my account to allow images, or is there some bizzare path
i must use to make them work?

-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003 1:12 PM
To: CF-Talk
Subject: RE: Hosting Question


Yeah, I used them for a while, nothing but problems with them and would not
recommend them at all.


Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003 1:23 PM
To: CF-Talk
Subject: Hosting Question


Is anyone using CFM-Resources for hosting?








~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Hosting Question

2003-02-11 Thread Robert Bailey
So ya need to go fix it, Pablo :)


Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Pablo Varando [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 11, 2003 1:38 PM
To: CF-Talk
Subject: Re: Hosting Question


I used to own it :)

Not there no more though :)

They're good and affordable... always a good thing.. also check out:
http://www.colony1.net/

Packages available here:
https://secure.colony1.net/easycfmpromo/

Pablo

- Original Message -
From: John Stanley [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, February 11, 2003 12:23 PM
Subject: Hosting Question


 Is anyone using CFM-Resources for hosting?







~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: who on here did the death clock?

2003-02-06 Thread Robert Bailey
I used to help out with a few radio stations in West Palm beach, they had
music piped in sometimes, buy pretty much their systems played MP3 files as
opposed to actually getting a CD.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Jeffry Houser [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 9:03 AM
To: CF-Talk
Subject: Re: who on here did the death clock?


  Off topic here, but Clear Channel owns a significant portion of the radio
stations...
  Payola does exist.
  Most playlists are piped in (I'm not sure how) to computers which play
them.  The DJs have no control.  I've heard that the three biggest radio
stations in Connecticut are three computers sitting side by side in a room.

At 08:28 AM 2/6/2003 -0500, you wrote:

lol,
guess its the competition thing!
like when you hear a song on one station then switch to another 5 minutes
later and its on and its always some really off the wall song. makes u
scratch your nads and wonder if competition really exists! haha

ok, no sleep hasn't made me any funnier today

Dave

-- .::. -

- Original Message -
From: Critz [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, February 06, 2003 8:13 AM
Subject: Re: who on here did the death clock?


  oi Dave!!
 
  ha.  they  must get their ideas from same place, because radio station
in
Raleigh was going on about
  it this morning as well.
 
 
  Critz
 
 
 
 
  
  Thursday, February 6, 2003, 1:18:10 AM, you wrote:
 
  DL awee, that's right, I knew I had seen it somewhere.
 
  DL was just funny, I was driving today and one of the local Louisville
radio
  DL stations was talking about it today, was quite amusing.
  DL they were quite intrigued with it, lol
 
  DL Dave
 
  DL -- .::. -
 
  DL - Original Message -
  DL From: Pablo Varando [EMAIL PROTECTED]
  DL To: CF-Talk [EMAIL PROTECTED]
  DL Sent: Thursday, February 06, 2003 1:09 AM
  DL Subject: Re: who on here did the death clock?
 
 
   That would be Raymond Camden
  
   :)
  
   Pablo
   - Original Message -
   From: Dave Lyons [EMAIL PROTECTED]
   To: CF-Talk [EMAIL PROTECTED]
   Sent: Wednesday, February 05, 2003 11:56 PM
   Subject: who on here did the death clock?
  
  
i know someone here did the death clock
anyone know who it is?
   
Dave
   
-- .::. -
   
   

   
   
  
  DL
 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Robert Bailey
OK, I know I posted this question a few days ago, but want to see if I can
catch someone on this list that may be able to help me. I know someone out
there has to know what I should do.

I have some PDB files, a Palm database. I need to get this data into an
access database. I have tried a few of the PDB converters out there that
did not work. I need some help! Anyone?

Thanks!
Robert Bailey
Famous for nothing

---
[This E-mail scanned for viruses]

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Robert Bailey
getting the data out of the databases, on a PC, that I can use in a CF app.
I have tried 3 conversion tools on the web, none of them worked.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:07 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


I meant what is the exact problem?

Still to early..:-)



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 2:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


That is the exact problem?



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 1:41 PM
To: CF-Talk
Subject: Anyone? PDB files? (Palm Databases)


OK, I know I posted this question a few days ago, but want to see if I
can catch someone on this list that may be able to help me. I know
someone out there has to know what I should do.

I have some PDB files, a Palm database. I need to get this data into an
access database. I have tried a few of the PDB converters out there
that did not work. I need some help! Anyone?

Thanks!
Robert Bailey
Famous for nothing

---
[This E-mail scanned for viruses]




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Robert Bailey
Yes, that is the exact problem, I need the data that is in those databases
available to my CF app. Do not know how I can convert it to something
readable (SQL or MDB) or read it with CF.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


That is the exact problem?



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 1:41 PM
To: CF-Talk
Subject: Anyone? PDB files? (Palm Databases)


OK, I know I posted this question a few days ago, but want to see if I
can catch someone on this list that may be able to help me. I know
someone out there has to know what I should do.

I have some PDB files, a Palm database. I need to get this data into an
access database. I have tried a few of the PDB converters out there
that did not work. I need some help! Anyone?

Thanks!
Robert Bailey
Famous for nothing

---
[This E-mail scanned for viruses]



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Robert Bailey
it is a binary, can not read it at all, only on a palm pilot, but no longer
have the palm, so I am guessing I am stuck?

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: David R. McGraw [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:27 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


Can You read the PDB as a database?
Or only as a file?

David R. McGraw II
Adelphia Communications
Intranet Application Developer
Work Phone : 814.260.3505
Work Email : [EMAIL PROTECTED]
Home Email : [EMAIL PROTECTED]



-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


getting the data out of the databases, on a PC, that I can use in a CF app.
I have tried 3 conversion tools on the web, none of them worked.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:07 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


I meant what is the exact problem?

Still to early..:-)



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 2:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


That is the exact problem?



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 1:41 PM
To: CF-Talk
Subject: Anyone? PDB files? (Palm Databases)


OK, I know I posted this question a few days ago, but want to see if I
can catch someone on this list that may be able to help me. I know
someone out there has to know what I should do.

I have some PDB files, a Palm database. I need to get this data into an
access database. I have tried a few of the PDB converters out there
that did not work. I need some help! Anyone?

Thanks!
Robert Bailey
Famous for nothing

---
[This E-mail scanned for viruses]






~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Robert Bailey
we could view it yesterday on a friends palm, and with the PDB viewer, shows
some of what I was looking for in the report, but do not know the datatypes
for it to dump the data.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: David R. McGraw [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:37 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


Hmmm
Can you test on another Palm Pilot to see if the Database is still intact?
It sound like maybe the file has become corupted.
Just brain storming here.

David R. McGraw II
Adelphia Communications
Intranet Application Developer
Work Phone : 814.260.3505
Work Email : [EMAIL PROTECTED]
Home Email : [EMAIL PROTECTED]



-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:13 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


it is a binary, can not read it at all, only on a palm pilot, but no longer
have the palm, so I am guessing I am stuck?

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: David R. McGraw [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:27 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


Can You read the PDB as a database?
Or only as a file?

David R. McGraw II
Adelphia Communications
Intranet Application Developer
Work Phone : 814.260.3505
Work Email : [EMAIL PROTECTED]
Home Email : [EMAIL PROTECTED]



-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


getting the data out of the databases, on a PC, that I can use in a CF app.
I have tried 3 conversion tools on the web, none of them worked.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:07 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


I meant what is the exact problem?

Still to early..:-)



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 2:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


That is the exact problem?



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 1:41 PM
To: CF-Talk
Subject: Anyone? PDB files? (Palm Databases)


OK, I know I posted this question a few days ago, but want to see if I
can catch someone on this list that may be able to help me. I know
someone out there has to know what I should do.

I have some PDB files, a Palm database. I need to get this data into an
access database. I have tried a few of the PDB converters out there
that did not work. I need some help! Anyone?

Thanks!
Robert Bailey
Famous for nothing

---
[This E-mail scanned for viruses]








~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: Anyone? PDB files? (Palm Databases)

2003-02-06 Thread Robert Bailey
viewing some of the data, the report has the name of the database, etc...
but Do not know the fields and field types, ugh



Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:31 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


Actually you can view it.

http://www.palmgear.com/software/showsoftware.cfm?prodID=5071

You might be able to copy the info with this also.  Never used it
before.



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 2:13 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


it is a binary, can not read it at all, only on a palm pilot, but no
longer have the palm, so I am guessing I am stuck?

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: David R. McGraw [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:27 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


Can You read the PDB as a database?
Or only as a file?

David R. McGraw II
Adelphia Communications
Intranet Application Developer
Work Phone : 814.260.3505
Work Email : [EMAIL PROTECTED]
Home Email : [EMAIL PROTECTED]



-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


getting the data out of the databases, on a PC, that I can use in a CF
app. I have tried 3 conversion tools on the web, none of them worked.

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:07 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


I meant what is the exact problem?

Still to early..:-)



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==


-Original Message-
From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 2:01 PM
To: CF-Talk
Subject: RE: Anyone? PDB files? (Palm Databases)


That is the exact problem?



==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED] ==


-Original Message-
From: Robert Bailey [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 1:41 PM
To: CF-Talk
Subject: Anyone? PDB files? (Palm Databases)


OK, I know I posted this question a few days ago, but want to see if I
can catch someone on this list that may be able to help me. I know
someone out there has to know what I should do.

I have some PDB files, a Palm database. I need to get this data into an
access database. I have tried a few of the PDB converters out there
that did not work. I need some help! Anyone?

Thanks!
Robert Bailey
Famous for nothing

---
[This E-mail scanned for viruses]








~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: who on here did the death clock?

2003-02-06 Thread Robert Bailey
And a scary thought

Thanks!
Robert Bailey
Famous for nothing


-Original Message-
From: David R. McGraw [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:48 PM
To: CF-Talk
Subject: RE: who on here did the death clock?


By then all code will be written by a program that can code in any
language

I thought of an idea for a movie once, calling it
Duce Ex Machina  - it's latin for God machine.

Think about a program that systematically goes through every combination of
1,000,000 chars...
and then checks it to see if its executable...

Eventually, it will code its self but better,
Eventually it will code everything...
and excute it.

It would write novels,
movie scripts,
And in theroy, it would eventually write a 1,000,000 character story about
YOU,
ever detail being 100% correct.

So if it creates itself but better,
it will eventually create the perfect AI.
and therefore become the God Machine

Although it would create Tera bytes of worthless crap too.
But its a neat idea for a movie.

David R. McGraw II



-Original Message-
From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED]]
Sent: Thursday, February 06, 2003 3:33 PM
To: CF-Talk
Subject: RE: who on here did the death clock?


Nah, he'll just run the exploit code and think himself 'l337.

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 942-5378
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/


 -Original Message-
 From: Dave Lyons [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, February 06, 2003 11:16 AM
 To: CF-Talk
 Subject: Re: who on here did the death clock?


 believe me, no kid here in ky will ever be that smart!


 Dave

 -- .::. -

 - Original Message -
 From: Mark A. Kruger - CFG [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Thursday, February 06, 2003 11:04 AM
 Subject: RE: who on here did the death clock?


  By then all code will be written by a program that can code in any
 language
  and was created by a 9 year old from Pineville KY.
 
 
 
  -Original Message-
  From: cfhelp [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, February 06, 2003 9:51 AM
  To: CF-Talk
  Subject: RE: who on here did the death clock?
 
 
  I am going to die in 2072 I will be 104.
 
  I wonder how much code I will do by then.
 
  Rick
 
  -Original Message-
  From: Stephen Moretti [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, February 06, 2003 8:33 AM
  To: CF-Talk
  Subject: Re: who on here did the death clock?
 
  http://www.deathclock.com/
 
  I believe its still running on an access database after all these years
 and
  all the traffic generated by it being talked about on morning
 radio shows
  across the globe...
 
  ;o)
 
  - Original Message -
  From: Luce, Greg [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Thursday, February 06, 2003 2:18 PM
  Subject: RE: who on here did the death clock?
 
 
   What is the Death Clock?
  
   -Original Message-
   From: Dave Lyons [mailto:[EMAIL PROTECTED]]
   Sent: Thursday, February 06, 2003 12:57 AM
   To: CF-Talk
   Subject: who on here did the death clock?
  
  
   i know someone here did the death clock
   anyone know who it is?
  
   Dave
  
   -- .::. -
  
  
  
  
  
 
 
 



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




PDB databases

2003-02-05 Thread Robert Bailey
Anyone know how I can convert or read PDB databases?

Thanks!
Robert Bailey
Famous for nothing
---
[This E-mail scanned for viruses]

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: distance between zip codes

2003-01-18 Thread Robert Bailey
There are a few web services that will do that, check out
www.xmethods.net and you will find them. Cheaper then buying a database,
but just have to hope they will be available down the road

 
Robert Bailey
[EMAIL PROTECTED]
Famous for nothing!
http://www.tinetics.com
 
 

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, January 18, 2003 4:31 PM
To: CF-Talk
Subject: RE: distance between zip codes

Search the archives.  Basically, buy a DB that provides ZIP Code to lat
longitude, then calculate.  Here is one post that I saved .

For those who were looking for the UDF to do distance between two
lat/lons, here's my version:

http://toshop.com/udf/latlondist.cfm

Rob Brooks-Bilson wrote a UDF at cflib.org that does basically the same
thing but I use a different calculation that's subject to little
rounding error for short distances, has more options for the result
units and has more precise conversion factors.  Rob's UDF also requires
DegToRad UDF which mine does not require since I've done the conversion
within the latlondist UDF.

Rob's version is here:

http://www.cflib.org/udf.cfm?ID=73




-Original Message-
From: Dave Lyons [mailto:[EMAIL PROTECTED]]
Sent: Saturday, January 18, 2003 6:09 PM
To: CF-Talk
Subject: distance between zip codes


anyone know of a good tag or tutorial that calculates the distance
between
zip codes?
I found 1 but it was like $400
Dave




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: UDF question -- make num a string

2003-01-17 Thread Robert Bailey
outNum = finalResult  '%';

 
Robert Bailey
[EMAIL PROTECTED]
Famous for nothing!
http://www.tinetics.com
 
 

-Original Message-
From: Owens, Howard [mailto:[EMAIL PROTECTED]] 
Sent: Friday, January 17, 2003 4:29 PM
To: CF-Talk
Subject: UDF question -- make num a string

I'm trying to do a little UDF to convert something like .77809 to 78%

If I do something like:

outNum=finalResult + '%';

I get an error that says cannot convert % to a number ...

well, I don't want it to be a num. I want it to be a string.  I can't
find a
way to get a string output in the return.

H.

~~
Howard Owens
Internet Operations Coordinator
InsideVC.com/Ventura County Star
[EMAIL PROTECTED]
AIM: GoCatGo1956
~~


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




  1   2   >