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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. bigmelon

    Fixed Header in asp.net datagrid

    I don't think this solution will work with 2003 will it? I tried adding the code to my datagrid and it doesn't recognize this code: Private Sub dgPreOp_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles dgPreOp.PreRender ScrollT.UseAccessibleHeader = True...
  2. bigmelon

    Fixed Header in asp.net datagrid

    Mark, Do you have a link to an example? All the ones I have found are either like the link I posted or involve creating a seperate table as jbenson001 suggested. Thanks, Jeremy
  3. bigmelon

    Fixed Header in asp.net datagrid

    I have tried the code from many different sites, such as this: http://www.codeproject.com/KB/webforms/DataGridFixedHeader.aspx Even when I put the datagrid in a div tag, the header still scrolls off the screen. Has anyone gotten this to work? Thanks in advance.
  4. bigmelon

    Grouping by DOW then HR or just by HR for the whole week

    Right now they can just select a day of the week, 1-7, and it will get the data for that specific day. I'm trying to set it up so they can still do that, or select the week in its entirety. How can I put that in my WHERE and GROUP BY to accomplish this? Thanks again, Jeremy
  5. bigmelon

    Grouping by DOW then HR or just by HR for the whole week

    Yea but I can't figure out how to use them together, I know that functionality exists. Thanks, Jeremy
  6. bigmelon

    Grouping by DOW then HR or just by HR for the whole week

    I have a stored procedure that I use for a report on SSRS. They enter in a date range, and DOW. I have it working for all specific DOW, but I also want them to be able to chose all and haven't been able to figure this out yet. My where statement is: where DATEPART(dw,e.adm_date)LIKE @DOW...
  7. bigmelon

    Record Count

    go to special fields, then record number
  8. bigmelon

    Syntax Question - Not Like

    How do you say the equivalent to Not Like in a formula? The formula i want is as follows: if {Surgproc.Proc_Type} like '*rima*' and {Surgproc.Proc_Type} not like'*lima*' then "Right IMA" else "" When I put the not in there is says the statement is missing the then statement but without it i...
  9. bigmelon

    Details Section of Group Splitting Between Two Pages

    It appears there is no way to have precise control of over where the page splits which is probably just a first version bug. Thanks for your help, Jeremy
  10. bigmelon

    Details Section of Group Splitting Between Two Pages

    I know about this but it isn't a valid option for me. I don't want a new page for each occurence of the group as that would cause it to be like 13 pages. I want multiple occurences to appear on one page, I just don't want it to split in the middle of the group. Does this make sense? Thanks...
  11. bigmelon

    Details Section of Group Splitting Between Two Pages

    I have a 7 page report with multiple groups. The one section is splitting between 2 pages, with the group info and two records one one page, and the last record and sum information for the group on the next page. Is there anyway to force the group to stay together with using the page break...
  12. bigmelon

    Combobox in datagrid not functioning for one user

    I know they all have the same version because I just downloaded onto their pc's. They all have 2000 and I think they all have service pack 4. Any other ideas? Thanks, Jeremy
  13. bigmelon

    Combobox in datagrid not functioning for one user

    I have a program that is installed on six different users machines, and it works exactly as I want it to for five of them. But, on one users computer, the datagrid isn't functioning properly. The first field in the datagrid is a time field and when the user hits tab it skips over the next...
  14. bigmelon

    Updating or Inserting Datagrid Row

    I figured it out. If Not dgPump.CurrentCell.ColumnNumber = 0 Then dgPump.CurrentRowIndex += 1 End If
  15. bigmelon

    Updating or Inserting Datagrid Row

    I want to be able to insert or update my datagrid without leaving the row. If I insert a row completely and go to the next line, it works fine. However, when I fill in 2 fields out of 5, for example, and try to update or insert without leaving the row it doesn't work. Anyone know why...
  16. bigmelon

    Using Enter key to jump from one datagrid to the next

    I tried me.select(me.currentrowindex) and me.select(0) but they didn't do anything
  17. bigmelon

    Using Enter key to jump from one datagrid to the next

    That does move the focus to the next control, but I want to select the whole row. Do you have any idea how to do that? Thanks a lot, Jeremy
  18. bigmelon

    Using Enter key to jump from one datagrid to the next

    I'm trying to call a second datagrid, not the one shown above. I'm trying to use the first datagrid to call the second. When I hit the enter key, I want it to leave the first datagrid and select a row in the second. Does that make sense to you?
  19. bigmelon

    Using Enter key to jump from one datagrid to the next

    Does anyone know how this can be done? I have looked at the IsInputKey and PreProcessKey but haven't had any luck with either one of them. I then made a new class for the datagrid as follows: Public Class MyDataG Inherits System.Windows.Forms.DataGrid Protected Overrides Function...

Part and Inventory Search

Back
Top