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 Rhinorhino 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. petermeachem

    Reading Outlook subject and date

    Set olApp = New Outlook.Application Set olNamespace = olApp.GetNamespace("MAPI") Set olFolder = olNamespace.Folders("Mailbox - Applications").Folders("Inbox") Set olMail = olFolder.Items.GetFirst jNoEmails = olFolder.Items.Count For J = 1 To jNoEmails Set olMail...
  2. petermeachem

    Old Accpac on vmware, can see data, can't run executable

    I have the tables linked to an Access programme, I can see the data fine. But we cannot run the executable, error 49153. It's a very old copy of Accpac we use for some historical lookups, version 5. something. If I remote onto the server and look at the odbc's, i get 'An error occurred while...
  3. petermeachem

    Autorespond with specifics

    We are autoresponding to emails to a specific mailbox with a standard message. what i've been asked to do is to reply so that they (the senders) know which email we are responding to, maybe by including their original text. It has to be server side. I can't figure out how to do this. Does anyone...
  4. petermeachem

    3 cheques per page. Cannot make it work

    The report just has a detail section, no header or footer and 0 margins. It shows the data for one cheque which prints on a preprinted A4 page with 3 cheques one above the other. The old cheque paper which worked fine, had 3 cheques and a 5cm tear off strip on the bottom. The new cheque layout...
  5. petermeachem

    Something removed all accessory trays from our Brother 5380's

    This is extremely weird. We have half a dozen Brother 5380's and some 5270's and other printers. They are all installed on a server and used over the network. We have software that selects a printer and tray (each tray has a different variety of headed paper) and prints the letter. I was off...
  6. petermeachem

    Excel Error occurred initialising vba libraries (1114)

    We have one staff member who has constant problems with Excel. He uses a couple of excel files which are on shared drives on a server. Sometimes excel just closes for no reason, sometimes he gets a vba library error message as in the title. Other people use the same files and never have a...
  7. petermeachem

    Word 2010, code in Templates

    Just setting up a new pc with our first copy of Office 2010. The one thing I can't get to work is code within a word .dot file. This I have copied to the templates folder, it appears on the Add-Ins Inactive Applications Add-ins list. I've set macro security to allow anything and trusted vba...
  8. petermeachem

    Slow to start

    I asked this in the office forum, no response, so i thought i'd try the proper forum. This is an Access 2003 programme saved as Access 2000 because some people had 2000 years back and i've never changed it. This programme has been in use with about 50 users for years. Always has started very...
  9. petermeachem

    Access suddenly very slow to start

    This programme has been in use with about 50 users for years. Always has started very promptly. When I change it, a new copy gets copied to the users C drive, and they run it from there. Now, when a new version is opened, it sits there with a white screen for around 2 minutes and then works...
  10. petermeachem

    Accounts Payable invoice from code

    We are going to be inserting invoices to us from suppliers. I have no idea how to do this and can't find any samples. I have code for inserting customers and invoices to same, so I suppose it is pretty similar but ends up in different tables. We have a rather old version, 5.0A. We are actually...
  11. petermeachem

    Drag Drop compressed file contents

    Can't fathom out how to do this. I'm dropping on a listbox and for other files check e.Data.GetDataPresent("FileDrop") but for files dragged from compressed folders this isn't true, i.e. it doesn't think its a file. There must be a way of doing this, but I just can't find anything. Can anyone...
  12. petermeachem

    Drag Drop compressed file contents

    Can't fathom out how to do this. I'm dropping on a listbox and for other files check e.Data.GetDataPresent("FileDrop") but for files dragged from compressed folders this isn't true, i.e. it doesn't think its a file. There must be a way of doing this, but I just can't find anything. Can anyone...
  13. petermeachem

    Debug problem, No Symbols have been loaded

    This is on a windows forms project 'upgraded' from Visual Studio Express to Visual Studio 2008. It will not stop on breakpoints. I've spent half the morning trawling through web pages and tried many of the suggested solutions with no effect. One suggested the debug or configuration settings on...
  14. petermeachem

    Brother 5270DN IP Settings

    This printer is currently connected via USB and I'm attempting to connect it to the network and install the driver on a server. Whatever I do on the menu, when I print out the settings it just says IP Address Initializing. I am also not getting any led's illuminated by the printer ethernet...
  15. petermeachem

    Contact Master documents list

    Using an old version, 5.0A We have a folder which contains all the word docs produced by Contact Master, they have names like DOC_266907. I've found a table called CZDOC, which gives a descriptive name for the word doc but I can't find how to relate this to a particular account. This table has...
  16. petermeachem

    Problem shelling, file not in front

    I'm using System.Diagnostic.Process to shell to one of a list of files from a Treeview control. It works fine, but the programme window ends up in front of the shelled word doc. This seems to be a result of me changing from a Listbox to display the file names to a Treeview. It was perfectly ok...
  17. petermeachem

    Encryption for XP Home

    We've just bought a netbook with XP Home and need the drive encrypted. very surprised to find XP home won't do this. Does anyone know of a reliable 3rd party solution? Has to have a small footprint as it is a slightly feeble machine
  18. petermeachem

    Satellite Pro P200 twin screens

    We are installing twin video cards to make our document imaging easier to view. They run so that you can drag a window from one screen to the other, but maximising a window maximises it only on one screen and doesn't spread it across both. One user has a Satellite pro P200. This uses a ati...
  19. petermeachem

    Firefox won't save preferences or auto login

    This is getting annoying. If I alter the safesearch preferences on google, close firefox and reopen, my selection isn't saved. Auto logins to web sites don't work. For instance on tek-tips I now get the login prompt when I didn't used to. This happens on every login web site I use. I've tried...
  20. petermeachem

    Drag and drop multiple attachments

    I am using the following code to drag attachments to a form in the dragdrop event Dim memoryStream As System.IO.MemoryStream = e.Data.GetData("FileGroupDescriptor") memoryStream.Seek(76, IO.SeekOrigin.Begin) Dim fileName As Byte() = New Byte(256) {}...

Part and Inventory Search

Back
Top