FCKEditor config file

2010-01-21 Thread Kim Hoopingarner

I have a client that needs to have a specific toolbar for the editor - but 
doesn't want to make the change in the config file.  Do you know any tricks out 
there to accomplish this?  H 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329895
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: FCKEditor config file

2010-01-21 Thread Kim Hoopingarner

Thank you!   Giving it a try now.  I knew someone would have an answer. :) 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329920
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: FCKEditor config file

2010-01-21 Thread Kim Hoopingarner

I get this error:Element BEANFACTORY is undefined in a Java object of type 
class.

I'm sure this is something simple to fix? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329922
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: FCKEditor config file

2010-01-21 Thread Kim Hoopingarner

I got it to work by doing this.  :)  YE!   Thank you for getting me on the 
right track!

cfscript
fckEditor = createObject( component, 
/CFIDE/scripts/ajax/FCKEditor/fckeditor );
fckEditor.Config[CustomConfigurationsPath] = 
#session.root#/js/FCKEditor_configCMS.js;
fckEditor.instanceName  = introText;
fckEditor.value = ;
fckEditor.basePath  = /CFIDE/scripts/ajax/FCKEditor/;
fckEditor.width = 460;
fckEditor.height= 245;
fckEditor.ToolbarSet= CMS;
fckEditor.create(); // create the editor.
/cfscript 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329924
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: FCKEditor config file

2010-01-21 Thread Kim Hoopingarner

OK - stumped again.  I need to move a value into the editor when a button is 
clicked. I retrieve that value from the database - and then set the editor 
equal.  But it keeps returning blank - and I know a value is being returned 
from the cfinvoke.

cfinvoke component=#session.cfc#.msr_multisigs_intros method=getIntro 
returnvariable=qGetIntro

 cfinvokeargument name=introID value=#form.editIntro# /
/cfinvoke

I've tried this...
form.introText = qGetIntro.introText

Another easy answer? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329926
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner

I have a client that has a different image showing on each content panel of an 
accordion.  They also have a link showing that when clicked needs to expand 
that same panel with additional text.  (It shows Disclaimer info)

I set up the accordion.  All is well. I have 5 panels with content. I put the 
disclaimer text into div id=hiddenDisclaimer style=display:noneTEXT 
HERE/div

Then when the link is clicked I execute a simple javascript:
function showOrHideDisclaimer()
{
if (document.getElementById(hiddenDisclaimer).style.display == 
none){
   document.getElementById(hiddenDisclaimer).style.display = 
block;
}
else {
   document.getElementById(hiddenDisclaimer).style.display = 
none;
}
}

The concept works, but only having an effect on panel #1's content.  So if I 
click on the link in panel #2 - panel #1 is altered, not #2.  I can't figure 
this one out.  Hoping I was clear and you know the secret!

Thanks!
Kim 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328812
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner

what is jquery? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328814
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner

Yes, I googled and found it before your info came.  :)  But thanks.

So I implemented the js into the picture and added your code.  Aside from the 
additional paran I added in the onclick - the code is identical and not quite 
working.  First - I need the text to not show initially upon creating the 
accordion.  Then the 2nd issue - it seems to close the text, but not open.  I 
really appreciate the help.  I've never used jquery.js.  Seems to be something 
I should learn.

Kim

Here's the code...

cfoutput
link rel=stylesheet type=text/css 
href=cfoutput#session.root#/cfoutput/css/SpryAccordion.css /

script type=text/javascript src=#session.root#/js/jquery.js/script
script type=text/javascript 
src=#session.root#/js/SpryAccordion.js/script

script language=javascript

function UpDown(el){
  $(.open).slideUp();
  $(.open).removeClass(open);
  $(el).addClass(open);
}

/script



div id=couponAccordion  class=Accordion   

div class=AccordionPanel
  div class=AccordionPanelTab
TITLE OF PANEL  
  /div
  div class=AccordionPanelContent 
a href=## onClick=UpDown($('##myDiv')); Disclaimer/a
div id=myDiv
div class=open TEXT/div
/div
  /div
  /div
/div
/cfoutput

script type=text/javascript
var couponAccordion = new  Spry.Widget.Accordion(couponAccordion, { 
defaultPanel: -1, nextPanelKeyCode: 78 /* n key */, previousPanelKeyCode: 80 /* 
p key */ , enableAnimation: false }); 
/script


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328817
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner

