CFBuilder Colorization

2011-12-09 Thread Michael Brennan-White

Really stupid question:

I am using one of the really great colorization resources I found for CFBuilder 
2 which really is helpful on my eyes with a dark background.  

However:

When I type a tag like  the variablename part 
displays as black text which doesn't stand out enough to me.  What would I need 
to set for the Variablename piece of this code be a different color.  

Like I said, a very dumb question.  

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349041
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Switching to new Host question?

2008-07-26 Thread Michael Brennan-White
I am moving my site to a new host.  

I realize that it will take a few days for the change to be reflected 
everywhere.  

Would it be a an okay idea to place a cflocation on the current page to change 
to the new server address so that the users are all using the same converted 
database.  

Does anyone have example code so I could have a message display for 15 seconds 
prior to the page relocation?  

Thanks in advance,

Michael
http://jobsearchlog.com 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309758
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


How do I extract Error Information from Structure?

2008-07-31 Thread Michael Brennan-White
My error function sends me error information through email.  In addition I 
would like to place this information into a database table to track the number 
of times the error happens and indicate when the error is resolved.  

Error  (struct)
  - TagContext (struct)
   - error (array)
 -Error (struct)
   column
   line
   template

For expression type errors, there is a structure named tagcontext which has an 
array named error which has a structure named error.  The column, line and 
template values are what I am trying to insert into the database (among other 
fields).  How would I access these items?  

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310029
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How do I extract Error Information from Structure?

2008-08-01 Thread Michael Brennan-White
Josh,

Thank you very much.  That got me going on the path to what I need to 
accomplish.  

Once again, thanks,

Michael

>Here is a little function I use to send myself error messages - 
>arguments.exc is the exception structure that the onError method receives - 
>I pass it through to an Error.cfc.
>
>
>
>   Error Report: #DateFormat(Now(),"long")#, 
>#TimeFormat(Now(),"long")#
>   #arguments.exc.message#
>   The error occurred in 
>#arguments.exc.TagContext[1].template#
>   #arguments.exc.detail#
>
>
>   
>   #arguments.exc.TagContext[i].Template#, 
>Line #arguments.exc.TagContext[i].Line#
>   
>
>
>
>-- Josh
>
>
>> 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310050
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Why wasn't this error caught by my onError function

2008-08-08 Thread Michael Brennan-White
Hi,

I was using the production version of my pages tonight and got an error that 
should have been caught before I sent it live. 





Okay I have fixed the problem but don't know why it didn't trigger my error 
function in application.cfc and showed the CF error message with all the debug 
information rather than my error page.  








   
Error Report: #DateFormat(Now(),"long")#, 
#TimeFormat(Now(),"long")#   
#arguments.exc.Type# 
#arguments.exc.message#   
The 
#arguments.exc.TagContext[1].type# error occurred in 
#arguments.exc.TagContext[1].template#
Detail:#arguments.exc.detail#
   







Data Source: #arguments.exc.DataSource# 
#arguments.exc.NativeErrorCode#
SQL:#arguments.exc.sql#
Query 
Error:#arguments.exc.queryError#
Where Clause:#arguments.exc.where#


 Error 
Number:#arguments.exc.ErrNumber#

   

Extended 
Info:#arguments.exc.ExtendedInfo#


Lock 
#arguments.exc.LockName#:#arguments.exc.LockOperation#


   
  
 
 
   

#ErrorReport.Places#




Insert into ErrorTrapper(AppName,Type, 
Message,ExceptionType,
TemplatePage,ErrorLine,ErrorColumn,ErrorDetail,
DataSource,ErrorCode,QuerySQL,QueryError,QueryWhere,
Places, UserID)
values (
,
,
,
,
,
,
,
,
,
,
,
,
,
,)




  

#content#


 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310599
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Why wasn't this error caught by my onError function

2008-08-08 Thread Michael Brennan-White
Actually the error was :


> 
> 
> Hi,
> 
> I was using the production version of my pages tonight and got an 
> error that should have been caught before I sent it live. 
> 
> 
> 
> 
> 
> Okay I have fixed the problem but don't know why it didn't trigger my 
> error function in application.cfc and showed the CF error message with 
> all the debug information rather than my error page.  
> 
> 

> 

> 
>   

> 

> 

>AppName = this.name,

> Type = arguments.exc.Type,

> Message = arguments.exc.message,

> ExceptionType = arguments.exc.TagContext[1].type,

> TemplatePage = arguments.exc.TagContext[1].template,

> ErrorLine = arguments.exc.TagContext[1].line,

> ErrorColumn = arguments.exc.TagContext[1].column,

> ErrorDetail = arguments.exc.detail,

> DataSource = this.dsn,

> ErrorCode = 0,

> QuerySQL  = '',

> QueryError = '',

> QueryWhere = '',

> Places = 'Error Locations:', 
>   UserID = session.thisuser

> }>

>

> Error Report: #DateFormat(Now(),"long")#, #TimeFormat(Now(),
> "long")#   

> #arguments.exc.Type# 
> #arguments.exc.message#   

> The #arguments.exc.
> TagContext[1].type# error occurred in #arguments.exc.TagContext[1].
> template#

> Detail:#arguments.exc.detail#
   
> 

> 

> 

> 

> 

> 

> 

> 

> Data Source: #arguments.exc.DataSource# #arguments.
> exc.NativeErrorCode#

> SQL:#arguments.exc.sql#

> Query Error:#arguments.exc.queryError#

> Where Clause:#arguments.exc.where#

> 

> 
 
> Error Number:#arguments.exc.ErrNumber#

> 
   
> 

> 

> Extended Info:#arguments.exc.ExtendedInfo#

> 

> 

> Lock #arguments.exc.LockName#:#arguments.exc.
> LockOperation#

> 

> 

>  
> 
 
>  Template />
 
>  Line & ':' />
 
>  chr(13) />  

> 

> #ErrorReport.Places#

> 

> 

> 
>result="QueryResultz">
>   Insert into ErrorTrapper(AppName,Type, 
> Message,ExceptionType,

> TemplatePage,ErrorLine,ErrorColumn,ErrorDetail,

> DataSource,ErrorCode,QuerySQL,QueryError,QueryWhere,

> Places, UserID)
>   values ( cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.Type#" 
> cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.Message#" 
> cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.ExceptionType#" 
> cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.TemplatePage#" 
> cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.ErrorLine#" 
> cfsqltype="cf_sql_numeric" />
>   , value="#ErrorReport.ErrorColumn#" 
> cfsqltype="cf_sql_numeric" />
>   , value="#ErrorReport.ErrorDetail#" 
> cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.DataSource#" 
> cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.ErrorCode#" 
> cfsqltype="cf_sql_numeric" />
>   , value="#ErrorReport.QuerySQL#" 
> cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.QueryError#" 
> cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.QueryWhere#" 
> cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.Places#" 
> cfsqltype="cf_sql_varchar" />
>   , value="#ErrorReport.UserID#" 
> cfsqltype="cf_sql_integer" />)
>   
>   
>   
>   
  
>username="[EMAIL PROTECTED]"server="**.com"
>   type="html"
>   subject="JSL Error #iErrorLogID# 
> #arguments.exc.message#"  
> failto="[EMAIL PROTECTED]">
>   
>   #content#
>   
>   

>  


~~~

Re: Why wasn't this error caught by my onError function

2008-08-09 Thread Michael Brennan-White
Okay that makes sense.  Thanks for the help.  

>Which is a syntax error and can't be caught by error handling.
>
>
>...
>
>
>> 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:310626
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Row Height or Padding in CFGrid

2008-03-25 Thread Michael Brennan-White
Is there a way to set the Row Height or Padding of a row  in CFGrid.  I have a 
small number of records I want to display at a time and would like to combine 
making the grid look like a table with the paging & sorting capabilities of the 
grid.

thanks in advance,

Michael 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302032
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Row Height or Padding in CFGrid

2008-03-25 Thread Michael Brennan-White
Azadi,

Thanks for the reply.  I am referring to an html cfgrid.  I am calling the grid 
into a div inside a cflayoutarea.

Should the CSS code be on the page that is being pulled in or on the index page 
or as part of the css files being included in the index page? 

Michael



> assuming you are referring to an html cfgrid, you will need to
> modify/'over-ride' the cf's css for the grid.
> i have managed to achieve a very table-like look by adding the 
> following
> style declaration to my page with an html cfgrid:
> [style]
> td div, table div, form div { margin:0; }
..
> x-grid-header { margin:0; }
..
> x-grid-hd-row td { line-height:normal; }
> [/style]
> 
> this removes the annoying margins on various sections of the grid
> (header/footer, rows), making it look more like a normal table...
> 
> hth
> 
> Azadi Saryev
> Sabai-dee.com
> http://www.sabai-dee.com/
> 
> 
> 
> Michael Brennan-White wrote:
> > Is there a way to set the Row Height or Padding of a row  in CFGrid.  
> I have a small number of records I want to display at a time and would 
> like to combine making the grid look like a table with the paging & 
> sorting capabilities of the grid.
> >
> > thanks in advance,
> >
> > Michael 
> >
> > 


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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302072
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Binding to the display from a cfselect rather than the value

2008-03-27 Thread Michael Brennan-White
Hi,

I would like to bind a cfinput text box to the selected display of an  item 
from a cfselect rather than the id of the record.?   

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302173
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Binding to the display from a cfselect rather than the value

2008-03-27 Thread Michael Brennan-White
Ray,

Thank you very much.  I had a feeling that was going to be the answer.  

> Bind to a JS function. This will 'see' the change, and you can grab
> the selectedIndex's display value.
> 
> 
> On Thu, Mar 27, 2008 at 11:31 AM, Michael Brennan-White
> <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> >  I would like to bind a cfinput text box to the selected display of 
> an  item from a cfselect rather than the id of the record.?
> >
> >  


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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:30
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


How to focus on a cfinput field in a cflayoutarea

2008-04-02 Thread Michael Brennan-White
I know how to do this on your traditional html page by using the onload event 
of the body tag.  But:

I am populating a CFDiv with another cfm page.  I want to set focus on the 
first field in a form.  I use the ajaxonload to call a javascript function to 
do the following:
document.form.somefield.focus() and also 
document.getElementById('somefield').focus()

I can step through the function in Firebug but the text box doesn't take focus. 
 

What am I doing wrong?  

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302487
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Do I need ODBC Server

2008-04-07 Thread Michael Brennan-White
I installed the last HotFix for CF8 on our Win 2003 server running IIS early 
last week.  

Over the weekend the server was restarted and discovered the CF ODBC Server 
could not start because the file C:\ColdFusion8\db\slserver54\bin\swstrtr.exe 
was not found.  Sure enough, the bin folder was not there anymore.  

My apps are running fine accessing data from both MSSQL and mySQL.  

Do I need these services?  

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302838
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Do I need ODBC Server

2008-04-07 Thread Michael Brennan-White
Nathan, 

Thanks for the reply.  I guess I started having the service on when I had to do 
the custom connection to mySQL5?  

I still don't understand where the folder went?  I have it on my local install. 
 

Once again, Thanks.  

Michael

>Michael,
>
>If you aren't using any ODBC connections with your ColdFusion applications,
>you can safely disable the ColdFusion ODBC services. Same goes with the
>search server service if you're not using cfsearch or verity, as well as the
>.NET service if you aren't employing that.
>
>-- 
>nathan strutz
>http://www.dopefly.com/
>
>
>On Mon, Apr 7, 2008 at 7:01 AM, Michael Brennan-White <
>[EMAIL PROTECTED]> wrote:
>
>> 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302850
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Restricting page access if not from cf8 interface

2008-04-12 Thread Michael Brennan-White
I have a number of pages that get pulled into cflayoutareas from my main page.  
The menu displays the addresses to these pages and I would like to keep someone 
from accessing the pages directly by the URL.  

What method(s) will make it   possible to only allow access to 
these pages by my interface.  (BTW, the pages in question are all CFM pages.  )

Thanks for your help now and in the past.  

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303246
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Restricting page access if not from cf8 interface

2008-04-14 Thread Michael Brennan-White
Tom, 

Thanks for the reply.  I wasn't very clear in my original question.  

This is an example of what I was hoping to do. 

I have a cfpod in the main layout bound to links.cfm.  Is there code I can 
place in links.cfm  which will redirect the user to index.cfm unless the page 
is being viewed through the cfpod.  

This isn't a matter of security but instead a way of ensuring the users see the 
pages in the way we intend.  

Once again thanks for the reply.  

Michael Brennan-White

