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 TouchToneTommy 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: gremlins
  • Content: Threads
  • Order by date
  1. gremlins

    Copy and Paste cells in excel using Internet Explorer

    I have an excel spreadsheet that I upload on to a web page and so most of my users view the excel sheet through internet explorer. There is a macro in the sheet that laets you type a name into a cell ("Query Sheet").Cells(2, 3) and then it goes and finds all instance of that name in the data...
  2. gremlins

    template userform

    Is there any way to create a template userform that can be used in different databases, so that when the template is updated all the other forms are automatically updated as well? I have a master database which is surrounded by another 10 databases that reference it. This is mainly due to size...
  3. gremlins

    altering table fieldname using sql

    I have an access query that makes a table. One of the fields is selective using the following code: future_date: IIf([TERMINATION_DATE]>Now()+3,"",[TERMINATION_DATE]) which basically returns blank if a date in the TERMINATION_DATE field is greater than 3 days in advance of today. I did want...
  4. gremlins

    format word table exported from excel

    I have some excel vba that produces different types of reports from a form. One of the options is to export the data to word. In order to do this I copy the part of the spreadsheet and paste it into word using the following code: Set wordobj = CreateObject("Word.Application") With...
  5. gremlins

    entering number changes to 100th of value

    Whenever I enter a number into excel, it is converting it to 1 hundredth of the value. So I enter 2 and it puts 0.002 in the cell. It's been doing this for a while now and I can't seem to get rid of it. I have looked at what the cells are formatted as but it's just general. It does this at...
  6. gremlins

    More than 2 criteria on an autofilter

    How do I filter in vba on more than 2 criteria? I have a list within a worksheet that populates the first column of cells and can be anything from a single value to 16 values. I need to filter a seperate worksheet with these values. It currently looks a bit like: selection.autofilter...
  7. gremlins

    AutoFilter Criteria in Excel

    Is there any way I can perform a filter on a date value in a column of cells with reference to today's date? For instance, if I wanted to filter on just today's date I could write: strSearchDate = Date Selection.AutoFilter Field:=17, Criteria1:=strSearchDate but what I want to filter on is...
  8. gremlins

    Converting PDF file with Acrobat 6 Pro

    I'm trying to convert a PDF to a word document so that I can edit it and then create the PDF again. Whenever I try to save the document into a different format I get the error message: "Bad PDF; could not read page strucutre (bad page contents).[1]" I have tried to save it into a number of...
  9. gremlins

    Using VSS to edit Access Forms (newbie question)

    I have recently installed visual source safe in order to maintain a database for my work. We can upload the entire database into vss but we want to be able to amend only the forms etc. I spoke to microsoft and they advised we need the office 2000 developers edition to be able to drill down to...
  10. gremlins

    forms showing graphs

    I have a piece of code that generates a graph on the basis of values it works out from a form that is manipulated over the worksheet. I want to show this graph on the form itself. I have tried using textboxes, lables and images with the following sort of code: image1.picture = activechart...
  11. gremlins

    combobox list filtering

    I have built a userform that has combox lists in it. The first list uses the row source to look for it's values in the first sheet. I then want to filter what shows in the second box on the basis of what is selected in the first one. So column A in the worksheet list something along the lines...
  12. gremlins

    Winrunner Demo Software

    Can anyone tell me if there is a free trial of Winrunner anywhere? I have trawled through the net but can't find any samples of it
  13. gremlins

    Hard Drive Revert to Basic

    I have been trying to partition my 2nd hard drive but can't get it to change from a dynamic one to a basic one. I am running on Win2K and the microsoft support website says I need to do this. I have gone through the usual admin tools - comp management - disk management route but when I right...

Part and Inventory Search

Back
Top