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 Chris Miller 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. MrGunner

    Best security for database?

    Maybe I didn't explain my initial problem well enough... but, the problem with doing that is I am not the person who is using the software, thousands of standard joes will be using the software and won't be able to do that. All they will be able to do is upload a few asp files along with a...
  2. MrGunner

    Best security for database?

    The database connects using DSNless as follows. DB_location=server.mappath("mydb.mdb") Set db = Server.CreateObject("ADODB.Connection") db.Open "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE="&DB_location I do it this way to make it easy on my users of the software...
  3. MrGunner

    Best security for database?

    I would like to find out what would be the best way to secure a database from outside users. Here's my problem. I'm working on a piece of software where users create custom asp files that have to read/write an access 2k database file. This database is located in the same directory as the asp...
  4. MrGunner

    ActiveX DLL errors, (could not lock file)

    ok... I found out my solution... It was nothing with my code, it was an IIS issue. These problems occur mostly (99%) with Windows 2000 or Windows XP Server. They are documented (and several solutions are presented) in Microsoft Knowledge Base article Q259725. Basically, after being severely...
  5. MrGunner

    ActiveX DLL errors, (could not lock file)

    I'm having some trouble programming a simple ActiveX DLL to use for a web site. Here is my code for the DLL ---------------------------- Option Explicit Public Function getResponse() As String Dim db As Database Dim rsTT As Recordset Dim strSQL As String Dim myResponse As...
  6. MrGunner

    Winsock through a proxy server?

    I need some help developing a simple app that uses winsock to connect to a server. What I am doing is programming a client app and a server app. Currently they communicate through winsock. The problem that I am having is that most of the people that will be using this are behind a proxy server...
  7. MrGunner

    How to open table with space in name

    Hey, thanks for the help... I'll have to raz my friend for his database design ( I have no clue why he even put spaces in it).
  8. MrGunner

    How to open table with space in name

    I am having some trouble opening up a table with a space in the name. Here's an example of what I'm doing... Dim db As Database Dim rsTT As Recordset Set db = OpenDatabase(strPath) Dim strSQL As String strSQL = "select * from " & tbName & " where ID = " & ID Set rsTT =...

Part and Inventory Search

Back
Top