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 SkipVought 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. peachmelba

    Subform Data

    Try something like With Me![SubformName].Form .Visible = (.RecordsetClone.RecordCount > 0) End With Regards Peachmelba
  2. peachmelba

    Tick Box

    Phil The NOT() statement reverse what the value is. Simply remove that and it should work how you want. Regs Peachmelba
  3. peachmelba

    Option Group Question

    Fabby1 No I dont think it is possible. I would just use individual check boxes or a list box which allows multiple selection. Regs Peachmelba
  4. peachmelba

    Code Username and Password

    AW23 Try using DBEngine.Workspaces(0).Users() This will then let you add, change or set the password. Regs Peachmelba
  5. peachmelba

    Memo

    AW23 I assume when you mean a MEmo you mean a field of type Memo. If so then this simply uses a normal text box which can be expanded out. There is no special Memo box on the tool bar. Regards Peachmelba
  6. peachmelba

    Tick Box

    Phil I would do something like this Me.Combo0.Visible = Not (Me.Check2.Value) Regs Peachmelba
  7. peachmelba

    Generating outlook distribution lists through A2k

    I found this which might help Public Function GetContact() Dim olApp As Outlook.Application Dim contacts As Outlook.MAPIFolder Dim listContact As Outlook.Recipient Dim distList As Outlook.DistListItem Dim i As Integer Set olApp = New Outlook.Application Set contacts =...
  8. peachmelba

    Import contacts in a distribution list

    Try modify this Public Function GetContact() Dim olApp As Outlook.Application Dim contacts As Outlook.MAPIFolder Dim listContact As Outlook.Recipient Dim distList As Outlook.DistListItem Dim i As Integer Set olApp = New Outlook.Application Set contacts =...
  9. peachmelba

    Replicating data from one location to another

    I have a customer who wanted a very similar thing. One site in the south of the Uk and another in the north. Linked together with a 500k pipe. Looked at replication and sycronization. Very messy and a real pig to look after. Solution I went for was to use Microsft Server 2000 Terminal...
  10. peachmelba

    Forms date format error

    Cheers guys Used both of the info you gave me and it worked!!!! Yeah I hate dates as well. Thanks Peachmelba
  11. peachmelba

    Forms date format error

    Tony I have put it in the BeforeUpdate event. Peachmelba
  12. peachmelba

    Forms date format error

    Yeah tried cutting up the value into left(mydate,2) & "/" & mid(mydate,4,2) & "/" & right(mydate,2) which should give me 31/06/04. But gives me 04/06/31. So it obviously is changed as soon as it is entered! Any other ideas? Peachmelba
  13. peachmelba

    Forms date format error

    Can anyone help with this. I have a field on a form which is a short date (dd/mm/yy) format. When I input 31/06/04 there is a check on the value to make sure it is a date using Isdate funstion. This returns true as it thinks that the date is actually 04/06/31. I can't think of a way to sort...
  14. peachmelba

    Missing commas in a CSV file

    Craig Thanks but that is the problem. I need to read in one cell at a time hence why I am using 'Input' rather than 'Line Input'. The problem is with the number of commas which is not consistent. Excel seems to drop commas after about 10 rows. This means that the first ten rows have 21 commas...
  15. peachmelba

    Missing commas in a CSV file

    I have a file that I have created in Excel which has 21 columns. This is saved as a CSV file. I then import this file into Access using the following Set rs = db.OpenRecordset(strTableName) Do While Not EOF(1) i = 0 rs.AddNew Do Until i = intNoImportFields...
  16. peachmelba

    Missing References

    Try here for the files you want http://msdn.microsoft.com/library/default.asp?url=/downloads/list/dataaccess.asp Files contained in MDAC 2.8 are on http://support.microsoft.com/?kbid=828396 Regs Peachmelba
  17. peachmelba

    Corrupt Database

    Jim Any luck with the database?? Would be interested in how you got this one solved. Peachmelba
  18. peachmelba

    Corrupt Database

    Jim The best solution is using the Jetcomp.exe which is usually stored in the windows\system32 folder. If not download the latest from Microsoft. This is a useful tool for repairing any database. Try on a copy first. Quite straight forward to use. Good luck. Peachmelba
  19. peachmelba

    Relinking

    Rookiedev This is usually because one of the tables it is looking for to relink does not exist in the data database. When this happends I usually delete all the link tables and relink them all. Much quicker that way. Peachmelba
  20. peachmelba

    Pivot Table Formating

    Alan Thanks for the response but that does not work. I think it is something to do with the pvtTable.DataBodyRange but i have not yet looked into this. Regs Peachmelba

Part and Inventory Search

Back
Top