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

  • Users: OraMs
  • Order by date
  1. OraMs

    Run-time error 3146 - ODBC-call failed

    Yes. Both of them...
  2. OraMs

    In attempting to open an ODBC conne

    In attempting to open an ODBC connection from Access 97 to Oracle databases, I get the above error. This occurs during an OPENCONNECTION and an OPENDATABASE. Below is the code I'm using: Function AddRows() ' Declare Variables Dim wrkODBC As Workspace Dim dbConn1 As Connection...
  3. OraMs

    Run-time error 3146 - ODBC-call failed

    In attempting to open an ODBC connection from Access 97 to Oracle databases, I get the above error. This occurs during an OPENCONNECTION and an OPENDATABASE. Below is the code I'm using: Function AddRows() ' Declare Variables Dim wrkODBC As Workspace Dim dbConn1 As Connection...
  4. OraMs

    RUN-TIME ERROR '3146'

    In attempting to open an ODBC connection from Access 97 to Oracle databases, I get the above error. This occurs during an OPENCONNECTION and an OPENDATABASE. Below is the code I'm using: Function AddRows() ' Declare Variables Dim wrkODBC As Workspace Dim dbConn1 As Connection...
  5. OraMs

    SQL Server registration

    While attempting to register a SQL server using Enterprise Manager, I get the following error: A connection could not be established to LLSQL - Specified SQL server not found. ConnectionOpen (CreateFile()).. Please verify SQL Server is running and check your SQL Server registration properties...
  6. OraMs

    Row count

    Mike, please disregard previous message. I got it. Thanks.
  7. OraMs

    Row count

    Thanks Mike. Now, what if I only want certain columns from the TOP 25 rows?
  8. OraMs

    Row count

    In ORACLE, you can use ROWNUM to select only a given number of rows. Is there something like this is Access? What is it? Thanks in advance.
  9. OraMs

    REPORT SERVER FORM

    When I trigger a report from a form, REPORTS SERVER form opens and remains opened even after I've exited the report and the form. Is this normal behaviour? How do I force the form to close? Thanks
  10. OraMs

    Multiple developers

    We have an Access application that we would like multiple developers to work on while maintaining source control such as SourceSafe. Here are my questions: is this possible with Access? if so, how? NOTE: We do not want to "split" the database and then import/export new or...
  11. OraMs

    Double Message

    Hi Steve, Thanks for your suggestion. There is no other code because I removed the macro and I did not get any errors. I solved by capturing the err.number where I'm calling the report. If not zero, display message, close report, exit. Again, thanks.
  12. OraMs

    Double Message

    I have a macro that triggeres from a report's On No Data event. The only action on the macro is a msgbox advising user that "No data was found." My problem is that the message is being displayed twice in consecutive order. Any thoughts?
  13. OraMs

    Table updates

    I have two identical forms, developed using Access97, that display existing data and allow user modifications. The only difference between these two forms is the record source. Every property on every control on both forms is identical. Every event within their respective class module is also...
  14. OraMs

    Form as constant

    Yes, I know an object cannot be a constant. However, I need some way of having a "constant" form. Here's my scenerio. I call a function from multiple controls and I pass the form and the control name. The function is declared as follows: Function CtrlNavigation(frmName As Form...
  15. OraMs

    Order of events

    Hi Terry, Thanks a lot. It works perfect..
  16. OraMs

    Order of events

    I have a text box with an EXIT event that will check for null value. If null, a message to user is displayed and the focus is set to the text box. Well, that's not what it is doing. It displays message but it goes to next control... See code below: If Isnull(Me!DOB) Then MsgBox...
  17. OraMs

    DTS books

    Would like to get references to the best DTS manuals. I have a couple from this forum's FAQs but am interested in additional ones. Thanks.
  18. OraMs

    OCX code[/]

    I need to identify all DLL references made from the MSCOMCTL.OCX. Is it possible to get code? If yes, where? If not, what can I do to accomplish what I need? Thanks for your time.
  19. OraMs

    Multiple Layouts Maximum Limit

    1. What is the maximum number of layouts allowed in one report? 2. I need to have 7 layouts on same report containing different data from same table. Would it be more efficient to generate one query or multiple queries? Thanks in advance for your help.
  20. OraMs

    How to pause and wait for application to methods to finish

    Try API calls WAITFORSINGLEOBJECT and GETEXITCODEPROCESS...

Part and Inventory Search

Back
Top