CF Report Builder

2010-04-14 Thread Rick Eidson

Anyone here any good at report builder?

 

 

I have a sub-report that needs to run a DISTINCT Query and loop over its
output and run another query to get more info from the DISTINCT values from
the first. Easy to do on CFM page and in many different ways. But I can't
seem to get it to work in Report Builder.

 

Under ReportQuery's Advanced area I have the following.

 

The BillReview ID is passed in the URL String..

 

cfquery name=QryGet datasource=#App_DataSource#

SELECT DISTINCT tblBillItems.ReasonCode

FROM   tblBillItems

WHERE  tblBillItems.BillHeaderID = '#BillReviewID#'

/cfquery

 

cfset Output = 

cfloop query=QryGet

 

 

cfquery name=QryGetDesc datasource=#App_DataSource#

SELECT BillItemReasonDescription

FROM  tblBillItemReasons

WHERE BillItemReasonCode = '#ReasonCode#'


/cfquery

 

 

cfset OutPut = #OutPut#br

#ReasonCode# #QryGetDesc.BillItemReasonDescription#

   

 

/cfloop

 

 

 

Any ideas? I have looked all through many sites and see know help on
advanced abilities of Report Builder.

 

Rick

 

 

 




~|
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:332875
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF Report Builder and Excel format

2009-04-17 Thread funand learning

Hi Everyone,



I was trying to display a report in excel format in report builder. It shows
the data, but I do not find the print button options, whereas I can see it
with other formats. Is this the way it is, or do I need to format anything
more within my report for showing up the print button option?This is only
happening for excel format

It would be great if someone can help me with this


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


Chart and CF Report Builder

2008-12-11 Thread Shirin Toosi
I have some questions regarding the ColdFusion Report builder that I’m hoping 
you can help me.  Or maybe you can point me in the direction of someone who 
might. 

The report I’m trying to build has the header area which contains summary and 
the graph contains the detail.   There can be many summaries with their 
details.   We used different approaches to build the report, but the one that 
got us closer to the results we wanted was to build the report I used 2 
queries. I’m trying to pass my variable (id) to the 2nd query to get the 
related graph. When the report is for 1 single summary/graph, I pass the id to 
my 2nd query and it works.  But when the report is for multiple summary/graph, 
only the first row selected from the 1st query will pass to the 2nd query.   
Therefore I have 1 graph with all the data retrieved for all the summaries.  It 
seams like the cfloop doesn’t do anything(??!!)  Another approach I tried 
was to put my graph in a subreport and pass the id as param.id, didn’t work 
either.

In case it helps, here is the code on my cfm page: 

cfloop query=GetRpt  
cfset request.getGraph = getGraph()
cfreport format=pdf template= payment_Detail.cfr
permissions=AllowPrinting Query=GetRpt  overwrite=yes/
cffunction name=getGraph returntype=query
   cfset var GraphQuery = ''
  cfquery name=GraphQuery datasource=#request.dsn# 
  SELECTid , to_char(invoice_dt, 'MM/DD/') as invoice_dt
  , to_char(invoice_dt, '/MM/DD') as sort_invoice_dt
  , TO_NUMBER(payment_line_amt,'') as payment_line_amt
  , INVOICE_LINE_AMT
  FROM PAYMENT_DETAIL 
  WHEREID =#GetRpt.ID#
  ORDER BY sort_invoice_dt
  /cfquery  
cfreturn GraphQuery
/cffunction
/cfloop



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


Chart and CF Report Builder

2008-12-11 Thread Shirin Toosi
I have some questions regarding the ColdFusion Report builder that I’m hoping 
you can help me.  Or maybe you can point me in the direction of someone who 
might. 

The report I’m trying to build has the header area which contains summary and 
the graph contains the detail.   There can be many summaries with their 
details.   We used different approaches to build the report, but the one that 
got us closer to the results we wanted was to build the report I used 2 
queries. I’m trying to pass my variable (id) to the 2nd query to get the 
related graph. When the report is for 1 single summary/graph, I pass the id to 
my 2nd query and it works.  But when the report is for multiple summary/graph, 
only the first row selected from the 1st query will pass to the 2nd query.   
Therefore I have 1 graph with all the data retrieved for all the summaries.  It 
seams like the cfloop doesn’t do anything(??!!)  Another approach I tried 
was to put my graph in a subreport and pass the id as param.id, didn’t work 
either.

