- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
4 Posted Topics
Re: try these methods.... Regex.Replace(str, @"\t\n\r", ""); Or str = str.Replace(System.Environment.NewLine, ","); Or str = str.Replace(vbLf, [String].Empty) str = str.Replace(vbCr, [String].Empty) str = str.Replace(vbTab, [String].Empty) Full Source......[Remove "\r\n" from a string](http://net-informations.com/q/faq/newline.html) Lee | |
Re: Hope this will help you.....[Gridview Add, Edit and Delete](http://asp.net-informations.com/gridview/gridview-operations.htm) Lee | |
Re: try this code Excel.Workbook xlWorkBook; Excel.Worksheet xlWorkSheet; object misValue = System.Reflection.Missing.Value; xlWorkBook = xlApp.Workbooks.Add(misValue); xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1); xlWorkSheet.Cells[1, 1] = "Sheet 1 content"; xlWorkBook.SaveAs("yourFileName", Excel.XlFileFormat.xlWorkbookNormal, misValue, misValue, misValue, misValue, Excel.XlSaveAsAccessMode.xlExclusive, misValue, misValue, misValue, misValue, misValue); xlWorkBook.Close(true, misValue, misValue); Full Source......[Create Excel Worksheet](http://csharp.net-informations.com/excel/csharp-create-excel.htm) Lee | |
Re: Try this pure [CSS Menu](http://www.corelangs.com/css/table/menu.html) Lee |
The End.