CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: bjswift

Page 1 of 9 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    789

    datagridview and sorting

    Adding a row on a datagridview which is sorted on a certain column, resorts the new column into the list. How can I get that to stay at the bottom of the list?
  2. Replies
    1
    Views
    762

    related data tables and combox controls

    I have a screen where there are three comboboxes, ProjectNumber, Type, ListId. When the listID combobox is selected with a valid value, it will load the grid on the screen.

    The user can use the...
  3. Replies
    3
    Views
    913

    Re: Combo Boxes

    instead of using selectedchangecommited, I would use selectedIndexChanged event, However, try using the combobox.text property, instead of selectedText
  4. Re: Hierarchial datagridview, is it even possible.. if so how?

    Ok, so what is the best solution? I need it to be a grid so that users can check rows they want to process..
  5. Hierarchial datagridview, is it even possible.. if so how?

    Okay, I need to show header/detail data in a hierarchial format where the user can choose which header rows they want to 'drill down' into (windows forms application). I did this a while back using...
  6. Replies
    1
    Views
    643

    Editor help (squigly lines)

    Okay, I am a vb.net programmer who has started a project in C#. I am getting the hang of syntax, and the differences here and there, but can't seem to figure out (if it even is a feature) to get the...
  7. Replies
    6
    Views
    1,753

    Re: How to deal with a generation gap.

    All solutions related to this post are backed by SQL Server 2000 or 2005. I am working with either Access ADP files connecting to SQL Server, or .net windows forms solutions using SQL Server...
  8. Replies
    6
    Views
    1,753

    Re: How to deal with a generation gap.

    Well, if the team I work with wants to be successful with .net development, they will have to accept the fact there will be a 'learning curve', or extra time spent while we work out standards for...
  9. Replies
    4
    Views
    807

    Re: help need for pop up box to input values

    InputBox? Why didn't I find that when I needed a solution for an input box... DUH. I should ahve posted that question here. :)

    I guess you learn somthing new every day.. Ok, time to go home...
  10. Replies
    6
    Views
    1,753

    Re: How to deal with a generation gap.

    Exactly, I was not trying to make an argument for .net in my last post, but inquire how I can explain that it is. In their minds, the only reason they are even thinking of starting to mover into...
  11. Replies
    6
    Views
    1,753

    How to deal with a generation gap.

    I have been working for a consulting group for six months now, was brought on as their first employee to take them into the world of .net. I've done asp.net and vb.net winforms applications. They...
  12. Replies
    3
    Views
    4,045

    Re: Linking two datagridviews (keep on same row)

    The two grids always have the same rows, it is just they most likely will have a scroll bar attached to them, so that if there are 50 rows, and you want to scroll down to the 35th row, the other grid...
  13. Replies
    3
    Views
    4,045

    Re: Linking two datagridviews (keep on same row)

    Wow, I found a solution right after I decided to post this question...

    in the scroll event of the grids, I set the other grid's .firstDisplayedScrollingRowIndex = to the value of the grid being...
  14. Replies
    3
    Views
    4,045

    Linking two datagridviews (keep on same row)

    I have two datagridviews, one represents existing data which is read only, the other shows another table, with the same structure, but allows the user to change the values. Starting out, the grids...
  15. Re: Very advanced query, checking for existing combinations...

    Well, keeping with my example, you should be able to enter values such as:

    003, a, 99
    003, b, 2
    003, c, 3
    003, d, 0

    OR

    003, a, 99
  16. Very advanced query, checking for existing combinations...

    I am trying to write a procedure which returns a simple boolean, 1 if an item exists in our database with the same combination of values as what the user defines from the UI.

    The tables are...
  17. Identity column not working with data set and table adapter.

    I have a view I am using which looks at a table and basically only shows rows where userID = suser_sname(). There is a recNum column with an identity auto incrementing by 1. This is all on the SQL...
  18. Re: related tables in design time using views.

    Whoops, after adding the relation I forgot to refresh the data set. Once I refreshed it, the child grid showed up under the parent grid, and works as expected.
  19. related tables in design time using views.

    I've done this before, where I add two grids (by dragging two tables onto the form from my data source), and they have a relation on them so basically what you select in the top grid 're-populates'...
  20. Replies
    2
    Views
    3,390

    Re: Add a custom control to a DataGridView

    I've done this using a custom multi column combo box control. In your CheckedComboBoxCell class, the InitializeEditingControl is where I have code such as this:


    Dim ctl As...
  21. Replies
    10
    Views
    8,234

    Re: Tab order on the TabControl

    Well, in my application the tab section only takes up about 1/4 of the form size, and is a place for the user to enter data before submitting the form. Some data is required, some is not. So, not...
  22. Replies
    10
    Views
    8,234

    Re: Tab order on the TabControl

    Yes, you are right, it is broken.... Late reply, but yes, it is a broken solution. :(

    So, your origonal post said that the tab control should not function like this, but I argue it should. The...
  23. Replies
    10
    Views
    8,234

    Re: Tab order on the TabControl

    Well, I figured out a solution, works only tabbing forward (not shift tabbing).

    Basically, I create two variables to represent the current page number (tabControl.SelectedIndex) and the last page...
  24. Replies
    10
    Views
    8,234

    Tab order on the TabControl

    How do I set it up so that when the user tabs through some controls inside a tab page, when they tab out of the last control on that page, it moves the tabControl to the next page, and focuses the...
  25. datagridview dataError event not firing for check Constraints

    I have a datagridview and use the dataError event to display errors about null values, and primary key constraint problems. This works fine, but a newly added check constraint was added, to prevent...
Results 1 to 25 of 210
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured