Click here to Skip to main content
15,895,462 members
Everything / Check

Check

check

Great Reads

by ASP.NET Community
The CheckBox server control accepts Boolean (true or false) input. When selected, its Checked property is true. Typically a check box is processed as
by ASP.NET Community
StateThe State pattern allows an object to change it behaviour when its internal state changes. The pattern is a type of behavioral design
by ASP.NET Community
How to check if a specific control caused postback?Let's say you have a button ( btnAdd ) among other controls...To check if it has just caused
by ASP.NET Community
IntroductionIn modern web development, we need to check the browser compatibility for our web pages. This can include changing the css classes,

Latest Articles

by ASP.NET Community
Introduction:         The companies which are offering variety of services to the customers, they need to get the response from the customers in
by ASP.NET Community
Introduction:         The companies which are offering variety of services to the customers, they need to get the response from the customers in
by ASP.NET Community
In this article I will show you how to read meta tags programatically using C# and Asp.Net. How this article is different from other articles
by ASP.NET Community
While developing any web site, one should keep some points in mind.1) Set debug=false under compilation as follows:

All Articles

Sort by Score

Check 

5 Apr 2016 by Jochen Arndt
Your loop iterates up to (and including) DataGridView3.Rows.Count. Change it to one less:For i As Integer = 0 To DataGridView3.Rows.Count - 1
17 Jul 2014 by danigeraleddin
Hi all, Hi, I'm implementing the treeview control and I need to know if I can just add a tooltip to treenode checkbox, also need know if you can change the position of the checkbox to the right of the legend of the node.I appreciate any help.Thanks in avanced,Daniel.
2 Jul 2016 by OriginalGriff
We can't help you with this: the code is proprietary to YouTube and so only they can legally give you any information.You could try contacting them - YouTube Contact Us[^] may help, they may be willign to give you info. Since it's a project, they might - but I wouldn't bank on it.
11 Oct 2013 by ASP.NET Community
The CheckBox server control accepts Boolean (true or false) input. When selected, its Checked property is true. Typically a check box is processed as
11 Oct 2013 by ASP.NET Community
StateThe State pattern allows an object to change it behaviour when its internal state changes. The pattern is a type of behavioral design
11 Oct 2013 by ASP.NET Community
How to check if a specific control caused postback?Let's say you have a button ( btnAdd ) among other controls...To check if it has just caused
11 Oct 2013 by ASP.NET Community
IntroductionIn modern web development, we need to check the browser compatibility for our web pages. This can include changing the css classes,
11 Oct 2013 by ASP.NET Community
Image Rotator In Ajax Step1:  In this Example, there arean Image (img1) and a TextBox(TextBox1).
13 Oct 2013 by ASP.NET Community
Introduction:         The companies which are offering variety of services to the customers, they need to get the response from the customers in
11 Oct 2013 by ASP.NET Community
While developing any web site, one should keep some points in mind.1) Set debug=false under compilation as follows:
28 Jul 2012 by ASP.NET Community
This is the very basic need when you do bulk operations like email sending, export to excel, delete record etc. from a list. A CheckBox in header on
15 Nov 2013 by tuyenbuiqn
Hello everyone!I'm a new asp.net coder. When I develop my project, I have a trouble, that is how to validate Image size(width - height, not length) before uploading. My valid size is 640px - 640px.I use Telerik RadAsyncUpload to do this function. I think Telerik is very good to use, it...
25 Nov 2014 by RobertM
HiHere is an MFC noob question.I have a CTreeCtrl with TVS_CHECKBOXES set. In OnInitDialog I populate the tree with a set of rules grouped into packages and groups, and I wish to preset a selection. The tree is populated ok but with no items checked. I can check items in the GUI and read...
25 Nov 2014 by KarstenK
it is some tricky. Microsoft writes in its documenation: "If you want to use this style, you must set the TVS_CHECKBOXES style with SetWindowLong after you create the treeview control, and before you populate the tree. Otherwise, the checkboxes might appear unchecked, depending on timing...
25 Nov 2014 by RobertM
With help of the input from KarstenK, some web searching gave me this elegant(?) solution of this stupid(!) problem:Before populating the tree control in the PopulateTree function I do the following calls: // First remove the checkbox style mRulesTree.ModifyStyle( TVS_CHECKBOXES, 0...
15 Oct 2015 by CBO1987
Hello,I am trying to check a checkbox on a webpage that has been loaded through the webbrowser control.This is the code from the webpage
15 Oct 2015 by DamithSL
you need WebBrowser.DocumentCompleted Event[^]sample code:webBrowser1.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(DoSomething);private void DoSomething(object sender, WebBrowserDocumentCompletedEventArgs e){ // find checkbox and invoke here...}
16 Oct 2015 by CBO1987
Hey,Thank you for the reply. Sorry, I forgot to mention I do have that code. I have code in the same block working with a text box on the page but for some reason it won't respond to the check box. I think it may have something to do with the html in the code "onclick" or a confusion with...
4 Dec 2015 by TaRoshka
HelloI have a magento site. sometimes, import isnt completed, so in these cases products prices,images ect are not updated. Manually i have to check everyday, login into server, and go to the directory where import files are located, and if i dont find those files than start exporting again....
6 Dec 2015 by Ray Radin
If I understand correctly, you want to automate a task that is still manual without messing with the system.Which is in your case, checking the existence of files in a certain path.That should be pretty easy.Just create a script that checks the path and mails you if there are...
6 Dec 2015 by F-ES Sitecore
https://msdn.microsoft.com/en-us/library/system.io.file.exists(v=vs.110).aspx[^]
25 Dec 2015 by OriginalGriff
Get the indexes into an array.Sort the array.If the values in the array are all a single increment from the previous value, the strings are all next to each other.There is an Array.Sort method in .NET, and a simple for or foreach loop will check the results.
18 Mar 2016 by Nisha Medhat
How to calculate Performance statistics of c# project?What I have tried:I have run memory performance project but giving error like Regedit error
18 Mar 2016 by VR Karthikeyan
Hi, use Diagnostic tools in Visual studio while debug. refer the below link,11 Code Profiling and Performance Tools for Visual Studio -- Visual Studio Magazine[^]
5 Apr 2016 by ionMEMBER
Public Class Form16 Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged Dim check As Boolean For i As Integer = 0 To DataGridView3.Rows.Count check =...
1 Apr 2020 by Shrikant Dandile
I am new to UWP technology as well as new in MVVM too. I have multiple checkboxes on my page. I want to save/update data if my checkbox is checked or unchecked. I don't know how to use Command, Checked Event or Unchecked Event of checkbox in UWP...
3 Nov 2020 by xhon
Hi, I'm on Sql Server and I have two values of type DATE inside my table, Date1 and DAte2. Date1 is the current date by default (I added a Default Constraint to it). I want Date2 to be incremented by 5 days (Date1 + 5 days) by default, and to...
3 Nov 2020 by OriginalGriff
Look at the DATEADD function: SQL Server DATEADD() Function[^]
3 Nov 2020 by Richard Deeming
A CHECK constraint will reject any data which doesn't match the constraint. If you try to insert / update data which is not exactly five days apart, the data will be rejected. A DEFAULT constraint cannot access data, whether from the same row,...
27 Jan 2016 by OriginalGriff
Probably, it's not the right name.On my system, it's "VLC media player (32 bit)", but that doesn't find it either.What I did was use the debugger:Process[] pname = Process.GetProcesses();And a quick look through the list gave me: Process[] pname =...
14 Jul 2014 by Christian Amado
Answering your question...1. Yes, you can add a tooltip inside treenode (only to your checkbox).2. Yes, you can change the position of the checkbox legend.
17 Jul 2014 by Mahesh_Bhosale
hi,check the following link:http://stackoverflow.com/questions/15078476/disabling-asp-net-treeview-checkboxes[^]
11 Oct 2013 by ASP.NET Community
In this article I will show you how to read meta tags programatically using C# and Asp.Net. How this article is different from other articles
17 Jul 2014 by danigeraleddin
Hi all, I am using the treeview control and I need that for certain conditions the checkbox is not selectable or disable it, but is shown.is there any way to have control over treenode checkbox because I also need to change their position and show tooltips.?I appreciate your help, Thanks in...
5 Jan 2014 by ASP.NET Community
Introduction:         The companies which are offering variety of services to the customers, they need to get the response from the customers in
6 Jun 2015 by _Q12_
I have checkedListBox1 control. I want to write into a string "checked3487", ONLY the checked checkboxes text. (the text near the checkbox).When I press one checkbox, "The check state is not updated until after the ItemCheck event occurs", but the "if (e.NewValue == CheckState.Checked)" is...
15 Jul 2014 by danigeraleddin
Thanks for the post, Christian.my question is how I do, I tried the following trick:treenodeMovil.Text = "" + fila1["patente"].ToString() + "" +"
26 Apr 2015 by mostafa_sadri
Hi, I want to create a portal for my print company with asp.net mvc5 includes: - Register users and customers - receive customer orders(files & type of order & quantity - show invoice of orders for customers - report orders for users.At first i want create part for register...
2 Jul 2016 by Alviss_H
I'm starting on a project to research about the algorithm of Youtube to check the license for videos.About the demo, I will use C# to create the tool. This is a small tool, with MSsql to store the DB(videos) and 'user' who can upload video. The tool will be checked it and reject it if this...
6 Jun 2015 by _Q12_
Now is working!it was a string manipulation after all. Damn it.I got inspired and I find the solution.here it is: if (e.NewValue == CheckState.Unchecked) { if (checkedList.Contains(checkedListBox1.Items[e.Index].ToString())) { ...
25 Dec 2015 by Member 11380736
c#: How do I check if index's of input string[] are next to each other ?string[] a = {"one","two","three","four","five","six","seven","eight"};string[] input = {"three", "one", "four", "two"};if(input index's are next to each other){MessageBox.Show("OK");}
27 Jan 2016 by Krishna Chaitanya Bezawada
Hi,I want to develop a c# program to check whether a process in my system is running or not and it should display a message box whether the process is running or not running.I have tried the below code, but unfortunately it is showing as process not running always even when the process...