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 Mike Lewis 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. bakershawnm

    Search Active Directory WITHOUT LDAP

    Or better yet a way to get the first and last name from the user account without having to search the active directory.
  2. bakershawnm

    Search Active Directory WITHOUT LDAP

    Everything I have found on how to search the AD has the 'LDAP://<DomainName>'. However something has changed in out network and the Users in the active directory are not getting updated to LDAP. Don't know how or why since I am not the NA. So what I am looking for is a way to find user...
  3. bakershawnm

    Blob not showing on Crystal report at runtime

    The blob being created on the fly is a BMP every time. The ones that I read from a file have varying file types and all work just fine.
  4. bakershawnm

    Blob not showing on Crystal report at runtime

    It does because I do the same thing in another program. In that program I read the image from a file to store into the db instead of creating one on the fly.
  5. bakershawnm

    SqlDataReader Windows Form

    I found this solution to work best for me and use it quite extensively: SqlConnection CN = new SqlConnection(connectionString); SqlCommand sqlcmd = new SqlCommand("", CN); CN.Open(); try { sqlcmd.CommandText = "SELECT...
  6. bakershawnm

    How to handle Click Even in button on Dynamic DataGrid

    Where do you assign the click event to the button? If you are dynamically adding the button you will need to assign the click event to it the way the designer does it. this.button1.Click += new System.EventHandler(this.button1_Click); However since it is a datagrid field you would...
  7. bakershawnm

    Blob not showing on Crystal report at runtime

    Using VS 2008 with embedded Crystal Decisions. I have a program that builds an image and stores it in a database BLOB field. All that works great. I then created a crystal report, using Crystal version 10, to display this BLOB field and that works great. However, when I open the crystal...
  8. bakershawnm

    move a control in the detail.print event in a report

    This worked beautifully because I am not concerned about Report view as everything on this project is either in print preview or printed to a PDF. Have a star.
  9. bakershawnm

    move a control in the detail.print event in a report

    I have been searching for a couple of days and have not found anything that tells me I cannot do this. However I have not found anything that tells me I can either. I am using Access 2007. I am drawing a series of circles on a form using the detail.print event. with those circles I need 2...
  10. bakershawnm

    Getting a Bool from a DataRowView

    I have looked at so much stuff on datarowveiws but they all assume you are getting text or integer data from their elements. I cannot find anything on how to get a boolean value from an element in a datarowview. Using VS 2008 .Net 3.5 target. Here is my code that wont even compile because...
  11. bakershawnm

    Validation Event Firing problems

    Yes I have text changed event handlers. If I do not disable the causes validation then when I set them to blank it triggers the validation and kicks out an 'Invalid' error. Until I can figure this out I have moved the validation from Validating/Validated to the TextChanged and commented out...
  12. bakershawnm

    Validation Event Firing problems

    Hello all, Using VS 2008 VB.net 3.5. I have a form with a set of text boxes with validation events. The first time I use each of the text boxes the validation events fire just fine. At the beginning of a clear form sub it sets CausedValidation to false on the boxes that have validation so...
  13. bakershawnm

    Unitech MS336 Barcode scanner as VB.net input

    Your suggestion was perfect. This is what I ended up with Private Sub EmpID_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles EmpID.TextChanged TimerE.Enabled = True End Sub Private Sub TimerE_Tick(ByVal sender As System.Object, ByVal e As...
  14. bakershawnm

    Unitech MS336 Barcode scanner as VB.net input

    Well that was what I was afraid I would have to do. I will try something like this and post if it works. thanks
  15. bakershawnm

    Unitech MS336 Barcode scanner as VB.net input

    Could you post your code for the 'changed' event so I can see how you handled it? Thanks shawn
  16. bakershawnm

    Simple Progress Bar

    Mighty, First let me say that I am multi threading. The form with the progress bars is the main form and the threads raise an event back to the main form to increment the progress bar. Here is an event handler. Private Sub WIRSPrgrsBarEvntHndlr() If Me.WIRSBar.Value >=...
  17. bakershawnm

    Unitech MS336 Barcode scanner as VB.net input

    In this thread thread796-690882 stnkyminky said: '1. Set the scanner to send an "Enter" command after the barcode is read.' I have searched everywhere for something specific to the Unitech MS336 and how to set this scanner to send an 'Enter' but have been unsuccessful. Does anyone know a...
  18. bakershawnm

    Simple Progress Bar

    Another way that might be simpler is to refresh the form each time the progress bar increments. That is the solution I chose.
  19. bakershawnm

    Services, Threads and EventLogs

    My account. I have full admin. Yes it has full rights to write to the log.
  20. bakershawnm

    Services, Threads and EventLogs

    This would be the exception handler. However no exception is raised. catch (Exception e) { //evntlog.WriteEntry(e.ToString()); } } and this is the only thing I get in the event log as a .Net Runtime Error EventType clr20r3, P1 <my...

Part and Inventory Search

Back
Top