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 Rhinorhino 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

    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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. bakershawnm

    Services, Threads and EventLogs

    I am writing a service that spawns a thread. The thread listens at a socket. I would like the thread to write to the event log. I know how to handle it in VB.NET using the WithEvents. The problem I am getting is when the thread tries to write to the event log the service (and thread)...
  8. bakershawnm

    Smartlist Builder Go Tos

    I am using GP10. I have built a smartlist and I now want to add a 'Go To' to it. I am integrating other non-dyanmaics databases with dynamics and am using data from a customer to that I have stored in one of these other databases to automatically build a BOM. I have the data all set up in a...
  9. bakershawnm

    Dynamic counter

    Good morning all, I am using SS2005 and I would like to do the equivalent of the MS ACCESS solution below from this KB article http://support.microsoft.com/kb/94397. Option Compare Database Option Explicit Global cntr '************************************************************* ' Function...
  10. bakershawnm

    Double update from threaded code

    Not sure if this is because of threading or what. Using VS2008 VB.net and SQL server 2005. I have the following module inside a thread class. The thread is being spawned by a controlling form. Private Sub BuildBatTag(ByVal infl As StreamReader) Dim instrng As String Dim...
  11. bakershawnm

    Threading, Services and WaitHandles

    I have been working on a service for a few weeks that will sit and monitor a specific daily folder. When it detects certain files it reacts by spawning threads to handle parsing the data into a database. Just to get the basics out of the way, I am using Visual Studio 2008 and VB.NET to SQL...
  12. bakershawnm

    TextFieldParser problem with field data ending with quote period

    hello all, I am using TextFieldParser to parse through a text file looking for small snippets of information. Large file, lots of useless data. But it has the advantage that since it is intended to be a printed file it has unique delimiters (vertical bar) for columns and page edges. Makes...
  13. bakershawnm

    What is wrong with this SQL WHERE clause

    Can anyone tell me what I am doing wrong with this WHERE clause and why I am getting "No value given for one or more required parameters" when I add the date portion? "WHERE ((dbo_FnshPrtsLst.Drawing ='" & Me!Drawing & "') " & _ "AND...
  14. bakershawnm

    Parent and Child Classes

    I have been looking through here trying to find an answer but have been unsuccessful. Maybe I am just not looking for the right key words. However here is my multi-threading problem. This program is running as a service. I have a parent class: Public Class MasterImportClass Protected...
  15. bakershawnm

    Using DirectoryInfo in a Service

    I have a program that I am trying to convert to a service (using VS 2008). The program uses DirectoryInfo to search for files in a specified folder. I use absolute path names as I can never be confident that I will have a drive mapped. The path names do have spaces in them and the ultimate...
  16. bakershawnm

    Using Tables from Different connections

    Hello all, I currently have 2 sql servers running. Both are 2005. I have some active live information on server1 and some on server2 (I jumped the gun on porting my stuff over before the other DBM got his over). I need to connect some views on server2 to tables/views on server1. I have both...
  17. bakershawnm

    Very frustrated with a concatenate Proc

    Hello all, Yesterday the following SQL view and Proc worked fine. Today I only get a single pin in the field. View used to call concatenate: SELECT Drawing, ExtrctDate, RefDes, CavArrngID, SealingPlug, dbo.GetPins(Drawing, ExtrctDate, RefDes, CavArrngID, SealingPlug) AS Pins FROM...
  18. bakershawnm

    making a copy of the forms recordset using ADO

    thread705-1477065 I found the linked thread but that doesn't tell me anything really useful. Does anyone know how to either type cast a DAO recordset as ADO or how to clone the DAO recordset into an ADO set? I have a great little function, that I got from another source, that will make an...
  19. bakershawnm

    Remove Dup records that are in reverse order

    I have a good one here. I have a view that gives me the following information: Item, srccount, SrcFrmRef, SrcToRef, SrcTerm, DestFrmRef, DestToRef, Destcount. The srccount is the count of wires going from SrcFrmRef to SrcToRef and the Destcount is the same on the other end. The SrcToRef and...
  20. bakershawnm

    Cannot Return Data Error

    Using MS Sql Server 2005 I have the following funcion: SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION DeltaDays ( -- Add the parameters for the function here @StrtDate datetime, @EndDate datetime ) RETURNS int AS BEGIN -- Declare the return variable here DECLARE @Result...

Part and Inventory Search

Back
Top