Search results for query: *

  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 again Public Class NumericUpDowns Inherits NumericUpDown Public Sub New() InitializeComponent() Me.Minimum = 0 Me.Maximum = 1000 End Sub End Class does this correct syntex Regards Praveen
  3. 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...
  4. 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...
  5. P

    Help deleting some listbox items

    Can you help me.. Hi, I am facing a problem, and searching a sollution for that and i found this mail, here you have provided the code to remove selected items from a list box, but my problem i have two list box and i want to add selected item listbox1 to listbox2 and same time i want to...
  6. P

    Selected items in listbox/checked listbox

    could u please give me an example of tht..
  7. 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 =...
  8. P

    Close Login Form while loading MDI Form

    Thank U John hi, I solved it.. thanks for your timely respose... this forum is known for its quick response.. thaats why i always depend on this forum for my queries.. thanks and regards Praveen
  9. P

    Close Login Form while loading MDI Form

    could you plz give me an example of that...
  10. 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...
  11. P

    moving data in listbox

    Help hi, Could you please give the code..coz even i am facing the same problem.. and cant find the way out.. infact this is what i am doing ******************************** Dim dt As DataTable = ds.Tables(0) Dim row As DataRow For Each row In dt.Rows lstContent.Items.Add(row(0)) Next...
  12. P

    displaying date from the database into a date time picker control

    Date Time Picker Could u please tel me how u managed to solve it..
  13. 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 =...
  14. 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...
  15. 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...
  16. P

    Database Connection String

    define your connection string in web.config file then create a class to access that string.. i think this will help a lot.. even when you have to change your connection. you have change it only at one place
  17. 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...
  18. 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...
  19. P

    Datagridd's Bound Event

    hi Paszt, Thank you for your reply.. i am bit confused as where to add this code..should i add this line before or after If e.Item.ItemType = ListItemType.AlternatingItem Or e.Item.ItemType = ListItemType.Item Then thank you
  20. 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...
Back
Top