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 Westi 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. abe6162

    outer join

    Each cmpy_num has a net assets and net income. But not all cmpy_num reports net assets
  2. abe6162

    outer join

    I am sorry. I left one column out. I didn't think it mattered, but I see it does now. The tables should be -- raw_data_info raw_data_id -- raw_data_name 1 -- net income 2 -- net assets I have another table called raw_data raw_data_id -- report_date -- cmpy_num --- amount 1 -- 2/28/2000 --...
  3. abe6162

    outer join

    Thanks for you response. I tired this.. SELECT I.mdy_raw_data_name, D.amount FROM raw_data_info AS I LEFT JOIN raw_data AS D ON I.raw_data_id=D.raw_data_id WHERE report_date=#2/28/1999#; and it returned me only the values that were in the raw_data table. I need null to return for all the...
  4. abe6162

    outer join

    I need help with a outer join. I have a table called raw_data_info .. raw_data_id -- raw_data_name 1 -- net income 2 -- net assets I have another table called raw_data raw_data_id -- report_date -- amount 1 -- 2/28/2000 -- 50 I need to write a sql statement that will return the below...
  5. abe6162

    Opening Notepad

    Thanks! this worked great!
  6. abe6162

    Opening Notepad

    During a process, I am creating a logfile to capture all the errors. After the process is done, I would like to display the logfile to show the user. I am able to write to the file and append it when neccessary, I am just not sure on how to open the file to display it to the user. Do anyone...
  7. abe6162

    Form Close

    This worked. Thanks so much for you help
  8. abe6162

    Form Close

    Is there any way to stop the form from closing, if you hit the close button (the X on top of the form)
  9. abe6162

    Form Close

    What is the event that controls the close button (the X button on top) on a form. I have an exit button on the form and I want that to behave differently then the close button. Thanks for you help.
  10. abe6162

    Global vs Public Variables

    This more of curiosity question. and just to let you know, I am new to VBA What is difference between global and public variables? I am working on a project that has multiple forms and modules. The variable needs to keep its value, once assigned, throughout the project. I noticed that the...
  11. abe6162

    VBA Help

    I am pretty new to VBA, please help. I need to pass this database variable to a function but I get "Type Mismatch" Error. Below is code: dim MasterDb as DAO.database set MasterDb=Opendatabase("C:\test.mdb") fTest(MasterDb) function fTest (MasterDb as DAO.database) end function
  12. abe6162

    Current file

    I can use your other functions also. Thanks so much.
  13. abe6162

    Current file

    How can I tell the name of the current file I am working with. I would like to know the name of the Access file I am current working on. I want to do this in VBA Thanks!
  14. abe6162

    Import module

    I am new to Access and I am setting up the archeiture. I will have FE (mdb) and BE (mdb) on the Network. I would like to distrubte the FE as an MDE file to the user. Reason for import module or forms: When I make a change the FE (mdb file) on the network, like add a new form or add a new...
  15. abe6162

    Import module

    Can I import a module after I complie the file as a MDE file. Reason for the question: I am going to set up a design master file on the network. I would like the users to import any new modules, forms introduced to the application. Any help or suggestions would be appreciated
  16. abe6162

    VBA Question

    Thanks for you idea. I really appreciate them. Both are great solutions.
  17. abe6162

    VBA Question

    I am new to VBA and I doing this is my first Access project. I get a response from a user all the time as "USA ...". I really need to put "USA" into the database. How can I do this in VBA? I am used to the c programming language where I can loop through the string array looking for ".". Is...
  18. abe6162

    Linking tables to Sybase Database

    I having problems linking to a Sybase Database via Access. I keep getting "Reserved error -7778, there is no message for this error". Does anyone know anything about this error? Is there any way for me to link a table through, VBA code? I was able to connect to the database using ADO...
  19. abe6162

    office spreadsheet 10.0

    I am using office spreadsheet 10.0 in an Access application. I am using the spreadsheet as a form for entrying in data, or correcting data already in the database. After I upload all the data from the database into the spreadsheet, the user can change or insert new data in to the spreadsheet...
  20. abe6162

    File Open Control

    Thank you all so much for you responses. These are great solutions that I will present to the user. Thanks again!

Part and Inventory Search

Back
Top