> On Sunday 13 Apr 2008, Michael Brennan-White wrote:
> > The menu displays the addresses to these pages and I would like to
> > keep someone from accessing the pages directly by the URL.
> 
> You want to stop someone who can see the URL, from using the URL ? 
> That's not 
> going to work.
> 
> -- 
> Tom Chiverton
> Helping to enormously engage revolutionary e-services
> on: http://thefalken.livejournal.com
> 
> 
> 
> This email is sent for and on behalf of Halliwells LLP.
> 
> Halliwells LLP is a limited liability partnership registered in 
> England and Wales under registered number OC307980 whose registered 
> office address is at Halliwells LLP, 3 Hardman Square, Spinningfields, 
> Manchester, M3 3EB.  A list of members is available for inspection at 
> the registered office. Any reference to a partner in relation to 
> Halliwells LLP means a member of Halliwells LLP.  Regulated by The 
> Solicitors Regulation Authority.
> 
> CONFIDENTIALITY
> 
> This email is intended only for the use of the addressee named above 
> and may be confidential or legally privileged.  If you are not the 
> addressee you must not read it and must not use any information 
> contained in nor copy it nor inform any person other than Halliwells 
> LLP or the addressee of its existence or contents.  If you have 
> received this email in error please delete it and notify Halliwells 
> LLP IT Department on 0870 365 2500.
> 
> For more information about Halliwells LLP visit www.halliwells.com.


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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303316
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Binding to a CFGrid from tabs

2008-04-21 Thread Michael Brennan-White
I have a generic html cfgrid which is bound to a CFC that returns a large 
amount of data.  The test page is at http://67.199.57.74/jobsearchlog/, select 
the Jobs tab in the side menu and select saved jobs.  

The number of returned fields are large enough that I want to break the content 
into tabbed subject areas for ease of editing the values.  This is a simple 
example of what I am trying to do which works in Firefox and Safari but not in 
IE.  


 
 
 
   
   
   
 


In Firefox if I place cfform tags around the form elements in the tab source 
pages the cfinput fields will bind to the grid without a problem. 

If I run the same code in IE the binding fails on the first bound cfinput 
element. If I run the page with the cfdebug=true URL parameter there are no 
errors other than the fact it can't bind to the first field.  

In both browsers I can run the code by placing the tab code directly in the tab 
instead of the source. 

Is there something I am missing here to get it to work the "right" way? 

Michael




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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:303949
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Binding to a CFGrid from tabs

2008-04-22 Thread Michael Brennan-White
Gary,

Thanks for the reply.  

I wasn't before because I had already used them in the main index page.  I 
tried running the grid/tabs page by itself after adding cfajaximport tags for 
cfform and cfgrid.  

The page ran in Firefox (2.0.0.14) without a problem but failed in IE7.  

If I get rid of the source attribute in the cflayoutarea and place the tab code 
in the  tags the code works in both Firefox and 
IE.  

>Michael,
>
>Are you using cfajaimport in your tab cfm pages?  If you have ajax code in
>your tab source pages you have to use the cfajaximport on those pages too.
>since you are binding stuff in those souce pages to your form you probably
>need to do an 
>
>Give that a try...
>
>-- 
>Gary Gilbert
>http://www.garyrgilbert.com/blog 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304021
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: OT - Google Hosted Email

2008-05-08 Thread Michael Brennan-White
>I'm wondering if GMail could be my saviour here too. I have a simple
>mail system where the client can setup mail 'templates' and choose to
>send that email to a client - macros they define get replaced by name,
>etc. Would this kind of thing be doable? I.e. can I use a google api
>to create email bodies, etc?
>
>Dominic
>
>-- 
>Blog it up: http://fusion.dominicwatson.co.uk

Dominic,

It sounds like we are doing something remarkably similar and it has definitely 
been the most unpleasant part of my entire project.  It would be great to 
switch everything over to a Gmail domain if it would work.  

Just curious, Are all the clients in your scenario registered email users of 
your domain?   

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:304964
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Refreshing CFPod Contents

2008-05-11 Thread Michael Brennan-White
Is there a way to programmatically refresh the contents of a CFPod similar to 
the way you can call the GridRefresh method to refresh the grid.  

OR

Is there a way to set a refresh time for a pod?  

Thanks,

Michael 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305062
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Anyone going to Webmaniacs next week?

2008-05-14 Thread Michael Brennan-White
I am going.  Very excited as it is my first CF conference.  

>> Myself and two of my coworkers are going to be at Webmaniacs 
>> next week. I'm just wondering if any of you are planning on 
>> attending.
>
>I'll be there, of course.
>
>Dave Watts, CTO, Fig Leaf Software
>http://www.figleaf.com/
>
>Fig Leaf Training: Adobe/Google/Paperthin Certified Partners
>http://training.figleaf.com/
>
>WebManiacs 2008: the ultimate conference for CF/Flex/AIR developers!
>http://www.webmaniacsconference.com/ 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305244
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Anyone going to Webmaniacs next week?

2008-05-14 Thread Michael Brennan-White
I am going Frameworks and Test Unit shopping.  

