Click here to Skip to main content
15,892,839 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Guyz,

I need to show the Progress Ring Control while navigating from one page to another page.

Below is the code that I have tried..
VB
Protected Overrides Sub LoadState(navigationParameter As Object, pageState As Dictionary(Of String, Object))
        Me.ShowProgressGrid.Begin()
        Try
            pageTitle.Text = "Survey Rooms"
            txtSurveyor.Text = If(String.IsNullOrEmpty(GSurveyorName), g_emailid, GSurveyorName)
            AssignClientData()
            CreatetblXMLSurvey()
            PopulateCombo()
            AssignValues()
            ApplySearch(String.Empty)
            itemGridView.SelectedIndex = -1
        Catch ex As Exception
        Finally
            Me.HideProgressGrid.Begin()
            
        End Try
    End Sub



Need help Please..
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900