or
Dim Print As New System.Diagnostics.ProcessStartInfo()Print.Verb = "print"Print.WindowStyle = ProcessWindowStyle.HiddenPrint.FileName = fullpathPrint.UseShellExecute = TrueSystem.Diagnostics.Process.Start(Print)<GroupByExpressions> <telerik:GridGroupByExpression > <SelectFields > <telerik:GridGroupByField FieldAlias="Engagement Name" FieldName="EngName" FormatString="{0:d}"></telerik:GridGroupByField> </SelectFields> <GroupByFields > <telerik:GridGroupByField FieldName="EngNameWithID" HeaderText="Engagement Name"></telerik:GridGroupByField> </GroupByFields> </telerik:GridGroupByExpression></GroupByExpressions>HeaderText="Engagement Name" as per localization.Thanks.....
Hello,
I am currently working with the RadListView components.
I am trying to make a textbox visible or not from the result of a preceding textbox.
if tb1.text = “CE”
then tb2.visible = false
Currently I am having null pointer exception returns. The problem is that by the standard methods of binding the result to a String returns an object and not a string (even with the .ToString() argument). How can i resolve this problem?
'Retreive the list of functions in my DB then : If FunctionList.Count <> 0 Then Me.RadGridFunctions.DataSource = FunctionList Else Me.RadGridFonctions List(Of Fonction) End If Me.RadGridFunctions.DataBind()<head> <title></title> <script type="text/javascript"> function openWin() { window.radopen("Default5.aspx", "UserListDialog"); return false; } </script> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="sc1" runat="server"> </telerik:RadScriptManager> <telerik:RadWindowManager ID="RadWindowManager1" runat="server" > <Windows> <telerik:RadWindow ID="UserListDialog" runat="server" Height="320px" Width="550px" Left="150px" /> </Windows> </telerik:RadWindowManager> <asp:Button ID="aspButton" runat="server" Text="aspButton" /> <telerik:RadButton ID="radButton" runat="server" Text="radButton" /> </form> </body> Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Not IsPostBack Then Me.aspButton.Attributes.Add("onclick", "return openWin();return false;") Me.radButton.Attributes.Add("onclick", "return openWin();return false;") End If End SubDim ds1 As New DataSet
ds1 = dsDemo("demo","demo")
RadGrid1.DataSource = ds1.Tables(0).DefaultView
End Sub