Click here to Skip to main content
15,895,746 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: Style for Current Page of Datapager. Pin
www.Developerof.NET10-Jun-11 18:01
www.Developerof.NET10-Jun-11 18:01 
QuestionMoving Data from Silverlight to ASp.net via SQl server Pin
Vimalsoft(Pty) Ltd9-Jun-11 9:20
professionalVimalsoft(Pty) Ltd9-Jun-11 9:20 
AnswerRe: Moving Data from Silverlight to ASp.net via SQl server Pin
Mark Salsbery9-Jun-11 10:33
Mark Salsbery9-Jun-11 10:33 
GeneralRe: Moving Data from Silverlight to ASp.net via SQl server Pin
Vimalsoft(Pty) Ltd9-Jun-11 19:06
professionalVimalsoft(Pty) Ltd9-Jun-11 19:06 
GeneralRe: Moving Data from Silverlight to ASp.net via SQl server Pin
Mark Salsbery9-Jun-11 19:10
Mark Salsbery9-Jun-11 19:10 
GeneralRe: Moving Data from Silverlight to ASp.net via SQl server Pin
Vimalsoft(Pty) Ltd9-Jun-11 19:14
professionalVimalsoft(Pty) Ltd9-Jun-11 19:14 
GeneralRe: Moving Data from Silverlight to ASp.net via SQl server Pin
Mark Salsbery10-Jun-11 6:10
Mark Salsbery10-Jun-11 6:10 
AnswerRe: Moving Data from Silverlight to ASp.net via SQl server Pin
Mycroft Holmes9-Jun-11 14:15
professionalMycroft Holmes9-Jun-11 14:15 
Does ASPX have access to SL protected data storage on the client(I have no idea)?

When you start your SL app pass in a guid from the ASPX shell app and use that in SQL servers temp table. Bloody horrible solution.

I'm passing report criteria from an SL app to a popup via the url, maybe a work around there, maybe a hidden window using the options!

private void DoReport(object sender, RoutedEventArgs e)
{

    string sRepName = (sender as Button).Tag.ToString();
    string sRepCrit = string.Empty;
    switch (sRepName)
    {
        case "lineset":
            sRepCrit = VM.SelectedRoom.RoomID.ToString();
            break;
        case "equipmentlist":
            sRepCrit = GetCriteriaEQ();
            break;
    }

    string sURL =  VM.GetReportsAddress( sRepName, sRepCrit);
    HtmlPopupWindowOptions options = new HtmlPopupWindowOptions();

    options.Left = 0;
    options.Top = 0;
    options.Width = 810;
    options.Height = 600;

    if (true == HtmlPage.IsPopupWindowAllowed)
        HtmlPage.PopupWindow(new Uri(sURL), "new", options);
}

Never underestimate the power of human stupidity
RAH

GeneralRe: Moving Data from Silverlight to ASp.net via SQl server Pin
Vimalsoft(Pty) Ltd9-Jun-11 19:11
professionalVimalsoft(Pty) Ltd9-Jun-11 19:11 
QuestionWPF Code Creation of input Binding Pin
Ed Hill _5_9-Jun-11 0:32
Ed Hill _5_9-Jun-11 0:32 
AnswerRe: WPF Code Creation of input Binding Pin
SledgeHammer019-Jun-11 6:49
SledgeHammer019-Jun-11 6:49 
GeneralRe: WPF Code Creation of input Binding Pin
Ed Hill _5_9-Jun-11 22:17
Ed Hill _5_9-Jun-11 22:17 
GeneralRe: WPF Code Creation of input Binding Pin
SledgeHammer0110-Jun-11 5:05
SledgeHammer0110-Jun-11 5:05 
Questiontextbox value Pin
arkiboys8-Jun-11 1:36
arkiboys8-Jun-11 1:36 
AnswerRe: textbox value Pin
Pete O'Hanlon8-Jun-11 1:45
mvePete O'Hanlon8-Jun-11 1:45 
GeneralRe: textbox value Pin
arkiboys8-Jun-11 2:04
arkiboys8-Jun-11 2:04 
GeneralRe: textbox value Pin
Pete O'Hanlon8-Jun-11 2:09
mvePete O'Hanlon8-Jun-11 2:09 
GeneralRe: textbox value Pin
arkiboys8-Jun-11 2:26
arkiboys8-Jun-11 2:26 
GeneralRe: textbox value Pin
Sparkling_ouc8-Jun-11 22:16
Sparkling_ouc8-Jun-11 22:16 
GeneralRe: textbox value Pin
Pete O'Hanlon8-Jun-11 2:25
mvePete O'Hanlon8-Jun-11 2:25 
GeneralRe: textbox value Pin
Ed Hill _5_9-Jun-11 0:44
Ed Hill _5_9-Jun-11 0:44 
GeneralRe: textbox value Pin
Pete O'Hanlon9-Jun-11 0:48
mvePete O'Hanlon9-Jun-11 0:48 
GeneralRe: textbox value Pin
Ed Hill _5_9-Jun-11 0:50
Ed Hill _5_9-Jun-11 0:50 
GeneralRe: textbox value Pin
Pete O'Hanlon9-Jun-11 1:04
mvePete O'Hanlon9-Jun-11 1:04 
GeneralRe: textbox value Pin
Ed Hill _5_9-Jun-11 5:59
Ed Hill _5_9-Jun-11 5:59 

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.