Search results for query: *

  1. X

    Question MDI Child Display In Tab Pages

    hello guys, i have an application written in vb .net (2008) which consists of mdi form and several child forms. instead of arranging child forms in cascade,tile or horizontal, i would like to display them in tabpages. so if user clicks menu to access child forms, new tabpage is created and it...
  2. X

    Question Printer Setting

    I'm using VB .NET on Windows 7 to develop Sales application. I've set printer preferences at Control Panel such as paper source and paper size (in this case paper source : Tractor and paper size : Invoice (user defined)) I've also set it in my Crystal Report at VB .NET but why when i run my...
  3. X

    Question Difference between Module and Class

    Okay, i got it now. Thanks for the answer :orange:
  4. X

    Question Difference between Module and Class

    So if i have several subroutines and functions, then i want to use it all in another forms, which is better, write it in class or module ?
  5. X

    Question Difference between Module and Class

    What's the difference between Module and Class ? It's mentioned that Module is a file for storing groups of functions, can we store subroutines too ? Why if we want to access a function in a class, we should use keyword Public Shared Function while in a module we just use keyword Public Function ?
  6. X

    Question Difference between Public Shared Function / Sub and Public Function / Sub

    Hello all, please help me answer this question. What's the difference between Public Shared Function / Sub and Public Function / Sub ? As i know keyword Public means the function / sub can be used by all forms in same project, right ?
  7. X

    How to show checkbox in DataGridView

    thanks so much,it really helps,i've got it :adoration:
  8. X

    How to show checkbox in DataGridView

    the check box can be checked if Enable Editing mode is enabled, right ? but it makes the other columns can also be edited, how can i make the only column that can be edited is checkbox column ? i've tried many ways and have no clue. Thanks
  9. X

    How to show checkbox in DataGridView

    o i see,ok,i'll try it Thank you very much for your help
  10. X

    How to show checkbox in DataGridView

    yes, thanks, i've add new first column contains check box for every rows, now if i would like the rows which have been checked to be updated, how can i do that ?
  11. X

    How to show checkbox in DataGridView

    sorry,i don't understand it quite well, do you mean just add checkbox control inside the datagridview? it is like this, i would like to have checkbox on every rows as the first column and when user gives check to the check box then the row's background color turns into different color
  12. X

    How to show checkbox in DataGridView

    Hello all, anybody knows how to show checkbox in data grid view so if we click it, the row will be selected. Help please. Thank you
Back
Top