In case it helps, here is the code on my cfm page: 

cfloop query=GetRpt  
cfset request.getGraph = getGraph()
cfreport format=pdf template= payment_Detail.cfr
permissions=AllowPrinting Query=GetRpt  overwrite=yes/
cffunction name=getGraph returntype=query
   cfset var GraphQuery = ''
  cfquery name=GraphQuery datasource=#request.dsn# 
  SELECTid , to_char(invoice_dt, 'MM/DD/') as invoice_dt
  , to_char(invoice_dt, '/MM/DD') as sort_invoice_dt
  , TO_NUMBER(payment_line_amt,'') as payment_line_amt
  , INVOICE_LINE_AMT
  FROM PAYMENT_DETAIL 
  WHEREID =#GetRpt.ID#
  ORDER BY sort_invoice_dt
  /cfquery  
cfreturn GraphQuery
/cffunction
/cfloop



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


Chart and CF Report Builder

2008-12-11 Thread Shirin Toosi
I have some questions regarding the ColdFusion Report builder that I’m hoping 
you can help me.  Or maybe you can point me in the direction of someone who 
might. 

The report I’m trying to build has the header area which contains summary and 
the graph contains the detail.   There can be many summaries with their 
details.   We used different approaches to build the report, but the one that 
got us closer to the results we wanted was to build the report I used 2 
queries. I’m trying to pass my variable (id) to the 2nd query to get the 
related graph. When the report is for 1 single summary/graph, I pass the id to 
my 2nd query and it works.  But when the report is for multiple summary/graph, 
only the first row selected from the 1st query will pass to the 2nd query.   
Therefore I have 1 graph with all the data retrieved for all the summaries.  It 
seams like the cfloop doesn’t do anything(??!!)  Another approach I tried 
was to put my graph in a subreport and pass the id as param.id, didn’t work 
either.

In case it helps, here is the code on my cfm page: 

cfloop query=GetRpt  
cfset request.getGraph = getGraph()
cfreport format=pdf template= payment_Detail.cfr
permissions=AllowPrinting Query=GetRpt  overwrite=yes/
cffunction name=getGraph returntype=query
   cfset var GraphQuery = ''
  cfquery name=GraphQuery datasource=#request.dsn# 
  SELECTid , to_char(invoice_dt, 'MM/DD/') as invoice_dt
  , to_char(invoice_dt, '/MM/DD') as sort_invoice_dt
  , TO_NUMBER(payment_line_amt,'') as payment_line_amt
  , INVOICE_LINE_AMT
  FROM PAYMENT_DETAIL 
  WHEREID =#GetRpt.ID#
  ORDER BY sort_invoice_dt
  /cfquery  
cfreturn GraphQuery
/cffunction
/cfloop
In the query builder of my chart series I call the request.getGraph so the 
chart can see the query. As I said when I pass one id then it’s ok but when 
more than 1 id is passed it shows the graph based on the 1st selected row of 
data for all other data retrieved by the 1st query. 

I want to be able to show the first summary followed by it’s detail graph, 
then the second summary followed by it’s detail graph, etc. 

Any help or suggestions will be greatly appreciated. 

Thank you in advance

 




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


CF Report Builder revisited

2008-05-22 Thread Loathe
Ok,

So I've gotten the basics of report builder down, now I'm moving on to 
something a bit more advanced.


I have a document that needs to look something like this:

Header/letterhead

Memorandum for: blah

1. General

blah blah blah pulled form the DB from the main report query

!--- from here down is a sub report pulled from a different report ---

2. J3: Operations

Topic: sdkjflkdsjafljsdlfj

Observation: dslkfjlsdjfldjslfja;lsd

and so on and so on

I figured out the numbering issue, I just do currentRow + 1, not a problem.

The thing I'm finding now is a huge gap between the end of the general 
paragraph and the beginning of the #2 subreport line.

I've trimmed the filed that contains the general text, and I'm just not 
having any luck, ideas?

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


Re: CF Report Builder Questions

2008-05-12 Thread Loathe
Doh.