since I'm footing the bill, I am staying at the Harrington instead of the 
conference hotel. Much cheaper.  Hopefully it will be good.  It had decent 
reviews from tripadvisor.   

>Myself and two of my coworkers are going to be at Webmaniacs next week. I'm
>just wondering if any of you are planning on attending.
> 
>
> 
>Andy Matthews
>Senior ColdFusion Developer
>Office:  615.627.9747
>Fax:  615.467.6249
>www.dealerskins.com  
> 
>Total customer satisfaction is my number 1 priority! If you are not
>completely satisfied with the service I have provided, please let me know
>right away so I can correct the problem, or notify my manager Aaron West at
>[EMAIL PROTECTED] 

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305253
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


What is the mime type for Word Files

2008-06-02 Thread Michael Brennan-White
I am trying to upload a .doc file and it keeps coming back as an incorrect Mime 
type.



I can upload html, text and pdf files without a problem.  



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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306679
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: What is the mime type for Word Files

2008-06-02 Thread Michael Brennan-White
>google ".doc mime type"
>or
>use cffile to upload a .doc file without restrictions on mime types,
>cfdump cffile and check the mime type and sub-type returned by the dump.
>
>Azadi Saryev
>Sabai-dee.com
>http://www.sabai-dee.com/
>
>
>
>Michael Brennan-White wrote:
>>

Duh, I don't have word installed on my laptop which I am using as the dev 
server.  Thanks.  

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306683
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Flex/ActionScript 3 Instructor-led Training

2008-06-09 Thread Michael Brennan-White
> All,
> 
> Can anyone recommend training in the Southern New Hampshire, 
> Northeastern Mass area? 
> 
> What are some of the popular discussion forums for Flex and 
> ActionScript 3? Like HOF?
> 
> Any other good online video training resources I'm not aware of other 
> than TotalTraining.com, tv.adbe.com or Lynda.com?
> 
Thanks

In case I miss the replies could you send me a message with the resources you 
receive?  I live in Manchester and would be interested in similar courses.  

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

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307099
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Does CF8 use activex components

2009-02-10 Thread Michael Brennan-White

I was asked this yesterday and said no but something weird is happening on our 
IE installs. 

Yesterday when we enter my CF8 ColdFusion RIA app in IE, we are warned that 
since we have ActiveX disabled some applications may not display properly.  The 
application does display and function correctly but it is an annoying message 
and leads to the question of whether CF is using Active X.



~|
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:319114
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Does CF8 use activex components

2009-02-10 Thread Michael Brennan-White

Dave,

Thanks for the reply.  Would I be right in assuming if I am not using the 
EnableCAB attribute and only using the CF8 ajax components (and no FlashForms) 
that this is a false error?  

Thanks,

Michael

> > Yesterday when we enter my CF8 ColdFusion RIA app in IE, we are 
> warned that since we have
> > ActiveX disabled some applications may not display properly.  The 
> application does display and
> > function correctly but it is an annoying message and leads to the 
> question of whether CF is
> > using Active X.
> 
> CF doesn't use ActiveX. Flash uses ActiveX to display in IE. The
> CFFORM tag's ENABLECAB attribute uses ActiveX to persistently store
> Java applets used by CFFORM.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> 
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more 
information! 

~|
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:319117
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Does CF8 use activex components

2009-02-10 Thread Michael Brennan-White

I am using a very vanilla CFLayout page with cfajaxproxy calls and the jQuery 
framework.  I do have the java machine installed (since it is required by 
Eclipse).  

>If you are only using Ajax (no Java and no Flash) then you should not
>be getting ActiveX warnings. If you are seeing that warning it would
>suggest that you are using more than just Ajax without realizing it. I
>assume you are only getting this warning on the specific pages with
>RIA controls on them, and you are not seeing it on basic Web pages. Is
>it a specific ColdFusion tag you are using that is resulting in the
>warning?
>
>-Mike Chabot
>
>
>> 

~|
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:319120
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Does CF8 use activex components

2009-02-10 Thread Michael Brennan-White

it turns out that it was only happening on two workstations.  We made a change 
to the Group Policy on that server, ran gpupdate from a command window and now 
it is working correctly.  

Thanks for all your suggestions and help.

> > I am using a very vanilla CFLayout page with cfajaxproxy calls and 
> the jQuery framework. I do
> > have the java machine installed (since it is required by Eclipse).
> 
> What do you see when you view source in the page? Or, in the case of
> an AIR application, what does a tool like Wireshark tell you you're
> getting from the server?
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> 
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more 
information! 

~|
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:319126
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4