Hi, Could anyone suggest me a .net audio library (open source prefered) to crop mp3 files using C#. Regards, Anoop
Anoop Unnikrishnan
Posts
-
crop mp3 file using C# -
Capture an object in ASPI hav a requirement where an classic ASP site has to use an existing WegService which returns an address object. The response from a webMethod is as below: <?xml version="1.0" encoding="utf-8" ?> - <Address xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/"> <Name>Anoop</Name> <HouseNo>6</HouseNo> <Street>Tumkur</Street> <Country>India</Country> </Address> The webMethod is returning an object of Address . How do i capture this response. As you can see that the response XML file returns multiple data. ASP Code: Dim l_obj_SOAP Dim l_strResult Dim l_wsdlPath l_wsdlPath ="C:\Service.wsdl" Set l_obj_SOAP = Server.CreateObject("MSSOAP.SoapClient") l_obj_SOAP.ClientProperty("ServerHTTPRequest") = True l_obj_SOAP.mssoapinit (l_wsdlPath) response.Write("1") response.Write( l_obj_SOAP.GetAddress("32323")) response.Write("2") Error: Response object, ASP 0185 (0x8002000E) A default property was not found for the object. /SOAPclient/client.asp Regards, Anoop :-D
-
Auto Register ActiveX component in classic ASPHi I have created an ActiveX Object in VB6-->published it in to an OCX file. Now want to use it in an ASP page such that the ActiveX file gets auto registered in the client side. Please guide me how to create MSI file and make this possible. Also please let me know if there are any free tools available. Regards, Anoop
modified on Friday, October 17, 2008 12:28 AM
-
Accessing JAVA webservice from ASP [modified]SOAP call to JAVA webservice from ASP using MSSOAP.SoapClient. Could any one post the sample to access java webservice from asp Cheers Anoop :wtf:
modified on Thursday, July 31, 2008 5:44 AM
-
Soap Call to a Webmethod platformHow to make a SOAP Call from ASP.Net to a WebMethod platform. Thanks & Regards Anoop :sigh:
-
Assign event to a particular combo in a DataGridViewThis issue is with respect to Windows Application I have 2 comboBox in the same row of a DatagridView. When I attach an event one of them, the other comboBox also fires the same event. How can I attach an event only to a particular combo in a DataGridView
-
Assign event to a particular combo in a DataGridViewThis issue is with respect to Windows Application I have 2 comboBox in the same row of a DatagridView. When I attach an event one of them, the other comboBox also fires the same event. How can I attach an event only to a particular combo in a DataGridView
-
Help regarding crystal reportsYou need to create parameters in crystal report. Google Push and Pull method in ASP.NET with Crystal Report. Cheers Anoop
-
[Message Deleted]Drag and drop a GridView and name it as GridView1 Try the below code for merging the header protected void Page_Load(object sender, EventArgs e) { DataTable dt = new DataTable("Employee"); //Name Age Gender Mobile Phone Email dt.Columns.Add("Name"); dt.Columns.Add("Age"); dt.Columns.Add("Gender"); dt.Columns.Add("Mobile"); dt.Columns.Add("Phone"); dt.Columns.Add("Email"); dt.Rows.Add("Anoop", "25", "Male", "996633352", "02255566", "anoopukrish@gmail.com"); GridView1.DataSource = dt; GridView1.DataBind(); } protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.Header) { GridView gridView = (GridView)sender; GridViewRow gridViewRow = new GridViewRow(0, 0, DataControlRowType.Header, DataControlRowState.Insert); TableCell tableCell = new TableCell(); //add Personal Info tableCell.Text = "Personal Info"; tableCell.Attributes.Add("style", "text-align: center"); tableCell.ColumnSpan = 3; gridViewRow.Cells.Add(tableCell); //Add Contact Info tableCell = new TableCell(); tableCell.Attributes.Add("style", "text-align: center"); tableCell.Text = "Contact Info"; tableCell.ColumnSpan = 3; gridViewRow.Cells.Add(tableCell); GridView1.Controls[0].Controls.AddAt(0, gridViewRow); } } ... There by u get the desired output...
-
DataTable rowsIn the RowCreated event of GridView match each row from datatable to that of the time in the new created row. if it matches show it in textbox else leave it as it is. Take care that the activity is not matching.
-
Javascriptoncontextmenu="return false"> The above statement can block the right clicks on the page. Then also the browser has options to view the source. So better try encrypt HTML.
-
How to get a multiline head using DataGridView?Drag and drop a GridView and name it as GridView1 Try the below code protected void Page_Load(object sender, EventArgs e) { DataTable dt = new DataTable("Employee"); //Name Age Gender Mobile Phone Email dt.Columns.Add("Name"); dt.Columns.Add("Age"); dt.Columns.Add("Gender"); dt.Columns.Add("Mobile"); dt.Columns.Add("Phone"); dt.Columns.Add("Email"); dt.Rows.Add("Anoop", "25", "Male", "996633352", "02255566", "anoopukrish@gmail.com"); GridView1.DataSource = dt; GridView1.DataBind(); } protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.Header) { GridView gridView = (GridView)sender; GridViewRow gridViewRow = new GridViewRow(0, 0, DataControlRowType.Header, DataControlRowState.Insert); TableCell tableCell = new TableCell(); //add Personal Info tableCell.Text = "Personal Info"; tableCell.Attributes.Add("style", "text-align: center"); tableCell.ColumnSpan = 3; gridViewRow.Cells.Add(tableCell); //Add Contact Info tableCell = new TableCell(); tableCell.Attributes.Add("style", "text-align: center"); tableCell.Text = "Contact Info"; tableCell.ColumnSpan = 3; gridViewRow.Cells.Add(tableCell); GridView1.Controls[0].Controls.AddAt(0, gridViewRow); } } ... There by u get the desired output... :-\ ____________________:cool: Anoop Unnikrishnan