Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
N

NTheOne

@NTheOne
About
Posts
31
Topics
26
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Delete all existing files prior to publish + Recover deleted files
    N NTheOne

    Hello, If select

    Delete all existing files prior to publish

    option while publishing the website....than all the files of that location will be deleted. Any one knows the files those have been deleted can be recovered? If yes than how can i get those files/ what is the location for those files? Thanks in advance..

    ASP.NET question

  • Could not load type 'System.Windows.Controls.VirtualizingPanel' from assembly 'System.Windows, Version=2.0.5.0
    N NTheOne

    Hello, I am converting my application to Silverlight 5 from Silverlight 4. I got following error while converting.

    Could not load type 'System.Windows.Controls.VirtualizingPanel' from assembly 'System.Windows, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e'.

    Any help regarding that will be greatly appreciated. Thanks

    WPF help announcement

  • Open PDF in New Window from Code Behind using JavaScript
    N NTheOne

    Hello All, I want to open PDF file in new window on button click event from code behind through JavaSctipt. I am using below mentioned code for opening PDF file in new window.

    string PopUpWindowPage = @"E:\\\Prism4.pdf";
    string Script = "";
    Script += "<script id='PopupWindow'>";
    Script += "confirmWin = window.open(' " + PopUpWindowPage + "','" + 1 + "','scrollbars=yes,resizable=1, width=960,height=500,left=50,top=130,status');";
    Script += "</script>";
    if (!Page.IsClientScriptBlockRegistered("PopupWindow"))
    Page.RegisterClientScriptBlock("PopupWindow", Script);

    I get below mentioned error message while opening the PDF file in new window.

    Microsoft JScript runtime error: Access is denied.

    Can Anyone tell me whats the issue with above code or any other settings have to do? Thanks in Adv...

    ASP.NET help javascript tools question

  • Silverlight DataGrid - Get Each Row Issue
    N NTheOne

    Hello, Can anyone tell me how to access each row of datagrid without using datagrid_LoadingRow event? Thanks..

    WPF help tutorial question

  • SLsvcUtil takes longer time
    N NTheOne

    Hello All, I am using Silverlight Service Model Proxy Generation Tool (SLsvcUtil.exe) to generate Silverlight client proxies from service metadata documents. It takes longer time to generate client proxies(about 30 mins). My operating system is Windows 7. I would be thankful if anyone can tell me why it takes longer time respond? Thanks in adv...

    WCF and WF question

  • WCF Async Call random response
    N NTheOne

    Hello All, I have issue with WCF ASYNC call. WCF service give me a random response. Sometimes it gives me result and sometimes not. I have set max values for binding related properties. Can anyone can help me to figure out this issue? Thanks

    WPF wcf help csharp wpf question

  • Sync call to WCF Methods
    N NTheOne

    Hello, I am using WCF + Silverlight. Can anyone can tell me how to make sync call to WCF methods? Thanks in Advance..

    WPF csharp wcf tutorial question

  • Runtime Error 4008... Layout Cycle Detected... Layout Could Not Complete.
    N NTheOne

    Hello All, I have came across below mentioned error message. I dont know why such types issue happens.Anyone can tell me why this issue happens... Runtime Error 4008... Layout Cycle Detected... Layout Could Not Complete. Thanks

    WPF help

  • WCF Service called twice..
    N NTheOne

    Hello All, I have strange problem. I have used WCF services in my Silverlight applications. Sometimes, WCF service called twice. I have set following properties for the BasicHttpBinding. -- binding.MaxBufferSize = Int32.MaxValue; -- binding.MaxReceivedMessageSize = Int32.MaxValue; For overcoming such type of situations, I have unregistered the WCF method call and its working fine. Is it proper solutions for that? It would be gr8 if anyone can explain me, why such type of issue happens.

    WPF wcf help csharp wpf question

  • SQL Server : Query Cost (relative to the batch): 100%
    N NTheOne

    Hello All, Whenever I run any simple select query, it shows me following message in Execution Plan. I have created relevant indexes on the table. Query Cost (relative to the batch): 100% Can anyone tell how can I reduce this Query Cost ? Thanks

    Database database question sql-server sysadmin

  • Get Month - Common Function for SQL Server & Oracle
    N NTheOne

    Hello, Can any one tell me common function for SQL server and Oracle for getting month from the given date. For Example, In SQL Server --> CAST(DATEPART(Month , Booking.BookingDtTime) AS VARCHAR(20)) AS Month_Value In Oracle --> TO_CHAR(Booking.BookingDtTime, 'Month') AS Month_Value I want a common function for the same which works both in SQL Server as well Oracle. Thanks..

    Database database sql-server oracle sysadmin tutorial

  • LINQ to Oracle & LINQ to SQL support in Web application
    N NTheOne

    Hello All, My current application using LINQ to SQL for performing various operations. I have to run mt application using Oracle database. I can use SQL Server as well Oracle database in my application. Can any one can help me how can I do it. Devart provides a LINQ to Oracle support. Is it desirable to use that tool or not? Thanks..

    LINQ database question csharp sql-server oracle

  • dialogs must be user-initiated silverlight 4
    N NTheOne

    Hello, Thanks for the response. I am calling this method in the button click event and instantiated the SaveFileDialog in the same. Still got the error. Thanks...

    WPF help graphics sysadmin question

  • dialogs must be user-initiated silverlight 4
    N NTheOne

    Hello, While exporting the telerik chart to PNG image format, I received below mentioned error message. dialogs must be user-initiated. Perhaps the image is saved successfully. Can any one can help me why I got this type of error message? Here is my code: try { SaveFileDialog dialog = new SaveFileDialog(); dialog.DefaultExt = ".png"; dialog.Filter = "Portable Network Graphics (*.png)|*.png"; bool? showDialog = dialog.ShowDialog(); if (showDialog == true) { Stream fileStream = dialog.OpenFile(); MainChart.ExportToImage(fileStream, new Telerik.Windows.Media.Imaging.PngBitmapEncoder()); fileStream.Close(); } }

    WPF help graphics sysadmin question

  • PRISM in Silverlight
    N NTheOne

    Hello, Anyone can tell me advantages using PRISM in Silverlight. And Which design pattern is suitable for PRISM....Its MVVM? Thanks & Regards...

    WPF architecture wpf design regex question

  • Binding List of Objects in CommandParameter
    N NTheOne

    Hello, How to bind List of objects in the button's CommandParameter in Xaml. Thanks in adv..

    WPF wpf wcf tutorial

  • MVVM : Assign ItemSource in View's Code Behind
    N NTheOne

    Hi.. Thanks for the reply. But I have situation for getting search criteria from the page and perform the operation in the button click event based on passing the search criteria to the view model. So, How can I get view's control value in the viewmodel? Can u pls give a hint about how to overcome such type of situations? Thanks..

    WPF csharp css wpf wcf architecture

  • MVVM : Assign ItemSource in View's Code Behind
    N NTheOne

    Hello To All, I am new to MVVM with Silverlight. MyTestView --> View (Button, Grid) MyTestViewModel --> ViewModel (WCF Service Methods) In my button call I have assigned the DataContext. I have to fill grid with the data that have been returned from the service call in the same click event in the View's code behind. Any help regarding this will be greatly appreciated.. Thanks in adv...

    WPF csharp css wpf wcf architecture

  • Get Data from ViewModel in Code behind using MVVM
    N NTheOne

    Hello to All, Can anyone can help me get data from the ViewModel(DataContext of the page) in Page's Code behind using MVVM architecture. Thanks in Adv..

    WPF architecture wpf help

  • Image Viewer Using Silverlight
    N NTheOne

    Hello, I am new to Silverlight. Can anyone help me for creating the Image Viewer using Silverlight. Here are the requirements: 1) Image Viewer contains images at the bottom of the window. There are arrows for showing next/previous images. i.e.

    [Image Preview] <-- [][][][][][][][][][] -->

    where [] = image 2) When User clicks on the image at bottom Image Pane, the image have been previewed in the Image Preview window. Any help regarding this will be greatly appreciated.. Thanks in advance..

    WPF business help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups