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. philosinger

    button click call other button click

    You could also simple manually control your InitializeComponent method (that is normally controlled by Visual Studio) and change this.button2.Click += new System.EventHandler(this.button2_onclick); to this.button2.Click += new System.EventHandler(this.button1_onclick);
  2. philosinger

    CBT Training

    I am looking to purchase Computer Based Training for C# for my company. The audience will be from in-experieced to experienced .NET developers. Does anybody know of any good companyies that make/sell these? Recommend any titles?
  3. philosinger

    Visual Studio.Net Solutions

    We are a small company with three developers accessing our development server. We all upgraded to Visual Studio.net for our development enviroment (we still don't run .net services, just using the development enviroment right now). At first, we had problems where when we opened the single...
  4. philosinger

    How to Scramble Data

    I have a strange requirement to take data from a MSSQL database alow the user to export it and then re-import it later. The Export and Import are done, however one of the fields that they are allowed to export must be "scrabmled" so that the user can not utilize it. The data is...
  5. philosinger

    Log Files growing beyond belief

    I have several databases that we utilize to create and manipulate very large databases. I am getting in to situations on some of these where my log files are growing larger then my data files. This is a problem because when I do a Shrink Database on the database the data file shrinks but the...
  6. philosinger

    VSVIEW

    Does anybody have any experiece/knowledge about VSVIEW by ComponentOne? Some consultants that we have hired for a project want us to load this on our webserver, but before I do I am wondering if anybody has any experience with this product. Is it reliable? Does it require a lot of resources...
  7. philosinger

    SQL7--Modifying System Catalogs Directly

    OK, I understand that I will still have to update all of my SPs, Views and Indexes if I do the renaming directly in the sys table, but what I am asking is if I do, will I take a chance of corrupting my tables somehow? (BTW, none of the columns being renamed are indexed, and I do have a lot of...
  8. philosinger

    SQL7--Modifying System Catalogs Directly

    There is a server setting in SQL 7 that allows you to modify System Catalogs Directly (i.e. Edit a table name by editing it entry in sysobjects table). I have to do some major table modifications (mainly just column renaming) and am wondering if modify the system tables will be faster, but me...
  9. philosinger

    MAEDulles

    Has anybody have any experience with MAEDulles as a T-1 Provider? How is their service? Good Uptime? How is their wireless service? Good Support? Any commnets
  10. philosinger

    Enable Intelimouse Scrolling of Code

    Does anybody know what I would need to do in order to get my code to scroll by by using the Intelimouse wheel in Visual Basic 6.0 (SP4)? This works in Visual Interdev (which is wonderful) but does not work in Visual Basic 6 when viewing code. -Steve
  11. philosinger

    Logical Drive Expansions

    Has anybody heard of a problem with Windows 2K and Extending Logical Drive on a RAID controller causing data corruption? I have a COMPAQ ML370 with a Company Smart Array 3200 and I am being told by Compaq that they have an artical (that they can not provide to me) warning that extending a...
  12. philosinger

    Determine Temp Directory

    How do I determine what the current users Temp directory is? The users are going to be on Win98, and Windows 2000 Pro so I can not hard code c:\windows\temp
  13. philosinger

    SQL select and Parsing string

    Try seaching for '1,'
  14. philosinger

    Stored Procedures with a list and the Parameter?

    Background I am executing this from an application where the user selects the states that they want to have moved. Problem/Question Is is possible to execute a stored procedure with a list as the parameter. Here is the storedProcedure I am trying to run CREATE PROCEDURE [sp_mysp] @StateAbbr...
  15. philosinger

    stored procedures

    connection.execute "sp_name" & param1 & ", " & param2 or recordset.open "sp_name" & param1 & ", " & param2, Connection
  16. philosinger

    Improve Performace

    I am managing a SQL 7 Server that contains serveral databases. I frequently run SQL statements against some very large database (one inparticular is 7 million records) updating tables based on data in other tables. When the query is running I watch the servers tasks manager (The server is a...
  17. philosinger

    Reposting : RDO/Money data type

    Ahh I see. Why don't you try to set the datatype as numeric(9) with the scale = 2 this would give you 2 decimal places.
  18. philosinger

    rdo/money datatype

    formatcurrenct(<your datafield>)
  19. philosinger

    Securing a Directory

    OK, here is my senario: I have an asp pages with (login.asp). This reads a SQl database to see if the username/password exsist. It then checks to see what level of security they have (turns things on and off throught the site) and the directs them to a directory. Here is where it gets...
  20. philosinger

    Upload a File to a Database?

    This isn't a web application. This is a Visual Basic 6 Application.

Part and Inventory Search

Back
Top