Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Tags
Member Avatar for kapil.tandon

i have created the code like this [code=asp.net]<asp:GridView ID="grd" runat="server" AutoGenerateColumns="False" onselectedindexchanged="grd_SelectedIndexChanged" Width="100%"> <Columns> <asp:BoundField DataField="ID" HeaderText="Budget ID" /> <asp:CommandField HeaderText="Delete" ShowDeleteButton="True" /> </Columns> </asp:GridView>[/code] a show delete field will appeat at run time. i want to delete the row from the gridview.can anybody tell me how to do it?when …

Member Avatar for sekharM
0
143
Member Avatar for kapil.tandon

hi i created stacked column dundas chart. nw i want to put it in the flash option in the image type option but when i click on the image type property there is no option for the flash. only jpeg,bmp,ppnf etc option are there?? Moreover ,there is no optin for …

Member Avatar for kapil.tandon
0
73
Member Avatar for kapil.tandon

Hi everyone, I stared creating an application in ASP.NET in which which i used the dundas chart control.The problem is that when i m executing the application , it is not showing the chart which i selected to display.It shows only the blank space. I dont knw what is the …

Member Avatar for kapil.tandon
0
214
Member Avatar for kapil.tandon

Private Sub PrintToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PrintToolStripMenuItem.Click Try Dim streamToPrint As StreamReader Dim printFont As Font Dim screencapturer As New ScreenshotCapture.ScreenCapture Dim randomGenerator As New System.Random(2000) Dim filePath As String = Application.StartupPath + "\tempScreenShoot" + randomGenerator.Next().ToString + ".jpg" screencapturer.CaptureWindowToFile(Me.Handle, filePath, System.Drawing.Imaging.ImageFormat.Jpeg) streamToPrint = New StreamReader(filePath) …

0
64
Member Avatar for kapil.tandon

i hv a chk box item field and the bound field . and one separate drodown llist i hv added in my code.based on the selection of the chkbox , it will giv me the index and the selection of the calue from the dropdoen list , both the values …

Member Avatar for Jihad
0
68
Member Avatar for kapil.tandon

[code=aspnet] private void AddRecordToGrid() { try { datatable dt = new datable(); if (Session["SampleDataTable"] == null) { dt.Columns.Add(new DataColumn("ID", typeof(string))); dt.Columns.Add(new DataColumn("Qtr", typeof(string))); dt.Columns.Add(new DataColumn("Exp", typeof(string))); dt.Columns.Add(new DataColumn("Partner", typeof(string))); dt.Columns.Add(new DataColumn("Net", typeof(string))); dr = dt.NewRow(); } else { dt= (DataTable)Session["SampleDataTable"]; } dr = dt.NewRow(); if (dr.IsNull(0)) { //dr = dt.NewRow(); …

0
70
Member Avatar for kapil.tandon

SqlDataReader rdr = objCon.GetData("SP_BudgetID"); while (rdr.Read()) { txtBudgetID.Text = rdr.GetSqlInt(64); } i m getting an exception hw is it possbile to assign values from dataeader to the control like texbox and i want to assign these value into an array. wat is the way of doing it

Member Avatar for ddanbe
0
121
Member Avatar for kapil.tandon

hii, i m developing an application n i am using the list box control. i hv allowed that multiple items can be selected. now what i want when the user selects a particular item , a popup or any control should open that allow user to enter the amont related …

Member Avatar for edejonge
0
186
Member Avatar for kapil.tandon

hi i added modal popup handler into my application the popup which enmrges out is a panel and inside the panel i added the label and correspondong to label there is one textbox(txtE1) now the problem i m facing is tht i want to write the method related to the …

Member Avatar for kapil.tandon
0
242
Member Avatar for kapil.tandon

hi, i hv created a panel in asp.net and panel inside that panel and a one more poanel inside second one.now i hv created a modap pop up control and created a panel for the display of data in the panel.when shud i place the code for the modal popup …

0
68
Member Avatar for kapil.tandon

hi , like i have to create a label and that label displays the total cost of a particulat think.like i do some activity A. related to acctivity A are following activities. A-a A-b A-c A-d what i hv to do is when user click on the label.it pops up …

Member Avatar for dickersonka
0
91
Member Avatar for kapil.tandon

hi , can anybody tell me which is the best way to generate the html reports in the C# and then after genrating whcih tool is considered to be the best to diplay the reports data.like we cab display in label ,literal or which is the best way?

Member Avatar for kapil.tandon
0
115