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 TouchToneTommy 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. JabbaTheNut

    CR8 in VB6 Generating Excessive TMP Files on Compile

    I have CR8 Reports (.dsr files) embedded in my VB6 project. When I run the project, a temp file is generated (by Crystal Reports?) for each report. Is there a way to turn this activity off? Why is CR creating these temp files? thank you Game Over, Man!
  2. JabbaTheNut

    Searching All Queries in an Access 97 db for Existence of a Table

    I have a large number of queries in an Access 97 db. I am deleting a table and would like to modify the dependent queries. I do not remember which queries are using this table. Is there a quick way I can do a search of tables used in queries. thank you Game Over, Man!
  3. JabbaTheNut

    Database Comparison and Synchronization Tool?

    I am in the market for a good database comparison and synchronization tool. I have read about the following tools thus far: RedGate SQL Compare DB SynchroComp AdeptSQL Diff ApexSQL Diff Based on your personal experiences, what would be the best tool to buy for comparing both structure and...
  4. JabbaTheNut

    Use Web.Config to Restrict Access to a Subdirectory based on Port?

    I want to restrict access to a subdirectory based on the port over which the request came. For example, if the request comes over port 80, it would be denied. If it comes in over port 8080, it would be allowed. I know this sounds strange, but here is why I want to do this. I am using an SSL...
  5. JabbaTheNut

    Secure Transfer of Data to an ActiveX Control from a Web Page

    I have developed a web-based ActiveX control that will transfer sensitive files via https from the server to the client over the internet. To do this, the client would click a button on the web page which would supply the ActiveX control the URL and password info required to access the...
  6. JabbaTheNut

    Security Breach?

    I found the following entry in my IIS logs. I immediately updated my server with the latest patches through windowsupdate.com. However, I am afraid there may have been a security breach. Any suggestions on how I can investigate? 2004-01-16 14:21:09 64.x.x.x - 192.x.x.x 80 GET /NULL.IDA...
  7. JabbaTheNut

    Simple phone number formatting question

    I have phone numbers that are in 10 digit format (i.e., 2125558888). I want to format them in the following manner: "(212) 555-8888". I know I can do the following: -------------------------------------------- string myNum = "2125558888"; //the source would be a field in a...
  8. JabbaTheNut

    Class strategy for handling null integers

    I am looking for a good way to handle null integer values in a class. I need to develop a class that will extract data from several tables which can contain null values and provide the results in a set of property values. For example... ################################## private int x =...
  9. JabbaTheNut

    Assigning the same transaction to multiple commands

    Are there any potential problems with assigning the same transaction to multiple commands? I want to execute a few commands. However, if any one of them fails, I want to rollback everything. The following code illustrates what I want to do (Note that I am assigning the same transaction to both...
  10. JabbaTheNut

    Normalized Addresses - Need Help

    THE LAYOUT: I have two tables: "Applicant_T" and "StreetSuffix_T" The "Applicant_T" table contains fields for the applicant's current address, previous address and employer address. Each address is broken up into parts (i.e., street number, street name, street...
  11. JabbaTheNut

    ActiveX Control to Access Client-Side Devices

    Is it possible to write an ActiveX control in Visual C# that can access client-side hardware devices and does not require the client to have the .Net Framework? Game Over, Man!
  12. JabbaTheNut

    Command Still Executes When Cancel Is Selected On Dialog Box

    I have a DropDownList and an ImageButton in ItemTemplates of a DataGrid. My ImageButton is intended to execute an action based on the selected value in the DropDownList. For some (not all) of the values in the DropDownList, a dialog box must pop up to inform the user of what they are about to do...
  13. JabbaTheNut

    Copy database to same server but with a different name

    I have a production database named "PRODUCTION_DATABASE" on "SERVER1". I would like to copy this database (and all its views, stored procedures, etc.) to the same server but under a different database name (i.e., "TEST_DATABASE" on "SERVER1"). This copy...
  14. JabbaTheNut

    Restore A SQL 2000 Database In ASP.Net Using SQL-DMO

    The following code will enable you to restore a SQL Server 2000 database from a backup device using VB.Net in the code-behind page of an ASP.Net web form. I found this code in an article written by Andy Warren in the Database Journal dated February 26, 2001. The article was located at the...
  15. JabbaTheNut

    Requiring SSL For Website When Using An SSL Offloader

    An SSL offloader appliance traps incoming https:// requests on port 443, decrypts them, converts them to http:// requests and then forwards them to the web server on port 80. The web server then provides an http:// response which is again trapped by the SSL offloader appliance, encrypted and...
  16. JabbaTheNut

    Please Help!! Alteon ISD 100 SSL Offloader Problem

    I have an Alteon AD3 Web Switch with WebOS 10 software and an Alteon ISD 100 SSL Offloader version 1. Both are currently set to factory defaults. I am trying to do the initial setup of the ISD 100. The installation manual states that you simply connect the ISD 100 to the Web Switch via...
  17. JabbaTheNut

    Shared Cluster Server

    I have three servers: WEB1, SQL1 and an extra server. I was thinking of using the extra server as both a Web Server and a SQL Server so that I could cluster each of my existing WEB1 and SQL1 servers. A sketch of what I am referring to is as follows: WEB1 | | WEB1/COMBO1 Cluster |...
  18. JabbaTheNut

    Active-Active Controller Recommendations

    Can anyone recommend a very cheap, but good Active-Active and RAID-5 capable controller card. I want to set up a disk array with two controllers for failover redundancy. Thanks :) Game Over, Man!
  19. JabbaTheNut

    Anyone using Flash MX front-end with ASP.NET back-end?

    Is anyone using a Flash MX user interface with ASP.NET on the server side? If so, what has your experience been? Is Flash Remoting MX necessary, or can you interact with ASP.NET without it? Comments are much appreciated. Thanks :) Game Over, Man!
  20. JabbaTheNut

    Is Flash Connector Required For ASP.NET

    I would like to create a website using Flash MX as the user interface and ASP.NET on the server-side. Macromedia's tutorials on the subject require the Flash Connector. But is this necessary? Or, can I do it without the connector? Game Over, Man!

Part and Inventory Search

Back
Top