Search results for query: *

  • Users: prav_roy
  • Content: Threads
  • Order by date
  1. P

    Question Checkedlistbox Value

    Hi, How to get the CheckedListBox Checked items value at a stretch in windows aplication. Thanks in advance.
  2. P

    Question Override Controls Property

    Hi, I have used NumericUpdown Control in my project, control appears in all most all forms, you may be aware of the fact that minimu and maximum value of numericupdown is 0 and 100 resp by default. Now let me come to the problem i want to override this propert of Numericupdown to set min and max...
  3. P

    Not been able to Connect Database for Membership and Roles

    Hi, I am using SQL Server 2005 Developer Edition and VS 2005 , but when i try to connect to my database for Membership and Roles its throws me an error saying that Could not establish a connection to the database. If you have not yet created the SQL Server database, exit the Web Site...
  4. P

    Selected items in listbox/checked listbox

    Hi, This could be silly question to u all, i have a checked list box which i have binded to Dataset like ListBox.DataSource = ds.Tables(0) ListBox.ValueMember = ds.Tables(0).Columns(0).ToString ListBox.DisplayMember =...
  5. P

    Close Login Form while loading MDI Form

    Hi, I am facing small problem in vb.net 2005 window application... i have a login form which is my startup form too, when i submit proper credentials i want to open my MDI parent form and in the mean time i want my Login form to close.. i tried different methods but nothing seems to be...
  6. P

    javaScript select/unselect items of CheckBoxList

    hi all, i have some problem in client side scripting.. i have on checkbox..depending on the status of this checkbox i want to select/unselect items of CheckBoxList.. My CheckBoxList is Binded to a SQLDataReader. My JavaScript looks something like this.. function SelectChannelCheck(){ for(i =...
  7. P

    Query in Inheritence

    hi All, i have stuck up somewhere, i need your help, i am developping an application in that i have one base class of type mustinherit , i am definning all the methods of mustinherit class in derired class which works obsolutely fine, but my problem is that, i want to pass parameter to the...
  8. P

    Mustinherit Problem

    hi, I have a base class which is of mustinherit type.. which has couple of constructors... and i am inhariting that class as.. My Base Class looks something like this Public MustInherit Class BaseServices Private arrErrors As ArrayList Protected objDb As DataAccess Protected base_DA As...
  9. P

    Open New Window

    hi, i have a problem, i want to open a new window on fulfilling certain criteria my code loooks something like If StrConv(txtPassword.Text, VbStrConv.UpperCase) = "ZTL" Then Dim emp_code As String = Trim(txtEmp_Code.Text) HERE I WNAT OPEN A NEW BROWSER WINDOW...
  10. P

    Datagrid Query

    hi, i am binding my datagrid to datatable, which have four columns, which works perfectly, my query is that in my first column im displaying different time slot, and in remaining three columns i have different program names, what i want to do is that depending on the column(1) entries i want to...
  11. P

    Datagridd's Bound Event

    hi, i am binding my datagrid to datatable..and in my datagrid there are four columns.. what i want to do is that i want to check each value of column(1) and if it is not null i want to display that columns value in red i am using the following code... Private Sub...
  12. P

    Combobox Binding

    hi, in my application i am binding my combobox to datatable, it works fine but problem is that i want to display "select Name" at index=0 in asp.net i could use something like cmbbx.items.insert(0,new listitems("Select Name",0)) is there anything like this in windows application.. Thank You
  13. P

    passing control to function

    hi, i have a class in that i have a function which takes two args, one is string other one is listbox, i am using to fill my listbox, i am calling this function from different form.. Public Sub Reader(ByVal str As String, ByVal lst As ListBox) Dim cmd As New SqlCommand() Dim dr As New...
  14. P

    Listbox Problem

    hi, i want to bind my list box with datareader my code look like this lst.DataSource = Dreader lst.DisplayMember = "itemname" lst.ValueMember = "itemno" i get error saying Complex databinding accepts as datasource either as IList or IListsource but if i use dataset i dont get any error
  15. P

    Clear textboxes

    hi, i want to clear all the textboxes placed in a form using fallowing code, all text boxes are placed on PANEL control.. i am using following code.. it is not working can anybody tel me where i am going wrong Private Sub btnDelete_Click(ByVal sender As System.Object, ByVal e As...
  16. P

    Double Click in Datagrid

    hi, i have one windows application, in which i have a datagrid, what i want to do is that when i click on any row once that row should be highlighted and if i douuble click on it that particular row details should be opened in new form (which i can carry out using datagrid's double click event...
  17. P

    Close Browser

    hi, i have an application.. in which user can make entries.. when they press SAVE button entries should be saved in the database.. and browser should close.. i used following line of code after saving the entries Response.Write("<script>window.close();</script>") but problem with this is...
  18. P

    Validation Control

    hi, i want to validate the text entered into the textbox is integer or not..if not integer then i want to display an error.. how can i carry out this using custom validation.. or can i make use of any other validation controls for this pupose.. thank you
  19. P

    Help needed for Validation

    hi, i want to validate the text entered into the textbox is integer or not..if not integer then i want to display an error.. how can i carry out this using custom validation.. or can i make use of any other validation controls for this pupose.. thank you
  20. P

    Data Table

    hi, i have a datagrid and im using a datatable as a datasource for datagrid.. since there are some repeated values in the data source(SQL).. when i bind the datagrid i get repeated rows.. my question.. is there any way out to filter only those rows from datatable which are not repeated...
Back
Top