Dale Fraser wrote:
 This is ColdFusion remember
 
 Change
 
 calc.PAGE_NUMBER = 1
 
 to
 
 calc.PAGE_NUMBER eq 1
 
 Regards
 Dale Fraser
 http://learncf.com
 http://flexcf.com
 
 
 -Original Message-
 From: Loathe [mailto:[EMAIL PROTECTED] 
 Sent: Monday, 12 May 2008 10:15 AM
 To: CF-Talk
 Subject: CF Report Builder Questions
 
 So I'm new to report builder and full of question.
 
 I guess I'll start out easy and work my way up.
 
 In my header I need to have a letter head display only on the first 
 page.  In the field
 
 Print when condition
 
 I added
 
 calc.PAGE_NUMBER = 1
 
 Now the template throws an error.  How do I only display content on 
 certain pages?  I need to doe the same thing with page numbers in the 
 footer when calc.PAGE_NUMBER  1.
 
 Additionally, I have a bunch of sub reports.  Sometimes the queries that 
 drive these reports will not have any content, so I need for them to not 
 display, I also need the paragraph number scheme not to get messed up. 
 Each major section that is displayed needs to increment the number, but 
 the number needs to not increment for those reports where recordCount eq 0.
 
 Is this possible?
 
 TIA
 
 
 
 

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


Re: CF Report Builder Questions

2008-05-12 Thread Loathe
Next question.

I have a label

Subject:

and a field

query.title

They are the same font and size, I dragged the boarders to the right 
places, but the field is slightly higher than the label.  How do I make 
this things align correctly?

Loathe wrote:
 Doh.
 
 Dale Fraser wrote:
 This is ColdFusion remember

 Change

 calc.PAGE_NUMBER = 1

 to

 calc.PAGE_NUMBER eq 1

 Regards
 Dale Fraser
 http://learncf.com
 http://flexcf.com


 -Original Message-
 From: Loathe [mailto:[EMAIL PROTECTED] 
 Sent: Monday, 12 May 2008 10:15 AM
 To: CF-Talk
 Subject: CF Report Builder Questions

 So I'm new to report builder and full of question.

 I guess I'll start out easy and work my way up.

 In my header I need to have a letter head display only on the first 
 page.  In the field

 Print when condition

 I added

 calc.PAGE_NUMBER = 1

 Now the template throws an error.  How do I only display content on 
 certain pages?  I need to doe the same thing with page numbers in the 
 footer when calc.PAGE_NUMBER  1.

 Additionally, I have a bunch of sub reports.  Sometimes the queries that 
 drive these reports will not have any content, so I need for them to not 
 display, I also need the paragraph number scheme not to get messed up. 
 Each major section that is displayed needs to increment the number, but 
 the number needs to not increment for those reports where recordCount eq 0.

 Is this possible?

 TIA




 
 

~|
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:305081
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 Questions

2008-05-12 Thread Terry Schmitt
Granted you needed to fix the eq, but there is also a Report Header band that 
you can use to show the letter head only on the first page.

So I'm new to report builder and full of question.

I guess I'll start out easy and work my way up.

In my header I need to have a letter head display only on the first 
page.  In the field

Print when condition

I added

calc.PAGE_NUMBER = 1

Now the template throws an error.  How do I only display content on 
certain pages?  I need to doe the same thing with page numbers in the 
footer when calc.PAGE_NUMBER  1.

Additionally, I have a bunch of sub reports.  Sometimes the queries that 
drive these reports will not have any content, so I need for them to not 
display, I also need the paragraph number scheme not to get messed up. 
Each major section that is displayed needs to increment the number, but 
the number needs to not increment for those reports where recordCount eq 0.

Is this possible?

TIA 

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


Re: CF Report Builder Questions

2008-05-12 Thread Terry Schmitt
I'm interested in this one... I actually ran into this again last night.
There is a vertical alignment parameter for both of those objects, but as near 
as I can tell, it does not work.

- Make sure your font size is the same.
- The left side of the GUI has a whole bunch of alignment buttons that make 
life much easier then trying to drag everything around.
- I manually reduce the height of the field and labels until they are 
essentially vertically centered. Trial and error here.

You will find that Report Builder is really neat once you have a report all 
laid out, but it is one of the lesser refined applications that I've used.

Next question.

I have a label

Subject:

and a field

query.title

They are the same font and size, I dragged the boarders to the right 
places, but the field is slightly higher than the label.  How do I make 
this things align correctly?

Loathe 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:305083
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 Questions

2008-05-12 Thread Loathe
The alignment buttons were just what I needed, thanks.

Just shift clicked both elements, aligned top and done.

Now to figure out  how to dynamically number the sections :)

Terry Schmitt wrote:
 I'm interested in this one... I actually ran into this again last night.
 There is a vertical alignment parameter for both of those objects, but as 
 near as I can tell, it does not work.
 
 - Make sure your font size is the same.
 - The left side of the GUI has a whole bunch of alignment buttons that make 
 life much easier then trying to drag everything around.
 - I manually reduce the height of the field and labels until they are 
 essentially vertically centered. Trial and error here.
 
 You will find that Report Builder is really neat once you have a report all 
 laid out, but it is one of the lesser refined applications that I've used.
 
 Next question.

 I have a label

 Subject:

 and a field

 query.title

 They are the same font and size, I dragged the boarders to the right 
 places, but the field is slightly higher than the label.  How do I make 
 this things align correctly?

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


CF Report Builder Questions

2008-05-11 Thread Loathe
So I'm new to report builder and full of question.

I guess I'll start out easy and work my way up.

In my header I need to have a letter head display only on the first 
page.  In the field

Print when condition

I added

calc.PAGE_NUMBER = 1

Now the template throws an error.  How do I only display content on 
certain pages?  I need to doe the same thing with page numbers in the 
footer when calc.PAGE_NUMBER  1.

Additionally, I have a bunch of sub reports.  Sometimes the queries that 
drive these reports will not have any content, so I need for them to not 
display, I also need the paragraph number scheme not to get messed up. 
Each major section that is displayed needs to increment the number, but 
the number needs to not increment for those reports where recordCount eq 0.

Is this possible?

TIA

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


RE: CF Report Builder Questions

2008-05-11 Thread Dale Fraser
This is ColdFusion remember

Change

calc.PAGE_NUMBER = 1

to

calc.PAGE_NUMBER eq 1

Regards
Dale Fraser
http://learncf.com
http://flexcf.com


-Original Message-
From: Loathe [mailto:[EMAIL PROTECTED] 
Sent: Monday, 12 May 2008 10:15 AM
To: CF-Talk
Subject: CF Report Builder Questions

So I'm new to report builder and full of question.

I guess I'll start out easy and work my way up.

In my header I need to have a letter head display only on the first 
page.  In the field

Print when condition

I added

calc.PAGE_NUMBER = 1

Now the template throws an error.  How do I only display content on 
certain pages?  I need to doe the same thing with page numbers in the 
footer when calc.PAGE_NUMBER  1.

Additionally, I have a bunch of sub reports.  Sometimes the queries that 
drive these reports will not have any content, so I need for them to not 
display, I also need the paragraph number scheme not to get messed up. 
Each major section that is displayed needs to increment the number, but 
the number needs to not increment for those reports where recordCount eq 0.

Is this possible?

TIA



~|
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:305075
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


RE: CF Report Builder

2008-02-23 Thread Dave Watts
 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. 

The 2nd and 3rd arguments for Iif are treated as executable CF expressions,
not literal strings. If you want literal strings, you'll need to wrap them
in the DE function.

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;160198600;22374440;w

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


RE: CF Report Builder

2008-02-23 Thread Dale Fraser
Yep use DE

No different to doing it in ColdFusion.

Regards
Dale Fraser

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Sunday, 24 February 2008 5:42 PM
To: CF-Talk
Subject: RE: CF Report Builder

 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. 

The 2nd and 3rd arguments for Iif are treated as executable CF expressions,
not literal strings. If you want literal strings, you'll need to wrap them
in the DE function.

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;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:299796
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.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


CF Report Builder

2007-03-08 Thread James Smith
Has anyone got report builder to install on Vista? I have tried more than
once now and on all occasions it gets through to the Installing stage and
then just stops requiring Task Manager to end it as javaw.exe seems to be
having problems.

I do have an XP install running in Virtual PC 2007 but I would prefer not
to use it unless I have to!

--
Jay



~|
Create robust enterprise, web RIAs.
Upgrade  integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/

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


RE: CF Report Builder

2007-03-08 Thread Robert Rawlins - Think Blue
Afternoon Jay,

Which version of vista are you running, home, business, ultimate? I would
recommend running the install as Administrator and in XP Compatibility mode,
you can do this by right clicking the install exe and choosing properties,
and then the 'compatibility' tab.

Hope that helps,

Rob

-Original Message-
From: James Smith [mailto:[EMAIL PROTECTED] 
Sent: 08 March 2007 11:19
To: CF-Talk
Subject: CF Report Builder

Has anyone got report builder to install on Vista? I have tried more than
once now and on all occasions it gets through to the Installing stage and
then just stops requiring Task Manager to end it as javaw.exe seems to be
having problems.

I do have an XP install running in Virtual PC 2007 but I would prefer not
to use it unless I have to!

--
Jay





~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2  MX7 integration  create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/

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


RE: CF Report Builder

2007-03-08 Thread James Smith
Afternoon Rob

It is ultimate, and yes, that fixed it nicely, cheers.

Jay

-Original Message-
From: Robert Rawlins - Think Blue
[mailto:[EMAIL PROTECTED] 
Sent: 08 March 2007 11:24
To: CF-Talk
Subject: RE: CF Report Builder

Afternoon Jay,

Which version of vista are you running, home, business, ultimate? I would
recommend running the install as Administrator and in XP Compatibility mode,
you can do this by right clicking the install exe and choosing properties,
and then the 'compatibility' tab.

Hope that helps,

Rob

-Original Message-
From: James Smith [mailto:[EMAIL PROTECTED] 
Sent: 08 March 2007 11:19
To: CF-Talk
Subject: CF Report Builder

Has anyone got report builder to install on Vista? I have tried more than
once now and on all occasions it gets through to the Installing stage and
then just stops requiring Task Manager to end it as javaw.exe seems to be
having problems.

I do have an XP install running in Virtual PC 2007 but I would prefer not
to use it unless I have to!

--
Jay







~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2

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

2007-03-08 Thread Robert Rawlins - Think Blue
No worries bud, Ultimate edition really is ULTIMATE, I love it, that 
compatibility tip comes in pretty handy as UE is quite different from the XP 
architecture and it'll take the app devs a while to get their head around it.

Glad it worked,

Rob

-Original Message-
From: James Smith [mailto:[EMAIL PROTECTED] 
Sent: 08 March 2007 13:00
To: CF-Talk
Subject: RE: CF Report Builder

Afternoon Rob

It is ultimate, and yes, that fixed it nicely, cheers.

Jay

-Original Message-
From: Robert Rawlins - Think Blue
[mailto:[EMAIL PROTECTED] 
Sent: 08 March 2007 11:24
To: CF-Talk
Subject: RE: CF Report Builder

Afternoon Jay,

Which version of vista are you running, home, business, ultimate? I would
recommend running the install as Administrator and in XP Compatibility mode,
you can do this by right clicking the install exe and choosing properties,
and then the 'compatibility' tab.

Hope that helps,

Rob

-Original Message-
From: James Smith [mailto:[EMAIL PROTECTED] 
Sent: 08 March 2007 11:19
To: CF-Talk
Subject: CF Report Builder

Has anyone got report builder to install on Vista? I have tried more than
once now and on all occasions it gets through to the Installing stage and
then just stops requiring Task Manager to end it as javaw.exe seems to be
having problems.

I do have an XP install running in Virtual PC 2007 but I would prefer not
to use it unless I have to!

--
Jay









~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion

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

2007-03-08 Thread James Smith
While on the subject of report builder, how can you do conditional queries?
For example on a cfm template I could use the following...

cfquery
SELECT *
FROM aTable
cfif isDefined('url.someVar')
WHERE someID = #url.somevar#
/cfif
ORDER BY someID
/cfquery

However this is not possible in report builder so I currently use two
separate cfr files.  Is there an alternative to this?

--
Jay



~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion

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

2007-03-08 Thread Kris Jones
You could do the query in CF prior to calling the report, then pass
the query into the report. I think you could also setup a parameter to
the report, which when set would add the where clause as below? I've
not tested this as I always pass my queries into the report rather
than embed them.

Cheers,
Kris

 While on the subject of report builder, how can you do conditional queries?
 For example on a cfm template I could use the following...

 cfquery
 SELECT *
 FROM aTable
 cfif isDefined('url.someVar')
 WHERE someID = #url.somevar#
 /cfif
 ORDER BY someID
 /cfquery

 However this is not possible in report builder so I currently use two
 separate cfr files.  Is there an alternative to this?

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2

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

2007-03-08 Thread Andrew Scott
Or another way would be to pass in parameters, then use those parameters to do 
conditional stuff.

But as mentioned you could also do the condition before hand

crfreport
 Select * from Table
 cfif cond1 eq 0
  .
 /cfif
/cfreport 




Andrew Scott
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273


-Original Message-
From: Kris Jones [mailto:[EMAIL PROTECTED] 
Sent: Friday, 9 March 2007 3:27 AM
To: CF-Talk
Subject: Re: CF Report Builder

You could do the query in CF prior to calling the report, then pass
the query into the report. I think you could also setup a parameter to
the report, which when set would add the where clause as below? I've
not tested this as I always pass my queries into the report rather
than embed them.

Cheers,
Kris

 While on the subject of report builder, how can you do conditional queries?
 For example on a cfm template I could use the following...

 cfquery
 SELECT *
 FROM aTable
 cfif isDefined('url.someVar')
 WHERE someID = #url.somevar#
 /cfif
 ORDER BY someID
 /cfquery

 However this is not possible in report builder so I currently use two
 separate cfr files.  Is there an alternative to this?



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade  see new features.
http://www.adobe.com/products/coldfusion

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


CF Report Builder

2007-02-23 Thread Ken K
Does CF report Builder only run on a Windows? (see requirements link)

http://www.adobe.com/products/coldfusion/productinfo/systemreqs/#reportbuilder

~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2

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


RE: CF Report Builder

2007-02-23 Thread Ian Skinner
At this time the Report Builder only runs on windows.  The reports built by it 
can be installed and run from any ColdFusion system, but the builder is windows 
only.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

-
| 1 |   |
-  Binary Sudoku
|   |   |
-
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7  
Flex 2. 
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:270597
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: accessing the properties via code?

2006-08-07 Thread Kris Jones
Hi all,

Does anyone know if/how you can access report element properties
through code, rather than through the report builder interface itself?
I'm thinking something along the lines of:
cfreportparam name=elementname.propertyname value=propertyvalue /

so, changing the alignment on a query field would be:
cfreportparam name=query.column2.Alignment value=right /

When I tried something like that, it doesn't throw an error, but is ignored.

Cheers,
Kris

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: CF Report Builder: accessing the properties via code?

2006-08-07 Thread Neil Middleton
You can bind some params to attributes, but only where you can enter
evaluations in them.

AFAIK you can't get to the regular properties.

Neil

On 8/7/06, Kris Jones [EMAIL PROTECTED] wrote:

 Hi all,

 Does anyone know if/how you can access report element properties
 through code, rather than through the report builder interface itself?
 I'm thinking something along the lines of:
 cfreportparam name=elementname.propertyname value=propertyvalue /

 so, changing the alignment on a query field would be:
 cfreportparam name=query.column2.Alignment value=right /

 When I tried something like that, it doesn't throw an error, but is
 ignored.

 Cheers,
 Kris

 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


CF Report Builder RDS Problems

2006-06-27 Thread Howell Craig H Civ WRALC/ITMS
Has anyone had problems getting RDS to work in CFRB?  Depending on how we
set it up, we get a can't use SSL or webserver unreachable error.  Any
advice?
CF 7.0.1
CFRB Build 121050
IIS 5.0 and IIS 6.0


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244866
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: CF Report Builder RDS Problems

2006-06-27 Thread Mansen Robert E Civ WRALC/ITMS
I've seen the same problem.  Anyone else seen this?




Has anyone had problems getting RDS to work in CFRB?  Depending on how we
set it up, we get a can't use SSL or webserver unreachable error.  Any
advice?
CF 7.0.1
CFRB Build 121050
IIS 5.0 and IIS 6.0




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244881
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: CF Report Builder RDS Problems

2006-06-27 Thread Howell Craig H Civ WRALC/ITMS
Duh.I figured out the problemthe port is not the IIS port, but (in
multi-server config) the cfusion Jrun server HTTP port. 

-Original Message-
From: Mansen Robert E Civ WRALC/ITMS 
Sent: Tuesday, June 27, 2006 1:10 PM
To: CF-Talk
Subject: RE: CF Report Builder RDS Problems

I've seen the same problem.  Anyone else seen this?




Has anyone had problems getting RDS to work in CFRB?  Depending on how we
set it up, we get a can't use SSL or webserver unreachable error.  Any
advice?
CF 7.0.1
CFRB Build 121050
IIS 5.0 and IIS 6.0






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244891
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


CF Report Builder Training

2006-04-27 Thread Eric J. Hoffman
Are there any good reference materials or books to give to a client who
wants to use the CF Report Builder to build her own reports?

Thanks!



Eric J. Hoffman
Managing Partner
2081 Industrial Blvd
StillwaterMN55082
mail: [EMAIL PROTECTED]
www: http://www.ejhassociates.com
tel: 651.717.4105
fax: 651.717.4115
mob: 651.245.2717



This message contains confidential information and is intended only for [EMAIL 
PROTECTED] If you are not cf-talk@houseoffusion.com you should not disseminate, 
distribute or copy this e-mail. Please notify [EMAIL PROTECTED] immediately by 
e-mail if you have received this e-mail by mistake and delete this e-mail from 
your system. E-mail transmission cannot be guaranteed to be secure or 
error-free as information could be intercepted, corrupted, lost, destroyed, 
arrive late or incomplete, or contain viruses. Eric J. Hoffman therefore does 
not accept liability for any errors or omissions in the contents of this 
message, which arise as a result of e-mail transmission. If verification is 
required please request a hard-copy version.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238866
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


avoid page breaks in Excel files using CF Report Builder

2005-04-07 Thread Rajani Chandra
Hi,  I'm using Coldfusion report builder to get the reports, in excel file one 
extra row is coming at the end of each page may be that is page break, I need 
continuous data, how to delete that row, is there any settings required for 
that one, I tried a lot, please help me.
  
Thanks for any information you can give me.

Thanks
Rajani.


~|
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:201906
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


Help!!! CF Report Builder

2005-04-01 Thread David Brown
I had report builder installed and working.  But I thought I would change the 
layout of the panels (first mistake).  At some point while trying to drag them 
around the Fields and Parameters panels disapeard and now I get this error when 
trying to open up the panel or when the program starts up:

object: TSpTBXItem, SpTBXItem2
Exception: Control 'vstAllFields' has no parent window
See error log for stack trace

I have undstalled twice, delete the folder that it leaves behind after 
uninstall and check the registery (may have missed something).  After 
re-install I still get the same error.

Any suggestions?

~|
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:201165
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: Help!!! CF Report Builder

2005-04-01 Thread David Brown
Never mind,  I got it.  I needed to look through the registry some more.  I 
wish uninstall program would uninstall everything, but

I got it.

Thanks
- Original Message - 
From: David Brown [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, April 01, 2005 8:53 AM
Subject: Help!!! CF Report Builder


I had report builder installed and working.  But I thought I would change 
the layout of the panels (first mistake).  At some point while trying to 
drag them around the Fields and Parameters panels disapeard and now I get 
this error when trying to open up the panel or when the program starts up:

 object: TSpTBXItem, SpTBXItem2
 Exception: Control 'vstAllFields' has no parent window
 See error log for stack trace

 I have undstalled twice, delete the folder that it leaves behind after 
 uninstall and check the registery (may have missed something).  After 
 re-install I still get the same error.

 Any suggestions?

 

~|
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:201166
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


Anyone using CF Report Builder?

2005-03-02 Thread Connie DeCinko
Is anyone using the new CF Report Builder?  I just started with it this
week.  I'm kicking myself for not giving it a try during the beta as it
smells of still be a beta release.  There are many great things, many things
I like that make it very easy to use.  However, I am now to the point of
finding strange bugs and missing features.  
 
For example:  the property panes on the right side do not expand and
collapse correctly.  You have to click the pane above to get the pane below
to collapse.  Undo is very erratic, sometimes undoing changes done hours ago
and in the wrong order.  Redo does not work at all.  Also, there are issues
with rendering, for instance, in the editor, a placed box and line below,
the line renders too high in the report, both Flashpaper and PDF.  Also, the
font embed feature does not embed the fonts.
 
Am I the only one seeing issues that should have been fixed during the beta?
 
 
Constanty Connie DeCinko III
Web Architect, Webmaster, Web Developer
Lone Jet Enterprises
Glendale, Arizona
 http://www.lonejet.com/ www.LoneJet.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:197110
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: Anyone using CF Report Builder?

2005-03-02 Thread David Fafard
Have seen the issues with the property panes as well.
My workaround is to detach the pane and call them when
needed as floating windows.

I love this report writer but do see a lot of little bugs in rendering and
such.
Here is another, draw a straight line and then copy and paste.. the pasted
line is
skewed!

I hope to see improvements in this app as this has great potential in the
organization
for reporting... The flashpaper reports look great in any browser and
finally gives
the end user the ability to print the report as seen on screen.

I'm kicking myself that I went and purchased 6 seats of Crystal Reports 10
only a month ago. If I would have seen this, I would have shelved that
project!

Any one interested in CF10 seats?

Dave

- Original Message - 
From: Connie DeCinko [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, March 02, 2005 10:59 AM
Subject: Anyone using CF Report Builder?


Is anyone using the new CF Report Builder?  I just started with it this
week.  I'm kicking myself for not giving it a try during the beta as it
smells of still be a beta release.  There are many great things, many things
I like that make it very easy to use.  However, I am now to the point of
finding strange bugs and missing features.

For example:  the property panes on the right side do not expand and
collapse correctly.  You have to click the pane above to get the pane below
to collapse.  Undo is very erratic, sometimes undoing changes done hours ago
and in the wrong order.  Redo does not work at all.  Also, there are issues
with rendering, for instance, in the editor, a placed box and line below,
the line renders too high in the report, both Flashpaper and PDF.  Also, the
font embed feature does not embed the fonts.

Am I the only one seeing issues that should have been fixed during the beta?


Constanty Connie DeCinko III
Web Architect, Webmaster, Web Developer
Lone Jet Enterprises
Glendale, Arizona
 http://www.lonejet.com/ www.LoneJet.com







~|
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:197119
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: Anyone using CF Report Builder?

2005-03-02 Thread Justin D. Scott
 Any one interested in CF10 seats?

You have ColdFusion 10?!?  Can I buy access to your time machine for a
little while?  ;)


---
Justin D. Scott
Vice President
Sceiron Interactive, Inc.
www.sceiron.com

[EMAIL PROTECTED]
941.378.5341 - office
941.320.2402 - mobile
877.678.6011 - facsimile


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:197125
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: Anyone using CF Report Builder?

2005-03-02 Thread Connie DeCinko
I'd like to see the property panes have the ability like Dreamweaver where I
can collapse that whole section or bring it back.  I've seen something
similar with a line.  Move the line, then undo, and get a slanted line!
 

-Original Message-
From: David Fafard [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 02, 2005 9:48 AM
To: CF-Talk
Subject: Re: Anyone using CF Report Builder?

Have seen the issues with the property panes as well.
My workaround is to detach the pane and call them when
needed as floating windows.

I love this report writer but do see a lot of little bugs in rendering and
such.
Here is another, draw a straight line and then copy and paste.. the pasted
line is
skewed!

I hope to see improvements in this app as this has great potential in the
organization
for reporting... The flashpaper reports look great in any browser and
finally gives
the end user the ability to print the report as seen on screen.

I'm kicking myself that I went and purchased 6 seats of Crystal Reports 10
only a month ago. If I would have seen this, I would have shelved that
project!

Any one interested in CF10 seats?

Dave

- Original Message - 
From: Connie DeCinko [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, March 02, 2005 10:59 AM
Subject: Anyone using CF Report Builder?


Is anyone using the new CF Report Builder?  I just started with it this
week.  I'm kicking myself for not giving it a try during the beta as it
smells of still be a beta release.  There are many great things, many things
I like that make it very easy to use.  However, I am now to the point of
finding strange bugs and missing features.

For example:  the property panes on the right side do not expand and
collapse correctly.  You have to click the pane above to get the pane below
to collapse.  Undo is very erratic, sometimes undoing changes done hours ago
and in the wrong order.  Redo does not work at all.  Also, there are issues
with rendering, for instance, in the editor, a placed box and line below,
the line renders too high in the report, both Flashpaper and PDF.  Also, the
font embed feature does not embed the fonts.

Am I the only one seeing issues that should have been fixed during the beta?


Constanty Connie DeCinko III
Web Architect, Webmaster, Web Developer
Lone Jet Enterprises
Glendale, Arizona
 http://www.lonejet.com/ www.LoneJet.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:197129
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: Anyone using CF Report Builder?

2005-03-02 Thread David Fafard
Sorry.. CR10 Seats !!! smarty.
- Original Message - 
From: Justin D. Scott [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, March 02, 2005 11:59 AM
Subject: RE: Anyone using CF Report Builder?


 Any one interested in CF10 seats?

You have ColdFusion 10?!?  Can I buy access to your time machine for a
little while?  ;)


---
Justin D. Scott
Vice President
Sceiron Interactive, Inc.
www.sceiron.com

[EMAIL PROTECTED]
941.378.5341 - office
941.320.2402 - mobile
877.678.6011 - facsimile




~|
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:197135
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