Jump to content
Xtreme .Net Talk

Moishe

Members
  • Posts

    24
  • Joined

  • Last visited

Moishe's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thank you very much I got it!
  2. Thanks for your reply. I converted to vb.net and it didn't work not only BETWEEN but als AND keywords and how can I also selec customer name in the same rowfilter Thanks for your help
  3. Hi All I have a textBoxName, startDate and endDate What string should I put in the rowfilter so after it would give me the name rows for all days like between these days in my dataview. this is how it is in the select comment select textBoxName from table where [date] between startDate and endDate Thanks for your help
  4. Hi All I have a column (Time) in the tablestyle collection I want to format it to "00:00" when user enter 1100 it woud format it to 11:00 and also validate if it is a valid input? I tried doing it in the designer propeties for the format something like format: "00:00" but it didn't work. Thanks for your help.
  5. That didn't work. I want it to be visible but not accessable right now I have it readonly but I still can navigate or click there.
  6. Hi All, Does anyone know how to block access to a column in the datagrid? Thanks
  7. Hi All I have a datagrid and a list box in the other form when I insert records inside datagrid cell it inserts it and selects the whole row and prevents arrow buttons from navigating through the grid. Does any one know how to fix it? P.S How do I update dataset while typing something in the cell without going into other cells or rows?
  8. Thank you very much
  9. Thank you very much
  10. Data Access from 2 Forms Hi All, I have a datagrid in oneform and a list box in the other form Does anyone know how can I put an item from the list box into the selected cell in the datagrid in the other form upon pressing enter? I have a short cut which brings out that listbox in a particular cell in the datagrid. Thanks
  11. Hi, Does anyone know how do I novigate through DateTimePicker in the way that when I press leftbutton it would go to the previous day and the same thing for the next day. I know how to do it in the monthcalendar but I need to use datetimepicker. Thanks
  12. The short key works when I'm on the form but it should only work when the cell in the datagrid is selected. Thanks for your help
  13. Hi, I want to make my datagrid column cells to accept short cut keys defined by myself. I created a textbox control and I want to press F5 when the cell is selected my groupbox will be visible on the form. Private Sub dbrDay_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown 'If dbrDay.CurrentCell.ColumnNumber = 3 Then And e.KeyCode = Keys.F5 Then e.Handled = True grpVendor.Visible = True Else grpVendor.Visible = False e.Handled = False End If End Sub This doesn't work! Thanks for your help
  14. KeyCode is not a member of a system.windows.forms.keypresseventargs
×
×
  • Create New...