Binding a control to a regular form property?


Author
Message
Ivan George Borges
Ivan George Borges
Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)
Group: StrataFrame MVPs
Posts: 1.9K, Visits: 21K
Fiance? Meeting? Do I smell wedding soon???? w00t

Yep, you got it. Wink

Edhy Rijo
E
StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Well, welcome to the club Cool



Congratulations in advance wishing you and wife to be the best!!!!

Edhy Rijo

Bill Cunnien
Bill Cunnien
StrataFrame VIP (1K reputation)StrataFrame VIP (1K reputation)StrataFrame VIP (1K reputation)StrataFrame VIP (1K reputation)StrataFrame VIP (1K reputation)StrataFrame VIP (1K reputation)StrataFrame VIP (1K reputation)StrataFrame VIP (1K reputation)StrataFrame VIP (1K reputation)
Group: Forum Members
Posts: 785, Visits: 3.6K
Russell Scott Brown (06/25/2010)
...I have been trying to decide between Telerik and DevExpress but I think I will go with DevExpress too if for no other reasons than you gave I know I can find at least one other person on the forum who uses it...




I've been using DevEx XtraReports for several years...even before SF. It has been quite enjoyable to use.



Bill
Charles R Hankey
Charles R Hankey
Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)Advanced StrataFrame User (764 reputation)
Group: Forum Members
Posts: 524, Visits: 30K
Hi Bill -



What strategy are you using for the data? It seems at first glance that using the BBS approach and creating the properties for child tables etc is not really necessary. I am tempted to use standard datasets, filled from parameterized SQL views and just by-passing SF for reporting data needs. If I go that route am I going to be missing something I'll wish I had?



Second question : do you have the whole dxExperience subscription or a separate XtraReports suite? Does this include WPF and Silverlight?



It looks like no further license is needed to give the end-user report design functionality. Is this the case?



( see what you started - I'm sure I'm going to have a lot of questions going forward. )



TIA



Charles

Ger Cannoll
Ger Cannoll
Advanced StrataFrame User (576 reputation)Advanced StrataFrame User (576 reputation)Advanced StrataFrame User (576 reputation)Advanced StrataFrame User (576 reputation)Advanced StrataFrame User (576 reputation)Advanced StrataFrame User (576 reputation)Advanced StrataFrame User (576 reputation)Advanced StrataFrame User (576 reputation)Advanced StrataFrame User (576 reputation)
Group: StrataFrame Users
Posts: 430, Visits: 507
Hi Charles. I have been trying to decide which Report Writer to go for and have narrowed it down to either Activereports or Xtrareports.

I was tending towards Activereports as , without additional licenses or expense, you can include a run time report designer for the end user. You seem to be suggesting that that can also be done with Xtrarports....did I pick this up correctly.

Also , would be interested if anybody has seen any feature by feature comaprison of the two. ActiveReports seems to be more expensive .

Ivan George Borges
Ivan George Borges
Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)
Group: StrataFrame MVPs
Posts: 1.9K, Visits: 21K
Edhy Rijo (06/26/2010)
Well, welcome to the club Cool

Congratulations in advance wishing you and wife to be the best!!!!

Thanks a lot Edhy! Smooooth

Peter Jones
Peter Jones
StrataFrame User (450 reputation)StrataFrame User (450 reputation)StrataFrame User (450 reputation)StrataFrame User (450 reputation)StrataFrame User (450 reputation)StrataFrame User (450 reputation)StrataFrame User (450 reputation)StrataFrame User (450 reputation)StrataFrame User (450 reputation)
Group: Forum Members
Posts: 386, Visits: 2.1K
Congratulations Ivan.

Regarding reporting, we have been using DevExpress Controls for about as long as we have been using Strataframe, but were using Crystal Reports (the version that came with visual studio) for our reporting, mainly due to previous experience with it. We had intended to examine xtraReports when we had a bit of time.

Recently we upgraded to Visual Studio 2010, only to find that Crystal reports is only available as a seperate download currently in beta and without a client distributable. Furthermore in the Terminal Services environment we are targeting it is no longer free. This led us to quickly convert to XrtaReports, and have been very happy with the results. There is nothing we have found that Crystal Reports could do that XrtaReports can't. Where we were stuck on how to achive what we wanted, the support from Devexpress was excellent.

We found that the best way to handle things was to create a bo mapped to a view. We use the same view to create a dataset for the XtraReports designer, then we use the following to get the data from the bo into the report

Private Sub AssignBOToReport(ByRef myReport As DevExpress.XtraReports.UI.XtraReport, ByRef bo As MicroFour.StrataFrame.Business.BusinessLayer)

If bo.CurrentDataTable.Rows.Count >= 1 Then

Dim ds As New DataSet

ds.Tables.Add(bo.CurrentDataTable)

myReport.DataSource = ds

myReport.DataMember = bo.CurrentDataTable.TableName

Else

myReport.DataSource = Nothing

myReport.DataMember = ""

End If

End Sub

The key point here is that xtraReports is very fussy in that if a report is designed from a dataset, then that is what it expect to get its data from.

Cheers,

Peter

Ivan George Borges
Ivan George Borges
Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)Strategic Support Team Member (2.8K reputation)
Group: StrataFrame MVPs
Posts: 1.9K, Visits: 21K
Thanks Peter! Smooooth
Terry Bottorff
Terry Bottorff
Advanced StrataFrame User (656 reputation)Advanced StrataFrame User (656 reputation)Advanced StrataFrame User (656 reputation)Advanced StrataFrame User (656 reputation)Advanced StrataFrame User (656 reputation)Advanced StrataFrame User (656 reputation)Advanced StrataFrame User (656 reputation)Advanced StrataFrame User (656 reputation)Advanced StrataFrame User (656 reputation)
Group: Forum Members
Posts: 448, Visits: 12K
Peter, what do you use to design your report? What I mean is how are you able to drag and drop fields on your report?

I've not used XtraReport but I am thinking about switching. TIA.

Edhy Rijo
E
StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)StrataFrame VIP (3.7K reputation)
Group: StrataFrame Users
Posts: 2.4K, Visits: 23K
Hi Terry,



I have not test it yet, but I looked at some of their online videos, and they look very impressive and the quality of the videos are the best I have seen for an online video.



http://www.devexpress.com/Products/NET/Reporting/QuickStart.xml


Edhy Rijo

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search