Good stuff.  Easy to figure out.  Thanks for the lead!
kim 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328818
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Store Flash File in database then load into Flash?

2009-11-19 Thread Kim Hoopingarner

I have a client that required the flash file to be stored in an Oracle 
database.  And now I am required to load Flash using an xml file that should be 
pulling its data from the database.  I cannot store files on the server - so 
I'm trying to figure out if what I'm attempting is even possible.

So far I've been able to create the xml.  But note that the url is actually a 
physical file on the system.  I can't do this.  I have to retrieve the binary 
flash data from Oracle and do this same sort of thing.  Help anyone?  Ideas?
Thanks!
___

cfinvoke component=#session.cfc#.msr_multisigs method=getIndexFlash 
returnvariable=qGetIndexFlash/cfinvoke

cfoutput
cfxml variable=xmlObject casesensitive=yes
cfprocessingdirective suppresswhitespace=yes
movies
  cfloop query=qGetIndexFlash
 movie url=#XMLFormat(qGetIndexFlash.promoFlashFile)# 
 name=#XMLFormat(qGetIndexFlash.promoXMLName)# 
 frameCount=#XMLFormat(qGetIndexFlash.promoXMLFrameCnt)#
 flashVars=#XMLFormat(qGetIndexFlash.promoXMLParams)#
 color1=#XMLFormat(right(qGetIndexFlash.promoTopColor,6))#
 color2=#XMLFormat(right(qGetIndexFlash.promoMidColor,6))#
 color3=#XMLFormat(right(qGetIndexFlash.promoBottomColor,6))# /
  /cfloop
/movies
/cfprocessingdirective
/cfxml
/cfoutput
cfset xmlString = toString(xmlObject)
cfsetting enablecfoutputonly=yes showdebugoutput=no 
cfcontent type=text/xml cfoutput#xmlString#/cfoutput


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328550
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Store Flash File in database then load into Flash?

2009-11-19 Thread Kim Hoopingarner

I'll give that a try.  I'm not supposed to write anything to the server.  Sure 
makes the easy stuff tricky.

Thanks, Dave! 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328555
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


JPG in Database - Retrieve for web page

2009-11-13 Thread Kim Hoopingarner

I have not tried this before - so I thought I might see if this is feasible.  

I have stored 2 jpgs in my database - one for the header of the site and one 
for the left side graphic.

I want to retrieve these 2 BLOBS and place them on my web page - removing the 
need to have the jpg on my file server.

Possible?  If so - hints? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328363
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: JPG in Database - Retrieve for web page

2009-11-13 Thread Kim Hoopingarner

Thanks for the heads up on performance.  Will definitely warn client.

What is the trick to streaming to a web page?  I am using the cfheader and 
cfcontent - to no avail.  It puts the header out - and then the next line is 
not seen.  here's my simple code ... just trying to get one of those BLOBS to 
work with a cfinput tag.

cfform name=x action=home.cfm 
  cfinvoke component=#session.cfc#.msr_multisigs method=getMSigImage 
returnvariable=qMsigImage
  /cfinvoke

  div
cfheader name=Content-Disposition value=inline
cfcontent type=image/jpg variable=binaryObject 

  /div
  div

cfinput type=text value=HELLO name=x

  /div
  /cfform 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328366
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: JPG in Database - Retrieve for web page

2009-11-13 Thread Kim Hoopingarner

CORRECT CODE!
 
 cfform name=x action=home.cfm 
  
 cfinvoke component=cfc.msr_multisigs method=getMSigImage
returnvariable=qMsigImage
  
 /cfinvoke
 
  
 div
cfheader name=Content-Disposition value=inline
cfcontent type=image/jpg variable=qMsigImage.binaryObject 
 /div
  
 div
cfinput type=text value=HELLO name=x
 /div

/cfform 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328368
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: JPG in Database - Retrieve for web page

2009-11-13 Thread Kim Hoopingarner

That gives an error that my data must be binary on the cfcontent.  Any other 
thoughts? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328369
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Coldfusion 8 to 9 CFTEXTAREA

2009-11-11 Thread Kim Hoopingarner

We installed CF 9 and when I run my CFTEXTAREA tag - there is no tool bar 
showing.  Help...  I'm not finding much in Google as you might assume.

cfform action=test.cfm method=post name=form1 id=form1

