Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by chmohan

  1. chmohan

    Drop down date picker programtically

    this may give u an idea http://www.functionx.com/vcsharp/controls/datepicker.htm
  2. chmohan

    Data Grid Question

    or try seeing the property in your columns in the datagrid example http://forums.aspfree.com/t25385/s.html
  3. chmohan

    Data Grid Question

    in your sql select them with as in your proc like lets say instead of customername which is the field in the table and you want to show Name in your column header change sql to select customername AS Name etc ...
  4. chmohan

    Drop down date picker programtically

    doesnt it have a style called dropdown and cant u set it on the click?
  5. chmohan

    Refresh a Datagrid

    If you are using dataset in the ui then its easy isnt it? Why does it clear in teh first place when he adds it ? Shouldnt it still be there on UI?
  6. chmohan

    Specify Index for Combo Box Items

    doesnt the combobox have an insertat method? then u can inseart at the required index you should be able to get the text from the combobox.items[index].value(or text depends on how you added it) the text :)
  7. chmohan

    Extend TreeView Class

    cant you inherit from it and then add your extesnions
  8. chmohan

    Duplicates in a Listbox

    you cold remove the dups when you are loading the listbox cant you? either when u do sql query to load or when you load on the ui
  9. chmohan

    Duplicates in a Listbox

    hmm you may have to do listbox1.refresh after each item being removed or something as the count will have changed wont it when you remove an item?
  10. chmohan

    Duplicates in a Listbox

    an idea would be of storing the index of the dupes in an array and then removing them all with removeat in another loop
  11. chmohan

    get Value of textbox / input-field

    is the id correct? i mean is is spelt correctly and all? you could try Elements["nameofyourelement"].value right?
  12. chmohan

    DateTimePicker and MaxDate property

    Does it have keypress event or keydown? IN case it has when you type 2 detect it using that event and set the value to maxdate
  13. chmohan

    COM Exception

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cptools/html/cpgrfassemblyregistrationtoolregasmexe.asp
  14. chmohan

    Custom DataGridColumn Cursor

    shouldnt it be q.Current = Cursors.Hand() Cursor.Hide() q.Show()
  15. chmohan

    Custom DataGridColumn Cursor

    why dont you instantiate a new cursor and set it to cursor.hand? Or use the cursor library that i showe you previously now that we have the show and hide working:)

Part and Inventory Search

Back
Top