Getting The Checklist Box?
May 25, 2011
i have got a checklist box and i have bind it with value like menstioned below
Dim strquery As String = "SELECT Pk_ProcessID,Fk_ClientID,ProcessName,mc.ClientName FROM M_Process mp JOIN M_Clients mc ON mp.Fk_ClientID = mc.Pk_ClientID ORDER BY mp.Pk_ProcessID"
cnn = New SqlClient.SqlConnection(strConnect)
[code]....
View 1 Replies
ADVERTISEMENT
Aug 25, 2009
I have data in an arraylist and i want to add data to checklist box on runtime and i also want to display a textbox besides it so that i get the comments
example :
checklistbox "text" textbox
checklistbox "text" textbox
checklistbox "text" textbox
checklistbox "text" textbox
checklistbox "text" textbox
View 3 Replies
Aug 8, 2009
i am currently doing a checkboxlist that is retrieved from database. is there any way where i can sort the checklist items in a way like those checked itmes will be displayed at the back then those that are not checked will be moved to the top.
View 4 Replies
Oct 24, 2009
For the assignment that I'm doing, there's certain skills I must demonstrate in my assignment. There are some standard ones, and some optional ones. The more optional ones I have, the better chance I have at achieving an A.Problem is, some of the things on the list are a bit wierd, and after Googling them, I still have no idea what they are. I will list them, if you could perhaps tell me what they are and how they work anInput Mask (Actually, I know what this is - when people input information, it's a method that inserts in the information in the correct frormat (eg. dd/mm/yyyy) but how do you do use this in Visual Basic?Use of procedures or modules
Optional
Validation rule andappropriate validation text message
Validating data input entry (eg data type, appropriate value, required)
[code].....
View 19 Replies
Mar 19, 2009
I am developing a .Net application that populates a checklist by querying the directories inside a "base" directory (this part already accomplished). The purpose is to show these directories and allow the user to "check off" the directories they want to delete, and then click a button to delete just those directories (this is the part I'm stuck at).My checklist populates, but how would I go about deleting just the directories that get checked?There is one more thing. Each of these directories might have a log file (of the same name) inside the "base" directory; this corresponding log file should also be removed.
View 2 Replies
Oct 19, 2009
how would i tell if user checked a box in the CheckList Box? Im going to have alot so i need to keep it neet and tidy so it looks clean.
View 3 Replies
Aug 30, 2010
I'm having trouble on how to code this. First I need to assign a value for every item in the list (1 for the first item, 2 for the 2nd and so on). Does this control have a separate field for the value aside from text?
Second, I need to insert this into my database(MSSQL 2008) in this format:
insert into table values(ID,selectedvaluegoeshere)
View 1 Replies
Mar 10, 2011
My checklist is doing a autopostback on selectedIndexChange event. I need to know how to get the item that was just selected that invoked the postback. I tried using selectedvalue,selecteditem, selectedindex, but they all give me the lowest item in thecollection and not neccessarily the item just checked
View 2 Replies
Feb 2, 2011
i know how to add items to a list box box if all controls are on one form but for space reasons i'm adding items/urls into a text box on form2 then when i click OK the items are supposed to be saved/stored in the checked list box on my main form.
View 5 Replies
Apr 21, 2009
I am trying to build an application using vb.net that will serve as a very large checklist of sorts. and i'm not exactly sure of the best way to do this. I considered using a database but i would need it to be self contained without having to rely on a server or internet connection
View 4 Replies
Sep 14, 2009
I am planning a three form checklist/status report for a FEED template. Each form will address a different FEL. FEL1 is really a simple checklist and is easily dealt with using the Windows Form. My question is there a better structure to handle the more complex FEL2 and FEL3, like the web page? FEL2 will have approximately 20 questions and FEL3 will have about 50. I am still undecided whether to use radio buttons (radio button list, which I do not understand yet) or text boxes that will take a value between 0 and 10. I may weight the questions to give an overall percent complete that I can show on the progress bar or some such. If there is a better structure than the Windows form, can it and the Windows Form be linked? If not, will abandon efforts to complete current FEL1. Conceptually, you cannot start FEL2 until you have completed FEL1, and FEL3 until FEL2 is complete.
Public Class FrmFEL1
Dim PctCmpt As New ProgressBar()
Private Sub CboxChrtr_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CboxChrtr.CheckedChanged
[CODE]...
This is what I have so far. It is no working at all. No values appear when boxes checked. Would like a value for each checkbox that can be added in in order to get a total. That total to be added to the percent complete (TxFEL1).
View 13 Replies
Apr 16, 2011
I had actually getting LINQ to work but I am past that now but I was wandering if anyone could help me what I basically have is a DropDownChecklist user control I made and the contents of the list are filled by LINQ getting a list of company names see below:
'Population for company filter box
Public Function GetCompNames()
Using DC As New DataClassDataContext
Dim comp = (From C In DC.Companies _
[code]....
Would you suggest using a public array or something to store the companyID's when populating the first list box? This just came to me at the end of writing this post. Will try this but not sure if its the right thing to do.
View 1 Replies