Hi All, I have a TextBox txtBx, I set text to it as- txtBx.Text = "brutas\n\nhong\t\nsaw"; now on the application, raw characters(square boxes) are shown in stead of \n, \r etc. I want the display in the textbox as brutas hong saw can any one help me?
2489128
Posts
-
special characters -
Validation on Texboxes dialog in Setup and deployment projectHi, I'm ceating a Setup and deployment project using C# in which i've to collect user id and password. for this I'm Texboxes dialog. now i want to apply validation on Texboxes dialog so that user can not move further without providing user id and password. can one help me?
-
GlobalAppointmentIDi want to read all the appointments of a outlook 2007 and bind it to DataGridView. in my application i've add refernce of following library-
Microsoft.Office.Interop.Outlook, Version=12.0.0.0
I'm reading appointments as-
Microsoft.Office.Interop.Outlook.Application app = new Microsoft.Office.Interop.Outlook.ApplicationClass();
Microsoft.Office.Interop.Outlook.NameSpace NS = app.GetNamespace("MAPI");
Microsoft.Office.Interop.Outlook.MAPIFolder objFolder = NS.GetDefaultFolder(Microsoft.Office.Interop.Outlook.OlDefaultFolders.olFolderCalendar);foreach (Microsoft.Office.Interop.Outlook._AppointmentItem Item in objFolder.Items)
{
string Id = Item.Subject; //etc.............
}but I'm unable to get
Item.GlobalAppointmentID
.I've search and find there isGlobalAppointmentID
propery but I'm unable to get it. plz help me. -
location drop down list of the outlook 2007 appointmentsHi. Is it possible to add some custom location items in the location drop own list of the outlook 2007 appointments through AddIn in C#?
-
hiding the blinking cursorI want to hide the cursor or make the blinking cursor stop blinking in the asp.net textbox. Is that possible??
-
Quering Nested Data in a tableHi. I've a table Project(ProjectId, ParentProjectId, ProjectName) the sample data are -------------------------- 1,0, X 2,1,Y 3,2,Z 4,3,W now for a given project id i want to get projectid, projectname for a given projectid. e.g. i want 1,X for projectid = 4 i want to SQL query for this. plz help me.
-
Logged in and logged out.could u provide code for it?
-
Logged in and logged out.hi. i have put this code in window.onload event: window.event.clientX < 0 && window.event.clientY <0 and on clicking browser's close button we always find window.event.clientY < 0 and window.event.clientX > 0. so i'm unable to track browser's close event.
-
Logged in and logged out.thanks. on which event will i have to call method DeleteUserLog?
-
Logged in and logged out.How can I Handle the Browser Close using Java script? plz help me.
-
Logged in and logged out.In my aplication I've to trace logged in and logged out for an user. I've created a table that contains information about logged in and logged out time of an user. whenever an user logged in i simply add a record in this table and when user logged out i simply update this table. now suppose that when a user close its browser by clicking on cross icon of browser or after a session time out then in this case user logically time out. then in this case how i update table for user logged out?
-
Progress BarHi I'm using modal popup extender control & update panel in my application. some pages in this application have more than one update panels. now i want to disabled all the buttons in a particular page during a add/delete/update operation with displaying progress bar so that no one click on any button on the page during operation. how can i achieve this?
-
Update panelHi. I've put a GridView inside a UpdatePanel. GridView is enabled for paging. now i want to display a message from the client side when ever GridView is rebinded through paging i.e. particular portion is updated.
-
daylight savingHi. I'm storing datetime data in DB in UTC format. now i want to display correct date with daylight saving. can any one help me in this regards?
-
binding a select element at the client side and accessing it at the server side.using a XMLHttpRequest object.
-
binding a select element at the client side and accessing it at the server side.Hi. I've two drop down list in asp.net form. first one is a standard server side drop down list control and binded from the server side. second one is html select element and binded through javascript at the client side by AJAX depending upon the value selected from the first drop down list. after binding second drop down list when we post back the page, i'm unable to access all the element of the second drop down list at the server side even second is has attribute runat server. where is problem???
-
drag and drophi. i'm developing an asp.net application. here i want to drag and drop a div on html table's cell. now i want to get id of that cell on which div was dropped. please help me.
-
AJAX Control Toolkit's Calendar ExtendarHi. I want to disable navigation button or some date ranges form AJAX Control Toolkit's Calendar Extendar. Can any one help me?
-
disabling BACK & FORWARD buttons of the browsers.How to disabled BACK & FORWARD buttons of the browsers using javascript?
-
preserving state of the selected checkboxesdo you mean i've to take an extra column in data source?