cftextarea richtext=true name=introText id=introText toolbar=Default 
height=350 width=650 maxlength=2000#form.introText#/cftextarea

/cfform

Thanks for any helpful hints out there!
Kim 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328272
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Coldfusion 8 to 9 CFTEXTAREA

2009-11-11 Thread Kim Hoopingarner

Thanks for your help.

Finally noticed - my development folder was placed on another server separate 
from CF.  The problem - the wwwroot directory wasn't placed there with the 
CFIDE folder.  Hence the tag wasn't finding its needed js files.

Wow - my head hurts!  Again... thanks much!
Kim 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328275
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Flash File in Oracle - Retrieving...

2009-10-20 Thread Kim Hoopingarner

Thank you for your help!  I finally found the problem was related to those darn 
cfoutput statements!!!   UGH!!!   I had the path with a substitute variable 
with out the cfoutput.  You would have thought my error would have been more 
clear. 

Kim 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327388
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


View PDF in Coldfusion

2009-10-20 Thread Kim Hoopingarner

OK - I conquered the Flash file view but now I have something peculiar with PDF 
files.  I have narrowed in on the fact that the ones that work are simple PDF - 
no graphics and small in size.  The ones that do not work (The file is damaged 
and could not be repaired message in PDF Reader) are larger with graphics 
within.  

___

I store the PDF as binary by uploading the file, then using readbinary.

  cffile action=upload 
destination=#ExpandPath('#session.root#/tmpFiles/')# 
  filefield=form.promoPDF nameconflict=makeunique 

  cffile action=readbinary 
file=#CFFILE.serverDirectory#\#CFFILE.serverFile# 
  variable=bPDF

The PROMOPDF in the table is a BLOB/Oracle.
  cfquery name=insBlob datasource=#dsn# 
INSERT INTO MSR_PROMOTIONS
(  PROMOPDF )
VALUES( #bPDF# )
  /cfquery

So I think I saved it right.  

___

Now to get it out and display...
  cfquery name=qPromoImage datasource=#DSN#
SELECT PROMOPDF 
FROM MSR_PROMOTIONS
  /cfquery

  cfcontent type=application/pdf variable=#qPromoImage.PROMOPDF # 

Adobe Acrobat error : File is damaged and cannot be repaired.
___

Help...
Thanks!
Kim


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327389
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: View PDF in Coldfusion

2009-10-20 Thread Kim Hoopingarner

Hey - I solved it on my own!

Here's the symptoms and solution in case you need...

Symptom - the database is not storing the full PDF.  I could tell my dumping 
the file it did store and seeing that its file size was 64 K and not 250 K.  

Fix - check your CF8 Administration DSN setup.  You need to have BLOB selected.

Kim 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327394
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Flash File in Oracle - Retrieving...

2009-10-19 Thread Kim Hoopingarner

Anyone have input to this thread?  Help...

Thanks! 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327319
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Flash File in Oracle - Retrieving...

2009-10-18 Thread Kim Hoopingarner

I need to retrieve a flash file that is in Oracle (BLOB) and show on a 
coldfusion page.  I don't know if it is possible to simply retrieve the data 
and show it without creating a file first.  Currently I can get this to work - 
but I have to change the binary back into a file.  I really want to stay away 
from using the file server as part of the solution.

EMBED src=#filename#
  quality=high 
  bgcolor=##FF
  width=#newWidth#
  height=#newHeight#
  type=application/x-shockwave-flash  

Thoughts?
Thanks for your expertise as always.
Kim 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327297
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Flash File in Oracle - Retrieving...

2009-10-18 Thread Kim Hoopingarner

Makes sense - except something isn't working with what I did.  I hope you don't 
mind straightening me out.

I am calling this code in my cfm file:
OBJECT classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354 
 
codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab##version=6,0,40,0;
 id=myMovieName
PARAM NAME=movie VALUE=appFlashPrep.cfm
PARAM NAME=quality VALUE=high
PARAM NAME=bgcolor VALUE=#FF

EMBED href=appFlashPrep.cfm 
quality=high bgcolor=#FF
NAME=myMovieName 
TYPE=application/x-shockwave-flash 
PLUGINSPAGE=http://www.macromedia.com/go/getflashplayer;
/EMBED
/OBJECT 

Then the appFlashPrep.cfm is this:
!--- retrieves the binary data from the BLOB in Oracle ---
cfinvoke component=cfc.msr_promotions method=getPromoImage 
returnvariable=qPromoImage/cfinvoke

cfoutput#qPromoImage.promoFlash#/cfoutput

cfcontent type=application/x-shockwave-flash 
variable=#qPromoImage.promoFlashFile#


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327299
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Flash File in Oracle - Retrieving...

2009-10-18 Thread Kim Hoopingarner

Small correction - the appFlashPrep.cfm is this:
 !--- retrieves the binary data from the BLOB in Oracle ---
 cfinvoke component=cfc.msr_promotions method=getPromoImage 
 returnvariable=qPromoImage/cfinvoke
 
 cfcontent type=application/x-shockwave-flash variable=#qPromoImage.
 promoFlash#

 cfoutput#qPromoImage.promoFlash#/cfoutput


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327300
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Flash File in Oracle - Retrieving...

2009-10-18 Thread Kim Hoopingarner

Everything checks out when I call the Prep file and save the file.  That swf 
runs like a champ.  So why am I having troubles viewing it in my cfm file?   (I 
did take out that extraneous cfoutput line.  FYI)

Any other thoughts? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327302
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Flex Help...

2009-07-30 Thread Kim Hoopingarner

I noticed that the Flex forum doesn't get as much attention as the Coldfusion - 
so forgive me for posting my Flex question here.  I know a lot of the CF 
programmers use Flex...

I created a datagrid using actionscript.  Now I need to add a button to one of 
the columns and I can't find the right way to make this work.  Does anyone have 
an idea or a good link I can read for the solution?  Thanks much! 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325110
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Report Builder - Other Language Capability

2009-06-20 Thread Kim Hoopingarner

Thanks for the reply.  I am seeing Acrobat pulling the text as Helvetica 
instead of the asian-type font.  I've gone as far now as to download/install 
the fonts for the Acrobat that are associated to the Asian characters - to no 
avail.  

And I have downloaded the MultiLanguage Support version of Acrobat Reader.  UGH

Any other thoughts? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323739
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Report Builder - Other Language Capability

2009-06-20 Thread Kim Hoopingarner

Some progress made - I know have the Arabic working.  And it does have to do 
with the font I select in the Report Builder.  So here's 2 questions...

1) What font type do I need for the asian characters?  I seem to be overlooking 
it.

