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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Howiee

  1. Howiee

    Shortcuts Problem

    One of our users has inadvertently set *.lnk files (shortcuts) to open with Microsoft Word. Is there any way of reversing this? *.lnk file types do not appear in the Folder Options applet so I can't change it there. Any ideas??????
  2. Howiee

    On Key Press Code Problem

    Hello, I have a subform called subStoreOrder and a main form called StoreOrder. In the sub form I have the following code that runs on the On Key Press Event. Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = 17 Then Forms![StoreOrder].SetFocus currentstore = cmbStore.Value...
  3. Howiee

    Orderby in VBA

    Hello, Could anyone give me an example of how to set the OrderBy property using vba. Thanks, Mark.
  4. Howiee

    Data Access Page Problem

    I'm trying to create a new Data Access page however if I create a new data access page the "Choose the table or query from where the objects data comes from is blank" and If I click ok I get the following error... "Failed to initialise Datalinks. Cannot change connection". If...
  5. Howiee

    NT looking for program at startup

    You could try re-installing the program and then remove it the proper way. Also check all the registry by doing a search for Ypager.exe because it could be in e.g. hkey_current_user/software/microsoft/windows/current version/run or somewhere else. Regards, Mark
  6. Howiee

    Send Lotus Notes Email through Access??

    There is some vba code @ http://www.fabalou.co.uk/VBandVBA/lotusnotesmail.htm that may help you out. I used it a while back and it worked sweet. Howiee.
  7. Howiee

    Highlight an entire row in a datasheet

    Thanks for your help Herb! The problem with using SelectRecord is it will mean the user will not be able to alter any of the cells i.e. if the down button is pressed to select the next set of records down then the user cannot change the cell that he has down keyed to because the Entire Record...
  8. Howiee

    Highlight an entire row in a datasheet

    Hello, Is it possible to highlight an entire row in a datasheet when a single field has focus. E.g I have two columns in my datasheet One called Store and the other Price. I want my datasheet to highlight (change back colour) the entire row i.e both Store and Price when either a particular Store...
  9. Howiee

    Text Box Number format problem

    I have a textbox which basically sums a couple of the other controls on my form. This sum can either be a whole number e.g. 4, a decimal number e.g. 3.75 or it may be 0. I would like the textbox to display nothing if the sum = 0 and the exact number if it doesn't = 0. i.e. it may display 3.75 or...

Part and Inventory Search

Back
Top