|
hi to all,
i done ssrs report(RDL) using asp.net.Now i need to this implement with silverlight.Is it possible or not.If possible how can i implement give me solution.
Thanks,
sundar
|
|
|
|
|
|
Hello, i am looking for the best wpf chart software / tool for wpf.
It doesnt matter if it costs or not (or how much). The most important thing is, to customize the
charts as much as possible.
|
|
|
|
|
If you need the charts to do dynamic update then check out the D3 project on codeplex: http://dynamicdatadisplay.codeplex.com/Thread/List.aspx
|
|
|
|
|
Hi,
i have text box to enter the name, add button,listbox will display the added records,button to save the record.
when i entered the name and clicked add button, it will add the data to database and text box will be cleared.
like that i adding some records and those records will be binded to listbox and it will display the records in the list box.
now i am trying to edit the record so i just selecting the record in listbox. by doing that i will get the corresponding data in the same text box(Which i used to enter the data).i binded the listbox selected item
to the text box.
then i edited text box and i clicked save button, its saved.
while i saving it i am clearing the text box but due to clearing the text box in save button is clearing the data which is binded in the list box , so the listbox displays the empty data for that record.
Thank's,
|
|
|
|
|
Hi
Some one please explain me outofBrowser concept. I need some clarification below
1.if i installed the application from web to local. which location path out appliation get installed.
2.if i used WCF service in web. how it will work in my local system.(assume i removed internet connection after i installed)
3. Is it possible to access data from a database on the internet when the application is running out of browser and there is no internet access?
4 What all are the security issues posed on the application when running it out of browser.
Regards
Gopal
|
|
|
|
|
You might find this[^] tutorial useful. Also note that "out of browser" doesn't necessarily mean "running disconnected".
/ravi
|
|
|
|
|
Hi
Thanks for reply. They mentioned about how to create OOB.
But my doubts is which path application are installed. since it is use full to click the shotcut inorder to execute the application again.
Regards
Gopal
|
|
|
|
|
Hi there,
I have a WinForm application written in C#. I have added a WPF usercontrol added to the Winform and I want to get the mouse Events passed back to the WinForm.
So you can see in my XAML I have a MouseUp event:
UserControl x:Class="CustomRssFeed.MainWin"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="41" Width="699" Foreground="#FFFFFFFF" Loaded="MainWin_Loaded" Unloaded="MainWin_Unloaded"
SizeChanged="MainWin_SizeChanged"
MouseUp="UserControl_MouseUp"
and I have a XAML.CS with:
private void UserControl_MouseUp(object sender, MouseButtonEventArgs e)
{
}
My question is how do I convert the MouseButtonEventArgs e to a friendly WinForm version of MouseEventArgs ???
|
|
|
|
|
What about subscribing to the event(s) on the ElementHost object
instead?
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
unfortunately the ElementHost appears to be very rudimentary but thanks for the thought.
|
|
|
|
|
Hello
I am getting the following error.
"An error occurred while processing this request."
My code is as bellow:
private void btnShow_Click(object sender, RoutedEventArgs e)
{
Uri ur = new Uri(System.Windows.Browser.HtmlPage.Document.DocumentUri,"WebDataService1.svc");
WapCosEntities context = new WapCosEntities(ur);
var query = from u in context.UserMgmt
orderby u.ECode
select u;
var dsQuery = (DataServiceQuery<UserMgmt> )query;
dsQuery.BeginExecute(result => lstCustomers.ItemsSource = dsQuery.EndExecute(result), null);
int i = lstEmpCode.Items.Count;
}
Help me please.
|
|
|
|
|
rag_Singh wrote: Uri ur = new Uri(System.Windows.Browser.HtmlPage.Document.DocumentUri,"WebDataService1.svc");
Use the following & check if it resolves your problem:
ur = new Uri(App.Current.Host.Source, "../WebDataService1.svc");
Regards,
- Kunal Chowdhury ( My Blog)
|
|
|
|
|
I want to know how to do something like this in WPF.
Graphics gfx = MainForm.CreateGraphics();
gfx.DrawRectangle(new SolidBrush(Color.Blue), 0, 0, 100, 100);
I don't want to deal with WPF controls, windows, and XAML at this point. I just want hardware accelerated rendering of simple graphics. Particularly images and rectangles.
|
|
|
|
|
Override the OnRender method of the window. The DrawingContext it gives you should do what you need.
|
|
|
|
|
Like I said. I want to draw with WPF, but I don't want to deal with WPF windows/controls, and XAML.
|
|
|
|
|
Ah, ok, so you want to embed a WPF drawing surface inside WinForms. Well, you'll need at least one WPF control, if you want to use WPF drawing methods...
Here's a decent-looking google hit: http://www.switchonthecode.com/tutorials/wpf-tutorial-using-wpf-in-winforms[^]
You should be able to skip the XAML part of that tutorial, if you just want a drawing surface... Inherit an ElementHost, put it on your form, override the OnRender method, etc etc.
|
|
|
|
|
CaptainSeeSharp wrote: Graphics gfx = MainForm.CreateGraphics();
This is always bad code, unless you're drawing a rubber band.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
The one which comes with PaintEventArgs is the correct way, is it?
50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
|
|
|
|
|
Yes, handling the paint event is correct. What he is doing will work, so long as no other window ever obscures his window, or he doesn't ever minimise and reshow it. Otherwise, what he drew, will disappear.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
But if he has placed the same code in Paint event, I will be one stupid working way.
50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
|
|
|
|
|
*grin* yes, that would be funny.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
|
If you're using Deep Zoom, only the parts of the image
being viewed get downloaded (in tiles), so no matter
how large the image is it should download in a reasonable
amount of time.
I regularly work with 1GB+ images.
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Hi All,
'IEditableCollectionView' is A good concept to deals with data adding and removing new items, as well as editing items in a transactional way to bind WPF Data Grid.
Can you help me..How to implement it for WPF Data Grid ?
My Requirement : I have multiple WPF Data Grid's with single data source ( DataSet Or DataTable). I want add new empty row to all datagrid's at single click (i did it partially).
** All Datagrid columns are single click editable -- done.
But whenever user click on 'add' button an empty row is added to all three grid's (above said). i want to update data on button save click event.
My problem is.... i am unable to get User entered data from CollectionView...
if any body have good knowledge on 'IEditableCollectionView' concept...please explain me How to edit/Update and Delete rows from collection view...
if you provide samples or Url's really gr8 helpful me..
Thanks in advance.
Eswara G
|
|
|
|