2) Does this mean that I have to have different reports for the different font 
sets?  UGH 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323740
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Report Builder - Other Language Capability

2009-06-19 Thread Kim Hoopingarner

I have successfully stored Chinese characters into my database and they are 
visible on my web site.  Now I am trying to print them on a report - and I keep 
getting the dreaded '?' instead of the characters.   Is there something in the 
report builder I need to do to allow it to work with different languages? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323728
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Coldfusion / Flex 3 Web Services or...

2009-03-01 Thread Kim Hoopingarner

I have a Flex 3 main app that calls 2 components - one has a datagrid with user 
data while the other component has an input form for the same user data.  I use 
the Coldfusion to server the data changes.  I found that if I change the data 
using the input form, it is not reflected in the datagrid.  So I'm out of sync 
- and can't find a good solution to prevent this.

I know now that solutions are out there (like LiveCycle data services) to keep 
components in sync with the database.  But I'm confused...   I have a hosting 
site to work with - and I'm in a shared environment.  Therefore I won't be able 
to update the coldfusion config files to make the LiveCycle work.  

I need a solution that will allow me to keep Flex 3 and the database in sync 
using Coldfusion - but kept within the constraints of a shared hosting 
environment.  What should I look into.  

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


Re: Coldfusion / Flex 3 Web Services or...

2009-03-01 Thread Kim Hoopingarner

 There are a few ways to do this, but the simplest way is to databind
 the grid to a data structure inside of Flex and make sure that data
 structure gets updated by the form submit. You can do the update
 either at the same time as you submit the form, or you can wait for a
 successful response from the server and do the update in the response
 handler function inside of Flex. I recommend staying with the basic
 built-in techniques while you get started with Flex. If you are
 looking for how to handle the situation of two people updating the
 data at the same time or the issue of potentially updating stale data,
 
 then that is a different task from making sure the grid data updates
 with the content of the form submit.
 
 -Mike Chabot
 

