Click here to Skip to main content
15,886,737 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Load project into canvas Pin
Christian Graus23-Mar-09 15:21
protectorChristian Graus23-Mar-09 15:21 
GeneralRe: Load project into canvas Pin
emptythetill24-Mar-09 7:41
emptythetill24-Mar-09 7:41 
QuestionDrag drop preview Pin
anishkannan23-Mar-09 0:54
anishkannan23-Mar-09 0:54 
AnswerRe: Drag drop preview [modified] Pin
sivaddrahcir23-Mar-09 11:45
sivaddrahcir23-Mar-09 11:45 
QuestionDownloading file from server Pin
sumit703422-Mar-09 23:50
sumit703422-Mar-09 23:50 
AnswerRe: Downloading file from server Pin
Mark Salsbery23-Mar-09 9:51
Mark Salsbery23-Mar-09 9:51 
GeneralRe: Downloading file from server Pin
sumit703423-Mar-09 18:59
sumit703423-Mar-09 18:59 
AnswerRe: Downloading file from server Pin
Braulio Dez1-Apr-09 5:58
Braulio Dez1-Apr-09 5:58 
You can do it using a trick.

Instead of calling the web service, from Silverlight call javascript method that will make an open to a given URL, this URL will point to a custom HTTP handler, then you return your file (implementing a custom HTTP handler it's easy can send you some info or link), you only has to say that the file is an attachment.

In my case I just render e jpeg, js:

function showReportDiagramPopup() {
//http: //www.javascripter.net/faq/openinga.htm
window.open("DiagramRenderPopup.aspx", "DatabaseDiagram", "scrollbars=yes, width=800,height=600", false);

// NOT IN USE, rather using popup
// Finally we are not going to use a popup, we just open the generated image as an attachment
//window.location = "DiagramImageHandler.ashx"

}

In Silverlight:

public void ShowDiagramImageRenderPopup()
{
System.Windows.Browser.HtmlPage.Window.CreateInstance("showReportDiagramPopup");
}

HTH
Braulio

/// -------------------------
     Braulio Díez

     DBSchemaEditor.com
     Free Silverlight based DB Schema Modeling Tool
/// -------------------------

QuestionRoutedEvent compare to event? Pin
mildred-frontfree22-Mar-09 23:34
mildred-frontfree22-Mar-09 23:34 
AnswerRe: RoutedEvent compare to event? Pin
ABitSmart23-Mar-09 0:04
ABitSmart23-Mar-09 0:04 
GeneralRe: RoutedEvent compare to event? Pin
mildred-frontfree23-Mar-09 0:24
mildred-frontfree23-Mar-09 0:24 
GeneralRe: RoutedEvent compare to event? Pin
Pete O'Hanlon23-Mar-09 1:00
mvePete O'Hanlon23-Mar-09 1:00 
GeneralRe: RoutedEvent compare to event? Pin
ABitSmart23-Mar-09 1:29
ABitSmart23-Mar-09 1:29 
GeneralRe: RoutedEvent compare to event? Pin
Pete O'Hanlon23-Mar-09 2:50
mvePete O'Hanlon23-Mar-09 2:50 
GeneralRe: RoutedEvent compare to event? Pin
ABitSmart23-Mar-09 2:56
ABitSmart23-Mar-09 2:56 
GeneralRe: RoutedEvent compare to event? Pin
Pete O'Hanlon23-Mar-09 3:08
mvePete O'Hanlon23-Mar-09 3:08 
GeneralRe: RoutedEvent compare to event? Pin
ABitSmart23-Mar-09 1:24
ABitSmart23-Mar-09 1:24 
GeneralRe: RoutedEvent compare to event? Pin
mildred-frontfree23-Mar-09 15:18
mildred-frontfree23-Mar-09 15:18 
QuestionWeb Service Software Factory Pin
Kamal Gurnani22-Mar-09 19:11
Kamal Gurnani22-Mar-09 19:11 
AnswerRe: Web Service Software Factory Pin
Pete O'Hanlon22-Mar-09 23:39
mvePete O'Hanlon22-Mar-09 23:39 
QuestionUIPAB for Composite WPF Pin
snowwolfchicago22-Mar-09 6:45
snowwolfchicago22-Mar-09 6:45 
AnswerRe: UIPAB for Composite WPF Pin
rkaushik13-May-09 9:15
rkaushik13-May-09 9:15 
QuestionNearestNeighbor rendering making mistakes? Pin
derm221-Mar-09 13:32
derm221-Mar-09 13:32 
AnswerRe: NearestNeighbor rendering making mistakes? Pin
Mark Salsbery22-Mar-09 6:52
Mark Salsbery22-Mar-09 6:52 
GeneralRe: NearestNeighbor rendering making mistakes? Pin
derm21-Apr-09 9:44
derm21-Apr-09 9:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.