Click here to Skip to main content
Page 1 of 2
Page Size: 10 · 25 · 50


Author filtered by: Vinod Viswanath [x]
Tip/Trick 22 Jan 2013   license: CPOL
Are you annoyed of the "Restart now" message in Windows? Here is a solution for that.
Question 10 Nov 2012   license: CPOL
Hi Any one knows how to retrieve Passenger Name Record (PNR) from CRS/GDS ??? are they providing some API's?
Question 4 Nov 2012   license: CPOL
Hi, Is it possible for to create an android app which will work in background while phone is switched off?ThanksVinod.T.V
Forum Message 29 Sep 2012  
Hi Chris, I reloaded the site but still i am facing this issue, at home as well as in office, am able to click on the menu 1 out of 10 tries. Some thing is wrong with CSS or scripts. Thanks!!!
Forum Message 29 Sep 2012  
Chris, It is not yet fixed, please fix it its reproducible in IE9 too. Its really annoying.. Thanks!! Vinod.T.V
Forum Message 24 Sep 2012  
Hi Chris, Its now Fixed with Google Chrome but now IE8 has the same issue.. Thanks!!!
Forum Message 24 Sep 2012  
:( nope Still the same issue, with IE8 too..
Forum Message 23 Sep 2012  
I am using google chrome, after switching into new code project look,i am unable to select menus from home page. Step1: login Step2: ensure you are in home page Step2: click on user name near to
My vote of 5 by Vinod Viswanath
Answer 16 Sep 2012   license: CPOL
Hi Refer my Article, GridView column header merging in ASP.NET[^]
Adiminstrator Rights Problem by Vinod Viswanath
Answer 16 Sep 2012   license: CPOL
Hi,Through Code it is possibleSet the following registry key to 0Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\SystemValue: EnableLUA Set to: 0 to disable, 1 to enableThanks!!!
Answer 16 Sep 2012   license: CPOL
Refer my article.GridView column header merging in ASP.NET[^]
Answer 15 Sep 2012   license: CPOL
Hi,No need to rearrange the Primary key, ListBox has two properties( value and text), bind the primary key field(ID) to value property and rebind the grid after deleting the records.this.listBox1.DataSource = listToBind ;this.listBox1.DisplayMember = "Text";this.listBox1.ValueMember...
My vote of 5 by Vinod Viswanath
Forum Message 14 Sep 2012  
My Vote Of 5
My vote of 5 by Vinod Viswanath
Forum Message 14 Sep 2012  
Nice Work!!
Answer 14 Sep 2012   license: CPOL
Hello,If you need to select "Libish" from the list box, use the following code. vinod ...
C#
Answer 9 Sep 2012   license: CPOL
Hello,Move the code to click event it will work.private void listBox1_Click(object sender, EventArgs e){ if (listBox1.SelectedItems.Contains("Tea")) comboBox1.Visible = true;}Thanks!!!
Forum Message 8 Sep 2012  
I want to develop a android app which will make the screen most reflective it can be. Is it possible to do that??? :laugh: Thanks!! Vinod
Answer 8 Sep 2012   license: CPOL
Hi Use double slash(\\) instead of one.
Forum Message 8 Sep 2012  
Thanks Bill,i just had a concern in message has been de-valued by editing.As you said complaining will be helpful, Thank you once again for your valuable time...
Forum Message 8 Sep 2012  
"Improve question" and "Improve solution" should be enabled only for the owners not for other users. If they have any comments on the question or answers they can use the "Have a question or Comment"
Forum Message 8 Sep 2012  
Editing required whenever some mistakes need to be corrected, but intentionally changing the scope of the answer is not acceptable.
Answer 8 Sep 2012   license: CPOL
Hello,You can store objects to Session.System.web.UI.WenControls.Table myTable= new System.web.UI.WenControls.Table();//Add rows to the tableSession["ObjSession"]= MyTable;restore the session valuesSessionStored= (System.web.UI.WenControls.Table) Session["ObjSession"];...
Answer 8 Sep 2012   license: CPOL
Hi,You can easily fix this error by removing primary key from the table or create a unique user id for each employee record.If you can post empDB.AddNewEmployee function code we can easily figure out the root cause.Thanks!!!
Forum Message 8 Sep 2012  
Hello, I have observed several cases where users editing answers by simply changing variable names and aligning the code. i think users are doing this purposefully to increasing the
Answer 8 Sep 2012   license: CPOL
Hello, Use the following java script code.= 3)) || ((navigator.appName == 'Microsoft Internet...
Answer 7 Sep 2012   license: CPOL
Hi,See the solution, which will read excel data and bind to the datagridDataSet objDataSet = new DataSet();string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Server.MapPath(".") + "\\wk16.xls;" + "Extended Properties='Excel 8.0;'";OledbDataAdapter...
Answer 7 Sep 2012   license: CPOL
Hope this will help you.private void button1_Click(object sender, EventArgs e) { label1.Text = NoToWords(3500); } public static string NoToWords(int no) { if (no == 0) return "zero"; if (no
C#
Show label text by Vinod Viswanath
Answer 7 Sep 2012   license: CPOL
HI,Escape it with another ampersand (&&).private void button1_Click(object sender, EventArgs e) { label1.Text = "E&&O.E"; }Thanks!!!
Answer 7 Sep 2012   license: CPOL
Hello,The error is pretty clear.ClassID is in a foreign key relationship with another table, which does not contain the ID you are trying to insert. Insert the value in the dbo.CustomerPortal_ClassCode master table first, or check and correct the value you are inserting in ClassID in child...
Answer 7 Sep 2012   license: CPOL
hello, use the following code.protected void Page_Load(object sender, EventArgs e){ string message = "Hello! Vinod."; ClientScript.RegisterClientScriptBlock(this.GetType(), "alert", message);}Thanks!!!!
Re: good job. by Vinod Viswanath
Forum Message 6 Sep 2012  
Thanks Ravi..
Answer 6 Sep 2012   license: CPOL
Hi,First create a table which contain image_content column of datatype image and add the following code in upload button click event.if (FileUpload1.PostedFile != null&& FileUpload1.PostedFile.FileName != ""){byte[] myimage = new...
help me. web in the ASP.Net by Vinod Viswanath
Answer 6 Sep 2012   license: CPOL
Refer this following link.http://nareshkamuni.blogspot.in/2012/02/insert-image-into-sqlserver-database-by.html[^]Thanks!!
gridview with asp.net by Vinod Viswanath
Answer 6 Sep 2012   license: CPOL
There are so-many efficient ways to query n records from the data base.SELECT TOP numberofrecordsyouwanttotake [yourColumns...]FROM tableNameWHERE yourIDColumn NOT IN ( SELECT TOP numberofrecordsyouwanttoskip yourIDColumn FROM tableName ORDER BY...
Answer 5 Sep 2012   license: CPOL
Hello, Adding Start up path at the begining of the selected file name will solve your problem.private void button2_Click(object sender, EventArgs e){ var selectedFile=listBox1.SelectedItem; System.Diagnostics.Process.Start(startupPath +...
C#
Answer 5 Sep 2012   license: CPOL
Hello,Use the following statement to convert to "dd/MM/yyyy" format.DateTime DT = DateTime.ParseExact("20/03/2011", "dd/MM/yyyy", System.Globalization.CultureInfo.CurrentUICulture.DateTimeFormat);Or Better to Update all the records using single sql update query.Thanks!!
Article 4 Sep 2012   license: CPOL
This article explains how we can merge column header and change cell background color for GridView control in Asp.net
Answer 3 Sep 2012   license: CPOL
Hi,Call this.richTextBox1.Refresh() inside the method.Thanks!!
checking date validation by Vinod Viswanath
Answer 2 Sep 2012   license: CPOL
Hello,Hope this will help you..In the code...
Answer 2 Sep 2012   license: CPOL
Hello, Please see the below master page code, Hope this will help you
Answer 1 Sep 2012   license: CPOL
Hello,plea...
Answer 1 Sep 2012   license: CPOL
Hello,I couldn't see any data base related things in your code snippet. I hope you are trying to upload image to the server, Then you should ensure D drive PRODIMAGES folder has write permission...Thanks!!!
My vote of 5 by Vinod Viswanath
Forum Message 1 Sep 2012  
Many Thanks
Answer 1 Sep 2012   license: CPOL
Hi,Even if I do not understand the purpose of using hidden value, you can use hidden Fields and Query Strings solve the purpose.in the target page use the following code to access this field value.String strValue...
What is Page method in asp.Net? by Vinod Viswanath
Answer 1 Sep 2012   license: CPOL
Page Methods is a new mechanism in ASP.NET applications to expose web methods to the client script.
Forum Message 29 Aug 2012  
This will occur whenever we view My Article Page. The right side of the article tab contents crosses the right border. Am using Google Chrome.
Answer 29 Aug 2012   license: CPOL
Hi,If you are using Master Pages you have to iterate through all the containers to reach the control. Hope this will help you.protected void Button1_Click(object sender, EventArgs e) { // if(!IsPostBack) ClearInputs(Page.Controls); } void...
Answer 29 Aug 2012   license: CPOL
Hello,Hope Iframe can do the trickThanks!!!

Page 1 of 2
1 2


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid