Search

You searched for the word(s): userid:625198

Matching Posts

  • Re: how to access sessions in silverlight

    You can read this tutorial which explains how to get Session data to Silverlight controls - http://www.dotnetspider.com/tutorials/Silverlight-Tutorial-316.aspx The second part of the same Silverlight tutorials gives step by step instructions on how to create a WCF service to retrieve Session data to the Silverlight controls.
  • Re: silverlight 2.0

    You have to install the service pack to get the Silverlight 2.0. Also, install the Silverlight SDK to develop Silverlight applications. Silverlight has lot of overlap with WPF, however, you can learn Silverlight independently without having to get in to WPF. You can find some Silverlight tutorials for beginners here.
    Posted to ASP.NET Controls for Silverlight (Forum) by matojo2006 on 10/5/2008
    Filed under: Silverlight tutorials
  • Re: SilverLight beta 2 integrated with the webapplication

    It is bit tricky if both .xaml files are in same assembly. Here is an easy approach based on your requirement: Instead of giving a link from page1.aspx to page2.aspx , create the link/button in the xaml page itself. In the click event of the link/button, just open the second xaml control. So, you will stay in page1.asxp, but you can open second .xaml control from page1.aspx itself. To open another xaml control from a xaml control, you can use the following code: this .Content = new Page2 (); where
    Posted to ASP.NET Controls for Silverlight (Forum) by matojo2006 on 10/5/2008
    Filed under: Silverlight tutorials
  • How to set font programmatically of a label in the Detail secton

    I am quite new to Cystal Reports for .NET. I have a crystal report in our asp.net application and we are trying to use barcode font for an item. But the font itself will be selected by user just before priting the report. This means I need to programmatically set the font for the label. How can I do this? How can I access the label object from my VB.NET code so that I can set the fotn property ?
    Posted to Crystal Reports (Forum) by matojo2006 on 12/19/2005
  • Re: Can I use an MS Access Database?

    FlangeArtist wrote: I would like to use Access. Not because of SQL Express, but because my hosting service does not allow SQL Express and changes $10 per month for full SQL!!! The guilty hosting company, is a parter for Microsoft and is discountASP.net!!! Why don't you try free hosting? http://www.aspspider.net has free hosting with SQL Express.
    Posted to Club Web Site Starter Kit (Forum) by matojo2006 on 12/5/2005
  • Re: Generic e-mail required to be sent to supervisor

    What exactly is the problem? If you are looking for code to just send email, it is pretty straight forward in .NET. You can use the SmtpMail class. Here is a small article about it - http://www.dotnetspider.com/kb/Article36.aspx
    Posted to Getting Started (Forum) by matojo2006 on 10/25/2005
  • Re: Setting security on virtual folders

    I downloaded the xcacls.vbs tool from Microsoft and that did it for me! But for some reason, I could not make it run from the ASP.NET web application. So, I had to write a windows service to execute this. The web page will give the information to the service and the service will run the xcacls.vbs with appropriate paramters.
    Posted to Security (Forum) by matojo2006 on 10/24/2005
  • Re: How to: Best practices for a Touch Screen Web App

    You don't have to develop anything special for touch screen. When a user touch the touch screen, you will get the mouse click events. You can probably design large buttons etc so that user can easily see the buttons and touch.
    Posted to Getting Started (Forum) by matojo2006 on 10/24/2005
  • Re: Only allow one user to search at a time

    Create a wrapper class for the "search" class. This wrapper class should have one shared method (say "Search()" ). The search method should do a LOCK() in the beginning and UNLOCK() in the end. Try SyncLock (GetType(MyClass)) ' Avoid error if more than one instance is trying to write to the same file. ' Call search method of search object Catch ' ... Finally End SyncLock End Try
    Posted to Web Forms (Forum) by matojo2006 on 10/24/2005
  • Re: Create a web crawler

    You can use the WebClient class to retrieve the content of a web page. Then use some regular expression to identify all the hyperlinks in the page. Store them into a temporary table or memory. Continue retrieving content using the web client class for each hyper link in each page.
    Posted to Web Forms (Forum) by matojo2006 on 10/24/2005
Page 1 of 3 (29 items) 1 2 3 Next >