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 SkipVought 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. Scott2S

    Form like File Explorer for data?

    OK. So far this has been great, but I went to try this on a table that has it's uniqueness spanned across two columns. How do I set my bookmark on the exact match of the record instead of just finding the first match? Thanks in advance
  2. Scott2S

    Change default search options

    We encourage our users to type CTRL-F to bring up the search dialog and type in what name or whatever they need to find. The problem is that some users don't understand the default of 'whole field' and I would like to change it to 'Any Part'. Two questions: 1) is there an easier way for the...
  3. Scott2S

    Form like File Explorer for data?

    Wow, this code snippet you posted: Private Sub RecordsListbox_AfterUpdate() Me.RecordsetClone.FindFirst "[RecID] = " & Me.RecordsListbox Me.Bookmark = Me.RecordsetClone.Bookmark End Sub works wonderfull! Thanks again! How did you know to use the recordsetclone and bookmark? I...
  4. Scott2S

    Form like File Explorer for data?

    Thanks. I'll give it a shot. You said there are at least two ways to do this - what was the other?
  5. Scott2S

    Form like File Explorer for data?

    Cool. Thanks for the quick reply! So I don't have to do this with a subform?
  6. Scott2S

    Form like File Explorer for data?

    Is there a way in Access to display a scroll window of record names on a left pane and then when the user clicks on one of these records on the left that the data from that record will populate a form on the right - sorta like file explorer does ? Do I need a custom ActiveX control or do I use...
  7. Scott2S

    ADO login with a background application

    I'm still a little green with ADO - so please stick with me. We are creating a VB6 application that will be using ADO/ OLEDB to connect to a SQL 2000 database. We don't want to use a DSN - just ADO. The program will actually be using a DLL that will retrieve database configuration...
  8. Scott2S

    encrypted logins

    Where can I get info on the CryptoAPI?
  9. Scott2S

    update paradox 4.5 table width ODBC

    What doesn't work about it? Sounds like permissions to me. Where is the paradox DB located?
  10. Scott2S

    How do I upgrade ODBCJT32.DLL

    You can update the Jet ODBC and all other ODBC drivers by downloading and installing the MDAC 2.5 service pack and Jet 3.5 sp from Microsoft.
  11. Scott2S

    Info on Trab Strip ActiveX Control V6

    How do I find out how to use the Tab Strip ActiveX Control version 6.0(SP4) from Microsoft? I have version 5 in an Access 97 form that I am trying to migrate to version 6 control and the control has some different properties that I would like to find out about. Thanks in advance. Scott
  12. Scott2S

    ActiveX Weirdness

    Well, it looks like my references may be incorrect but that doesn't explain why it works on my computer. I didn't know that you have to run a regsvr32.exe if you upgrade a file version. Is that true or do you only have to run regsvr32.exe when the file is new to that computer?
  13. Scott2S

    ActiveX Weirdness

    OK - I converted and enhanced a rather large Access95 front end application to Access 97. It runs great on my machine but when I copy it to another machine, some tabstrip activeX controls don't operate. Two out of three of the forms that I use the tabstrip control don't work, but the third...
  14. Scott2S

    Help--ODBC, Access 2000, SQL Server, Windows 2000

    In your system DSN, click on the client options button and confirm that your protocol settings match that of your server. I have problems connecting to any SQL server version if the DSN defaults to named pipes - I change the default to TCP/IP sockets and it works like a champ. Also be aware...
  15. Scott2S

    IF/THEN STATEMENTS

    I need to understand a few more things. Are you talking about two text box controls (city and county) on one form? Are both of these controls bound to a field in the record source or is the county an unbound control? One last question, is there a table somewhere in your database that you can...
  16. Scott2S

    Access 97 vs. Access 95 prob deleting row from SQL Server

    Mark, Thanks again for all your input. Unfortunately this trigger change didn't help. To make sure the problem is clear now (since I have been dragging this out sooo long): The triggers work great inside a ISQL window and inside access - the bottom line is they prevent the record from being...
  17. Scott2S

    Access 97 vs. Access 95 prob deleting row from SQL Server

    I have since found that the trigger error does get raised from triggers that do not have any AND or OR statements. I know this sounds dorky, but the trigger does indeed work - you can't delete the record in ISQL, Access 95 or Access 97, you just dont' get told in your access table view that the...
  18. Scott2S

    SQL Database Structure Maintenance for 40 locations

    Wow, thanks. Looked at their web site and it looks like what I need. What do you do about keeping static tables up to date accross sites? My deffinition of a static table is a table that the user can not modify data. It contains data referenced by the front end application. It is the data...
  19. Scott2S

    How to disable Menu bar on start up

    Have you tried disabling all menu bars in your autoexec macro and then set the menubar property on your startup form? Not sure if this will help in your application, but it's probably worth a try. Scott
  20. Scott2S

    SQL SERVER monitoring Tool

    NetIQ is incredible - check it out. We use it to monitor log space available and to run tasks. It can pull events out of the NT event log or SQL then notify you via pager or email.

Part and Inventory Search

Back
Top