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 SkipVought 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: *

  • Users: Blitz
  • Order by date
  1. Blitz

    Does Field Clipping only work in preview?

    I have a report that when the data is too large it shows #### in preview but when I export it to PDF or view it in my .net program it clips the numbers instead of showing the ####. Is this feature only there for the preview pane?
  2. Blitz

    How to find out if a user is in a group

    From what I remember the IsInRole will only work for groups on the local machine, You cannot check the role on the server with it.
  3. Blitz

    how can i make a column in a datagrid not be a tabstop?

    Private LEFTHIDDENCOLUMN As Integer = 3 Private RIGHTHIDDENCOLUMN As Integer = 6 Private Sub datagrid1_CurrentCellChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles datagrid1.CurrentCellChanged If datagrid1.CurrentCell.ColumnNumber = Me.LEFTHIDDENCOLUMN Then...
  4. Blitz

    Datagrid row values not saved to dataset until row changes?

    you can take out the " Dim args As New EventArgs RaiseEvent ColumnSavedToDatagridRow(Me, args)" I just needed an event to be raised when it was called.
  5. Blitz

    Datagrid row values not saved to dataset until row changes?

    What I have done with all my datagrids is the following: Add these 2 proceedures to a derived datagrid Public Sub SaveCurrentColumnToDatagridRow() Dim dgc As DataGridColumnStyle = Me.TableStyles(0).GridColumnStyles(Me.CurrentCell.ColumnNumber) Me.EndEdit(dgc...
  6. Blitz

    Datagrid lost focus if mouse wheel Scrolled past Top or Bottom

    What was the oversight that caused this? Im am having the same problem.
  7. Blitz

    How to simulate a click in a datagrid

    There is an example here http://www.syncfusion.com/FAQ/WinForms/FAQ_c44c.asp#q855q that is supposed to simulate a click in the upper lefthand corner of a datagrid in order to make the grid show no current cell. Unfortunatly the example appears to be incomplete because the function "send...
  8. Blitz

    How can I detect a shift + tab vs just a tab in my datagrid?

    That did it thank you for taking the time to help me on this one.
  9. Blitz

    How can I detect a shift + tab vs just a tab in my datagrid?

    Unfortunatly that did not work, it still behaves as if only tab is pressed even if shift is held down. Thanks for trying you gave me a few more ideas to play with.
  10. Blitz

    How can I detect a shift + tab vs just a tab in my datagrid?

    here is what i currently have in my derived datagrid that detects when tab is pressed and selects the next control. Protected Overrides Function ProcessCmdKey(ByRef msg As System.Windows.Forms.Message, ByVal keyData As System.Windows.Forms.Keys) As Boolean If msg.WParam.ToInt32() =...
  11. Blitz

    DataSet.HasErrors() - What kind of errors?

    Thank you, great explaination.
  12. Blitz

    DataSet.HasErrors() - What kind of errors?

    Im wondering what kind of errors "DataSet.HasErrors()" would be detecting? ie why should I include a has errors check in my code. Thanks for any info.
  13. Blitz

    Need help with DocumentBeforeSave

    Tried already, doesnt work
  14. Blitz

    Need help with DocumentBeforeSave

    Private Sub beforesave(ByVal sender As System.Object, ByVal e As Word.????????) Handles wordApp.DocumentBeforeSave End Sub It says the method cannot handle the event because they do not have the same signature, the problem is I dont know what e need to be to be able to handle the event...
  15. Blitz

    Crystal Reports master/detail report?

    I had just figured that out. My problem was that I did not see any way to group, but i have figured out what i needed to. Thanks.
  16. Blitz

    Crystal Reports master/detail report?

    I am trying to make a report that shows the information from the parent record then shows all the child record and continues for all records similar to this Entry 1 information Detail information Detail information Detail information Entry 2 information Detail information...
  17. Blitz

    Can i use 2 different fonts on the same button?

    Thank you, i will just stick with having an image and text.
  18. Blitz

    Can i use 2 different fonts on the same button?

    I would like to use a wingding symbol followed by a word in times new roman. Is there any way to do this?
  19. Blitz

    How can I get the return code from a sql stored proceedure?

    I have a stored proceedure that returns 1,2,3 or 4 depending on what happened in the proceedure. How can i get that return code back to vb.net? I only know how to get the number of rows affected, i woudl appreciate any help. This is a little snip of the code i have: cmdParms.Connection =...

Part and Inventory Search

Back
Top