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

  • Users: lance59
  • Content: Threads
  • Order by date
  1. lance59

    Adding crystalreport.rpt or any file to project for install

    I have several files that I would like to have installed at the same time the project is installed on the clients machine. Best I can tell is that you add them to the resources, but how do you tell the installer to make a new folder and load the files there? TIA
  2. lance59

    Image into SQL 2005

    I have this code but gives me an error on the insert statement. User selects image from file which loads into picturebox. I then pull out the image to store in SQL 2005. If have_image = True Then Dim ms As New MemoryStream PictureBox3.Image.Save(ms...
  3. lance59

    Primary Key question

    I have an inventory db with a table called items which I am using GUID for the item_id and table_key (auto incrementing) for the primary key. Works just fine. I also have a table called item_history which is a copy of items table including the primary key field. I am using this to be able to...
  4. lance59

    Form Validation before SQL Insert

    I have a form that has several text boxes and combo boxes. I need to validate that the text boxes and combo boxes have values in them before using the data to populate a table in SQL. For the text boxes I found this, which does check to see if they are empty. But if the user just skips to the...
  5. lance59

    Multiple Variables in One SQL select statement

    I have 2 variables in one select statement. I can put one in at a time and the select works, both in and I end up with no errors but a blank datagridview. Using SQL 2005 and VB.Net (Visual Studio 2008) TextBox1.Text = str_item_column TextBox2.Text = str_item_type Dim SQL As String = "select *...
  6. lance59

    What are you using for computer inventory/auditing?

    We are looking for a computer inventory/audit software. Open Source would be great but necessary. If you could sate why you like it that would be great. We have about 400 computer. TIA
  7. lance59

    Delete Script for email >30 & last logon > 60 days

    Looking for a script for Exchange 2007 SP1, that will delete email from a users inbox that is older then 30 days if the user has not logged on in the last 60 days. TIA
  8. lance59

    Stopping a service in Vista 64

    I am looking for a way to stop a service in Vista 64. This works under XP 32. I don't have Vista 32 but I suspect it would work. It just does not work under Vista 64. I am trying to stop/start the Symantec Antivirus service after I replace the GRC.dat file to point it to a new AV server...
  9. lance59

    Permission Denied on file copy

    We are trying to copy the new GRC.dat file to all our machines to update the Managed Server to the new server and to make sure all computers are managed. We are doing this through Group Policy Startup Scripts. We get "Permission Denied" on this: oFSO.CopyFile strSourceFile, strDestination...
  10. lance59

    Verify GridView item is selected

    Looking to verify that any item or row in gridview is selected before moving to the next page. If GridView1.?????????? = True Then Dim S2 As String = Server.UrlEncode(u) Response.Redirect("Registration.aspx?class_Reg1=" & S2) Else...
  11. lance59

    Output Parameter not working....

    We have this SP that we what it to return the value of the @maxid. We where trying to use @CERT_ID_Out to send the value back, but it only returns the value we put in. Here is the SP: set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER PROCEDURE [dbo].[CERT_Add_Registration] -- Add the...
  12. lance59

    vb.net snippet for Motorola Symbol P370 Barcode Scanner

    I am looking for some code to grab the data from this scanner (via USB/cradle connection) to use in an inventory program we are developing. Not to keen on how to talk with or get the data out from this device. Any help would be appreciated. TIA
  13. lance59

    Weekly Win2003, ISA, SQL status reports to CIO?

    I am looking for some ideas on what should be included on a weekly or monthly status report for our Win2003 servers, MS SQL, MS ISA servers, Exchange 2007, IIS, etc... That gives a snap shot of the servers and applications. Looking for items such as: Status of backups Patches Errors pages...
  14. lance59

    Install raid drivers after OS install?

    I have added a couple of SATA drives and now I need to install the raid drivers that would normally be installed when the OS is installed by using the F6 feature. I have a floppy and the drivers on a 3.5, I just can't figure out how to install them with out reinstalling the OS again. Any...
  15. lance59

    Groups working but can't get users to work?

    We have the VPN 3000 with a group setup and I can connect using the groups user name and password but when I set up a user it never connects. Any ideas why? I have the user to inherit everything from the group. We have tried changing every setting in the user but nothing helps. TIA
  16. lance59

    Test-ImapConnectivity missing? Setting up IMAP

    I am trying to set up IMAP for some users. I have done this: Set-service –identity MSExchangeIMAP4 –startuptype Automatic Then Set-IMAPSettings -SSLBindings 10.30.24.xx:993 Then Set-IMAPSettings -LoginType SecureLogin Then Get-CasMailbox MailboxName (To check to make sure user IMAP is...
  17. lance59

    WebBrowser1.move error

    I have a WebBrowser on my form and I want it too auto resize to fit the form. I have tried: Private Sub WebBrowser1_Move(ByVal sender As Object, ByVal e As System.EventArgs) Handles WebBrowser1.Move Dim ScaleWidth As Integer Dim ScaleHeight As Integer...
  18. lance59

    WebBrowser1 Invalid URI: The format of the URI could not be determined

    I have a modGlobal section that has web pages urls in it. Module modGlobals Public webpage1 As String = "http://www.google.com" Public webpage2 As String = "http://www.yahoo.com" Public webpage3 As String = "http://www.msn.com" Public webpage4 As String = "http://www.home.com"...
  19. lance59

    Can't use IE externally but Firefox works for OWA 2007?

    We can access OWA internally using IE or Firefox. We have ports 80/443 open and have a SSL certificate installed From outside we can use Firefox to log in just fine. Using IE from outside we get http error 400 (This error (HTTP 400 Bad Request) means that Internet Explorer was able to connect...
  20. lance59

    Review Insert snippet lines

    Working on a project and wanted to make sure I am on the right track. This is my SQL Insert snippet. Is this the right way to do an Insert? It works just want to be sure I'm not missing anything. TIA This is my connection string. I have it in a module so I can use it other places. Public...

Part and Inventory Search

Back
Top