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 strongm 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. crpjaviman

    Progess bar without a DLL...is there such a thing?

    Thanks, Andy. I keep forgetting about working with forms. Let me try that and maybe I can work the .DLL out of the programming. Thanks, crpjaviman [rockband]
  2. crpjaviman

    Progess bar without a DLL...is there such a thing?

    Hello, I have a progress bar in my Excel 2013 reports that has a .DLL file accompanying it and it works great for me. I tried to hand over to a co-worker and forgot to install the DLL file so it failed. Now I am trying to find a progress bar function that I don't have install something along...
  3. crpjaviman

    Extract Outlook 2013 attachments via Excel 2013 VBA

    Hi everyone, I have been looking for some code that will find an email in a specific folder, open the attachment into Excel 2013, and save the report in a specified folder on a drive. I think I can handle the saving file part but the opening the attachment is kicking my butt. I would like to...
  4. crpjaviman

    Convert Access 2013 saved import task to code

    Hello all, I've a break from the other project and want to continue my momentum on this project. Here is the basis: I have 7 reports that have certain info that I need to compile into a one page report per employee. The information includes DOH, supervisor, a few phone metrics, sales info...
  5. crpjaviman

    Convert Access 2013 saved import task to code

    Hello everyone, Sorry, I was diverted to another project. I will be back soon to continue the search or re-mod of this report. I like the idea of converting it all to Excel, maybe one report to do all of the pieces and full of VBA code. Thanks and talk soon. Thanks, crpjaviman [rockband]
  6. crpjaviman

    Convert Access 2013 saved import task to code

    Hi Skip, The reports originate in Excel, imported to Access, and end back in Excel. I use Access to do some of the heavy queries and sorting from multiple tables then back to Excel. I am taking over the reports from a previous analyst so I am just trying to keep it moving while I make...
  7. crpjaviman

    Convert Access 2013 saved import task to code

    That would be great, kray, but I've tried that and it doesn't record the Access actions. I've made sure the references for Access are added but to no progress. I would have to create a createobject mod for Access. Thoughts? Thanks, crpjaviman [rockband]
  8. crpjaviman

    Convert Access 2013 saved import task to code

    Hello all, I am getting back into VBA coding after a few years away and it's coming back slowly plus adapting to the new verbiage. I have a curious question: how can I convert the saved import tasks in Access 2013 into VBA code? I can manage the import process better if it's in code. If...
  9. crpjaviman

    New Query Def works in '97, not in XP

    Hello everyone, I have a unique problem with my code in VBA in Access. I have created a database with a mod in Access '97 and it works perfectly. Here is a brief on the process: 1. Delete all tables 2. Import certain tables from a directory 3. Create crosstab and make-table queries thru...
  10. crpjaviman

    How can an attachment be opened / extracted from Excel-VBA?

    Hi, I work at a company that has Lotus Notes 5.0.11 running on XP OS. I am trying to open, launch, or extract an attachment from within a Notes database to Excel or even to the Desktop as a file, doesn't matter. I have been able to get to the $File item but no further than that. I have put...
  11. crpjaviman

    .returnsrecords vrs .recordcount which method is faster?

    kwkranger I have used this vb code to find the first row of an item. This should be able to be modify for your use and increase speed. I could only find the code in one of my excel uses but can be converted to what ever you need. With ActiveSheet.Range("C:D") Set C =...
  12. crpjaviman

    vb6 and excel

    I have done what you are looking for in VB code. I have several workbooks with several worksheets that I need to update on a daily basis. Dim x, y As Integer For x = 1 To Workbooks.Count Workbooks(x).Activate For y = 1 To Worksheets.Count Worksheets(x).Activate MsgBox...
  13. crpjaviman

    Can VB6 work with multiple Excel sessions?

    I found out what I was doing wrong. It is working now. Thanks for all of those that looked at this posting. Thanks, crpjaviman [rockband]
  14. crpjaviman

    Can VB6 work with multiple Excel sessions?

    Hello all, It's been a while since my last thread. I am having a slight problem with my VB6 project. The following code works great on the first run. The form has checkboxes to choose different reports in any combination. The first time it runs, it runs great. Then, if I want to have a...
  15. crpjaviman

    How do I find next Wednesday falls in a new month?

    I don't want to sound stupid, but wouldn't it be easier to just add 7 days to the starting Wednesday and do a Format function to find out the month that it is in? For example: Dim startw, endingw As Date Dim wmonth As String startw = Me![StartWeds] endingw = startw + 7 wmonth =...
  16. crpjaviman

    Back End Db tables not updated completely

    jeremy, The example is the same record. It is first saved into the table "Front" in the Front End db. It is supposed to update the Back End table of the same name when it is linked. Basically, this is the way the tables should look like: Front End table linked "Front&quot...
  17. crpjaviman

    Back End Db tables not updated completely

    Let me try to shed some light and answer your questions: junior1544, Both of the sources are Access. The records are being saved via a recordset in the Front End. About the level locking, I don't quite understand the question, but if you are referring to the record locking, there are no...
  18. crpjaviman

    Back End Db tables not updated completely

    Hello everyone, Has anyone encountered the problem of the Back End db tables not being updated with the Front End db tables? Here is an example of what I mean: Front End table linked "Front" entry: ID Name TimeArrived TimeLeft EntryTime 1234 Jane Doe 10:00 15:00...
  19. crpjaviman

    Access thinks it's working in a multi-user environment

    rdagey, Try closing the recordset and setting the db to nothing. I had a similar problem just recently. Thanks, crpjaviman [rockband]
  20. crpjaviman

    If..Then..Else and Update query

    jane30, Have you tried use the Select...Case form? Otherwise, a proven method that the table will be queried once is to work off the .recordcount. I believe that this will make sure that the record is queried once. One more suggestion, try it with the SQL statements outside of the loop...

Part and Inventory Search

Back
Top