You bring up my concern that I didn't say at all... what if the data is changed 
via another person?  I want to be able to get that data too.
 On Sun, Mar 1, 2009 at 10:23 AM, Kim Hoopingarner
 k.hoopingar...@e-details.com wrote:
 
  I have a Flex 3 main app that calls 2 components - one has a 
 datagrid with user data while the other component has an input form 
 for the same user data.  I use the Coldfusion to server the data 
 changes.  I found that if I change the data using the input form, it 
 is not reflected in the datagrid.  So I'm out of sync - and can't find 
 a good solution to prevent this.
 
  I know now that solutions are out there (like LiveCycle data 
 services) to keep components in sync with the database.  But I'm 
 confused...   I have a hosting site to work with - and I'm in a shared 
 environment.  Therefore I won't be able to update the coldfusion 
 config files to make the LiveCycle work.
 
  I need a solution that will allow me to keep Flex 3 and the database 
 in sync using Coldfusion - but kept within the constraints of a shared 
 hosting environment.  What should I look into.
 
  


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


Re: Coldfusion / Flex 3 Web Services or...

2009-03-01 Thread Kim Hoopingarner

I like the LifeCycle - but is there a good host company out there that supports 
this?  Thanks for any advice on this topic.  

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


Re: Coldfusion / Flex 3 Web Services or...

2009-03-01 Thread Kim Hoopingarner

OK - I'm going about this problem from another angle.  But I'm still scratching 
my head.  Again- 2 components within the app.  I have a tab bar in the main app 
that users click to change to the different component views.  

I came up with the idea to have the tab bar trigger an event - and the 
component with the datagrid is set up to listen for that event.   But that 
doesn't seem to work either.  While the main app is successfully dispatching my 
event, the datagrid component is not triggering its listening function.  

MAIN APPLICATION: 
mx:Script
![CDATA[
private function triggerEvent(event:Event):void {
var event:Event = new Event(clickAdminUser);
dispatchEvent(event);
}
]]
/mx:Script

mx:TabBar id=tbAdmin direction=vertical dataProvider={viewStack} 
width=10% paddingLeft=10 styleName=AdminTabBar 
itemClick=triggerEvent(event) /

mx:ViewStack id=viewStack width=87% height=99% 
components:AdminUser id=cUser label=Users width=100% 
height=100% /

components:AdminUserInput id=cUserInput label=User Input 
width=100% height=100% /
/mx:ViewStack

--
COMPONENT ADMINUSER
mx:VBox xmlns:mx=http://www.adobe.com/2006/mxml; horizontalCenter=true 
height=100% width=100% horizontalScrollPolicy=off
verticalScrollPolicy=off creationComplete=init() 
xmlns:components=components.* 

