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 Mike Lewis 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: JARE
  • Order by date
  1. JARE

    Is there a way to manipulate BO fro

    Is there a way to manipulate BO from other applications? example: using CreateObject(Excel.Application) I referenced the BO 5.1 ObjectSet and tried CreateObject(Busobj.Application) with no luck.
  2. JARE

    HOW TO RUN VB CODE FROM THE COMMAND LINE

    IS THERE A SWITCH FOR RUNNING A MACRO FROM THE COMMAND LINE IN BO? IF NOT IS THERE ANOTHER WAY, LIKE AN ON_OPEN EVENT SO MACROS CAN BE RUN IN BUSINESS OBJECTS USING SCHEDULED TASKS?
  3. JARE

    Business objects VS. MSACCESS lots of ???????

    I'm pretty new to business objects but have been working with MSAccess for a few years now. Is there more functionality with business objects? Is there anything in business objects that compares to using recordsets in MSACCESS? Is automation possible between business objects and MSOFFICE...
  4. JARE

    Sendobject In Excel

    The only drawback is the process won't be completly automated. it only brings up the exchange dilog box and fills in sender + subject + attaches open worksheet It doesn't actually send the message. Still looking for a better way
  5. JARE

    Sendobject In Excel

    I checked the help file for Excel VB a little better and found this: Application.Dialogs(xlDialogSendMail).Show arg1:="Test@test.com", arg2:="Subject Here" Is there a better method to use?
  6. JARE

    Sendobject In Excel

    Oh, and the mail client is Exchange, using Exchange Server
  7. JARE

    Sendobject In Excel

    I did try recording a macro and using the SendTo - Mail recipient Command, Which generated this code: Application.Dialogs(xlDialogSendMail).Show But Unlike Access SendObject there is no where for Subject, Body text, TO: , And CC: Is there an easy way to do this in code? I'm pretty new to the...
  8. JARE

    Sendobject In Excel

    I was wondering if there is a simple way to Automate sending a spreadsheet via email to someone in Excel In Access I use Docmd.SendObject. Thanks
  9. JARE

    Scroll Mouse - How Can I disable?

    I have a data entry form with record controls disabled but users with scroll mice can scroll through records with the wheel bypassing the control box property. is there any way to disable the scroll wheel from doing this without confiscating the scroll mice?
  10. JARE

    TROUBLE MAKING A SEARCH FORM

    I am trying to create a form to apply filters on a subform but I keep getting the error "438 OBJECT DOESN"T SUPPORT THIS PROPERTY OR METHOD" This is the code that I have attached to the ON_ENTER event Dim STRSQL As String STRSQL = "Select * from ORDER_PROCESSING where&quot...
  11. JARE

    update a record on a form

    The code docmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70 works fine, it was generated by the command button wizard I was just curious about the visual basic equivelent
  12. JARE

    update a record on a form

    Mental block here, how do I update a record on a form? for example, instead of scrolling up a record then back a record just attach some code to a button to refresh.
  13. JARE

    Unwanted Multiple Copies of a One-Page Report

    Are you getting copies of the report or extra blank pages?
  14. JARE

    Still waiting on answer

    Sure you can do it, just not with an access default button. you need to design 2 images in photoshop. 1 button in normal view & 1 button in pressed mode. then place the normal button image on your form and change the image property with the on_mouse_down event. you can also make more...
  15. JARE

    Export Report to File

    The only way I know of to properly export access reports is to use the snapshot format. The only darawback is that users who wish to open the snapshot files will need the Snapshot viewer installed on their machine, available free from the microsoft web site.
  16. JARE

    Text deliminated export in visual basic

    I am trying to convert a query into a comma deliminated format and then email it. However when I use the SendObject command and specify a txt file as the source I get only a text version of the table. is there a way to use access built in text output or will the text have to be manipulated in code?
  17. JARE

    EXPORTING TO COMMA DELIMINATED FILE

    thanks will5 I think that will work even better!
  18. JARE

    EXPORTING TO COMMA DELIMINATED FILE

    Not a true fix but I converted the date into a text string and worked fine
  19. JARE

    EXPORTING TO COMMA DELIMINATED FILE

    I am trying to export a query into a comma deliminated text file. however my date field is outputting strange results. Example: ,10/1/00 00:00:00, I want only the data output without the time. I tried changing the format to short date with no success.
  20. JARE

    How can i limit my subform to only allow only 24 records?

    It does look like it doesn't work with access tables (I always use SQL tables linked in access) You could try a TOP 25 query but anything else would have to be in VB. OR you could set up an ODBC driver for ACCESS (I think windows95 includes these.) And then link your tables Via ODBC (You will...

Part and Inventory Search

Back
Top