mx:Script
![CDATA[

public function init():void {


addEventListener(clickAdminUser,refreshUserData);
refreshUserData();
}



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


Re: Coldfusion / Flex 3 Web Services or...

2009-03-01 Thread Kim Hoopingarner

OK - I'm going about this problem from another angle.  But I'm still scratching 
my head.  Same scenario - 2 components within the app.  I have a tab bar in the 
main app that users click to change to the different component views.  

I came up with the idea to have the tab bar (who calls the different 
components) trigger an event - and the component with the datagrid is set up to 
listen for that event.   But that doesn't seem to work either.  While the main 
app is successfully dispatching my event every time I click the tab bar 
options, the datagrid component is not triggering its listening function.  

Below is the code.   Any ideas why the component won't trigger the 
refreshUserData when I am clicking the tab bar?

MAIN APPLICATION: 
mx:Script
![CDATA[
private function triggerEvent(event:Event):void {
var event:Event = new Event(clickAdminUser);
dispatchEvent(event);
}
]]
/mx:Script

mx:TabBar id=tbAdmin direction=vertical dataProvider={viewStack} 
width=10% paddingLeft=10 styleName=AdminTabBar 
itemClick=triggerEvent(event) /

mx:ViewStack id=viewStack width=87% height=99% 
components:AdminUser id=cUser label=Users width=100% 
height=100% /

components:AdminUserInput id=cUserInput label=User Input 
width=100% height=100% /
/mx:ViewStack

--
COMPONENT ADMINUSER
mx:VBox xmlns:mx=http://www.adobe.com/2006/mxml; horizontalCenter=true 
height=100% width=100% horizontalScrollPolicy=off
verticalScrollPolicy=off creationComplete=init() 
xmlns:components=components.* 

mx:Script
![CDATA[

public function init():void {


addEventListener(clickAdminUser,refreshUserData);
refreshUserData();
}

private function refreshUserData():void {
roUser.getUsers();  

}
/mx:Script




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


Flex with Coldfusion

2009-02-24 Thread Kim Hoopingarner

I'm hoping someone can clear up some confusions I have regarding Flex and 
Coldfusion.  Currently I am hosting my site with a well-known hosting company.  
I have many Coldfusion sites running in their shared environment.  Today when I 
talked to them about loading my Flex site up (which includes a couple CFC 
components) - they stated they don't support Flex in their shared 
environment.   

What is needed in their environment that is outside of their typical Coldfusion 
server that would keep a Flex site from running?  I thought that the Flex 
generated swf file was downloading to people's PC and running on their version 
of Flash Player - and there wasn't any magic that would make this work on a 
typical Coldfusion server.

Thanks for helping me better understand.
Kim 

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


Re: Flex with Coldfusion

2009-02-24 Thread Kim Hoopingarner

Thanks for the information.  No one could answer this for me on the support 
lines I called.  I knew to come to this site first.  You guys got it together.  
 

Turns out I get the white screen with no errors.  So I think I can move 
forward.  Take care! 

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


Re: Update Panel... Coldfusion?

2008-11-04 Thread Kim Hoopingarner
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:314813
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Update Panel... Coldfusion?

2008-11-04 Thread Kim Hoopingarner
I have been in the ASP.NET / AJAX world recently and found one feature there 
that is a real asset to a web site... UpdatePanel.   Basically it allows the 
browser to do partial page post-backs and therefore helps with response time.

In Coldfusion - does anyone know if there is something like this?  It is an 
ajax feature but seems to be associated to ASP.NET right now.  I've been 
digging to no avail.  So I was hoping someone else might have the answer.

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


Open Source Document Management System

2008-11-04 Thread Kim Hoopingarner
Does anyone know where there might be a good document management (web based) 
system that might even have open source?   Thoughts? 

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


Coldfusion Won't Restart...

2008-06-01 Thread Kim Hoopingarner
I have just tried to put cfx_imageinfomx into my ColdFusion world - and in 
doing so I now have the server not wanting to start.  I know the problem - not 
sure how to fix.  I have accidentally placed in the java classes the wrong 
directory path name.  The error in the logs is stating NoClassDefFoundError - 
so I'm pretty sure that is it.   

The question - how do I remove the incorrect directory path from the system and 
allow it to once again start up?

Thanks for you expertise!
Kim 

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


Re: Coldfusion Won't Restart...

2008-06-01 Thread Kim Hoopingarner
Thanks, Wil!  I found the config file and was able to fix it.  Whew!  


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


Report Builder - creating a function that adds X to a variable

2008-02-25 Thread Kim Hoopingarner
I am trying to create a report where a almost-sequential number is to show next 
to each row.  I say almost because there are certain circumstances that I 
need to add 2 instead of 1 to that number.  

Now I started off by creating a function in the report builder.  Here it is...  
Simply put, I pass in a number and it figures out how many to add to it.  Then 
it sends that back to the report.

cffunction name=calcNextAudit
cfargument name=nextAudit type=numeric
cfargument name=voids type=string

cfset goodAudit = N
cfloop condition=goodAudit EQ 'N'
cfif listFind(voids, nextAudit)
cfelse
  cfset goodAudit = Y
/cfif
cfset nextAudit = nextAudit + 1
/cfloop
cfreturn nextAudit 
/cffunction

In the expression builder I have put: 
#report.calcNextAudit(param.startAudit, param.voids)#


The problem I have is that the same number is printing over and over.  I can't 
figure out how to keep the new value I received from the function in the 
report.  If I could then the idea would be to send it into the function on the 
next record to get the next higher number.

I hope this makes sense.  I guess I only see a function as my solution to 
printing this number per record.  So how do I keep the value saving the 
function result. 

Thanks for any help.
Kim


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


RE: Report Builder - creating a function that adds X to a variable

2008-02-25 Thread Kim Hoopingarner
Thanks!

I ended up creating a request scoped variable.  Works great!

-Original Message-
From: Daniel Roberts [mailto:[EMAIL PROTECTED]
Sent: Monday, February 25, 2008 2:06 PM
To: CF-Talk
Subject: Re: Report Builder - creating a function that adds X to a
variable


I believe the easiest way to accomplish this is to save the value to a
shared scope. To allow multiple reports to be created at once, pass a
reportID (UUID) param to the report then use that ID in storing the value to
the shared scope variable.

You could then have a parameter to your function reportID and in the
function keep nextAudit (if I understand your code correctly) in the
variable session.nextAudit[arguments.reportID].



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


Report Builder - creating a function that adds X to a variable

2008-02-24 Thread Kim Hoopingarner
I am trying to create a report where a almost-sequential number is to show next 
to each row.  I say almost because there are certain circumstances that I 
need to add 2 instead of 1 to that number.  

Now I started off by creating a function in the report builder.  Here it is...  
Simply put, I pass in a number and it figures out how many to add to it.  Then 
it sends that back to the report.

cffunction name=calcNextAudit
cfargument name=nextAudit type=numeric
cfargument name=voids type=string

cfset goodAudit = N
cfloop condition=goodAudit EQ 'N'
cfif listFind(voids, nextAudit)
cfelse
  cfset goodAudit = Y
/cfif
cfset nextAudit = nextAudit + 1
/cfloop
cfreturn nextAudit 
/cffunction

In the expression builder I have put: 
#report.calcNextAudit(param.startAudit, param.voids)#


The problem I have is that the same number is printing over and over.  I can't 
figure out how to keep the new value I received from the function in the 
report.  If I could then the idea would be to send it into the function on the 
next record to get the next higher number.

I hope this makes sense.  I guess I only see a function as my solution to 
printing this number per record.  So how do I keep the value saving the 
function result. 

Thanks for any help.
Kim


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


Report Builder - creating a function that adds X to a variable

2008-02-24 Thread Kim Hoopingarner
I need some help figuring out in the report builder how to work with a variable 
and a function.  

Basically this report is showing a sequential number beside each record.  The 
number however isn't always 1 more than the last.  Sometimes it is 2 greater or 
3.  So I built a function to determine the new number.

cffunction name=calcNextAudit
cfargument name=nextAudit type=numeric
cfargument name=voids type=string

cfset goodAudit = N
cfloop condition=goodAudit EQ 'N'
cfif listFind(voids, nextAudit)
cfelse
  cfset goodAudit = Y
/cfif
cfset nextAudit = nextAudit + 1
/cfloop
cfreturn nextAudit 
/cffunction

OK - so the function returns the nextAudit number and prints on record #1.  
But then the next call to the function results in the same result 
over-and-over.  I can't figure out how to save the last function result and use 
it to pass in the next time.

Any help is greatly appreciated.
Kim 

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


Re: CF Report Builder

2008-02-24 Thread Kim Hoopingarner
Thanks! 

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


CF Report Builder

2008-02-21 Thread Kim Hoopingarner
First time using this tool and I struggle with something easy.  I have added a 
field to the report.  Based on the content of the field, it should show 
different text.  Here's the expression:

iif([query.feedesc] = COMMERCIAL, COMMERCIAL 
BEACH,iif([query.feedesc]=GOVERNMENT,GOVERNMENT OWNED BEACH,),)

I keep getting an error: 
If the expression is a string, ensure that it is within quotes. Error: 
iif([query.feedesc] = COMMERCIAL, COMMERCIAL 
BEACH,iif([query.feedesc]=GOVERNMENT,GOVERNMENT OWNED BEACH,),) is not 
a valid ColdFusion expression. 

I can't see the problem.  Help!
Thanks 

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


crystal reports 11 and coldfusion 8

2008-02-19 Thread Kim Hoopingarner
I have an existing reporting system in Crystal Reports 11.  We are converting 
from vb.net to coldfusion 8.  I want to be able to call these reports through 
coldfusion. Does anyone know if these are compatible?  And if they are - what 
is the trick to making it work?   Thanks. 

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


Re: crystal reports 11 and coldfusion 8

2008-02-19 Thread Kim Hoopingarner
Thank you for your information.  

I am looking to understand what I need to install from the Crystal Reports 11 
CD (and I assume this is done on the web server).  Then can I get an example of 
the cfreport code that works.  

Here's my cfreport and all it is doing is returning back to the form.  The 
Crystal Reports is not coming up.  

cfreport report=EmployeList.rpt datasource=employees username=xyz 
password=xyz



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


Re: crystal reports 11 and coldfusion 8

2008-02-19 Thread Kim Hoopingarner
 http://asreports.riaforge.org/
 
 And yes they are compatible.
 
 
 
 On 2/20/08, Kim Hoopingarner [EMAIL PROTECTED] wrote:
  I have an existing reporting system in Crystal Reports 11.  We are 
 converting from vb.net to coldfusion 8.  I want to be able to call 
 these reports through coldfusion. Does anyone know if these are 
 compatible?  And if they are - what is the trick to making it work?   
 Thanks.
 
  


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


br / In Database but I can't retrieve it?

2007-10-02 Thread Kim Hoopingarner
I am using MySql and I store the results of FCKEditor in a varchar.   There are 
br / therefore seen in the actual database field.

However, when I go to retrieve the varchar and display it, the br / 
disappears and causes the formatting to be off.

What can I do to preserve the br / in my select statement?   

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

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


FCKEditor issue?

2007-10-02 Thread Kim Hoopingarner
using the FCKEditor, I see br / being put into my database when storing the 
editor's output.   When I go to select it out of MYSQL, the br / is missing 
from the string therefore causing the web page formats to be wrong.

Does anyone know how to correct this? 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

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


Re: FCKEditor issue?

2007-10-02 Thread Kim Hoopingarner
Yes - I did all the debugging already.   I see in MYSQL the br / that 
FCKEditor submitted.   So the page submit inserted it fine.

My problem is when I do a SELECT * FROM TABLEA.   The SELECT is removing the 
br /. And the form trying to display that column loses its formatting.

I am trying to figure out if there is a way that FCKEditor can store /n or 
something else for the carriage return.  Or maybe in the SELECT there is 
something I can do to capture the full HTML stored.

I have already tried the br too.  Doesn't help... 

~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finderproductID=1522loc=en_us

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


CFFILE vs FTP

2007-09-27 Thread Kim Hoopingarner
I am using CFFILE to upload a 2.5M file.  When doing this, something is timing 
out.  I've been to the host site and my ISP.  Neither are finding a problem.  
What is interesting - if I FTP a 23M file using FileZilla I have no problem.   
So why am I struggling with a 2.5M file using CFFILE?  Here's my code

html
head
titleUpload File with ColdFusion/title
/head
body

cfif isdefined(form.upload_now)
cffile action=upload filefield=ul_path 
destination=c:/websites/114068qh8/ALC/attachments/mq 
nameconflict=makeunique
The file was successfully uploaded!
/cfif

cfform action=test.cfm method=post name=upload_form 
enctype=multipart/form-data id=upload_form
input type=file name=ul_path
input type=submit name=upload_now value=submit
/cfform
/body
/html 

~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72catid=648

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


CFFILE - alternatives?

2007-09-26 Thread Kim Hoopingarner
For some odd reason there seems to be a problem using CFFILE with my host site 
when trying to upload files larger than 1.5M.  I know it has to do with memory 
constraints - but I still find it strange that such a small file won't work.  
sigh

So I'm looking for 2 things - 
1) Does anyone know a quick solution to the above problem?  Right now files 
smaller than 1.5 M go with no problem.  Is there a setting some place that 
allots memory size to CF - and someone needs to change it?

2) Is there another solution besides CFFILE that will give me the same result.  
I need to view the file system and select a file.  Then I need to upload it to 
the host server.

Thoughts?  I've been at a loss now for too long.   Need to pull in the experts. 
 :) 

~|
ColdFusion 8 - Build next generation apps
today, with easy PDF and Ajax features - download now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289532
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 - alternatives?

2007-09-26 Thread Kim Hoopingarner
#1 Follow Up
Found out that the CFAdmin was set to 100 M for the max post.  Drats.  So looks 
like I might be stuck with re-coding this...

#2 Yes - the host has other languages such as ASP.  But I'm only familiar with 
coldfusion - so I'd be clueless throwing in something different unless someone 
can make it simple for me.   Anyone?I'm looking for an alternative to using 
CFFILE.  Thanks ahead for the ideas! 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:289550
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 - alternatives?

2007-09-26 Thread Kim Hoopingarner
Look into either of these:

- http://www.radinks.com/upload/
- http://swfupload.mammon.se/



OK - I like the swfupload best.  But I struggle at how to incorporate this into 
my existing cfm file.   And help on putting it into a cfm form would be great.  
This form needs to have a button to select the file - and then the submit 
button will be the trigger to upload the file.

Thanks for more info... 

~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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