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. MarkDicken

    How To Pass A Collection To A FUNCTION ??? (Access 2000) Sample Code

    CajunCenturion, Yes it is supposed to be:- oBO.showcollection(oCollection) Well done on picking up the error I'm basically trying to use MS Access in a DOT NET OO sort of way... ANY IDEAS ??? (other than using a global Collection) EstuardoSierra, Thanks for the Suggestion, your suggestion...
  2. MarkDicken

    How To Pass A Collection To A FUNCTION ??? (Access 2000) Sample Code

    Hi All, I am trying to Pass A Collection To A FUNCTION ??? (Access 2000) I have a Class called BO (for Business Objects) Within BO I have a Function called ShowCollection Public Sub showcollection(colCollection As Collection) MsgBox "colCollection(2)=" & colCollection(2) End...
  3. MarkDicken

    How to change Field Properties using ADOX

    How to change Field Properties using ADOX I am trying to use ADOX to create fields in a Table. I cannot see how to modify the following properties :- * Required (Yes/No) * Unicode Compression (Yes/No) * Allow Zero Length (Yes/No) Thanks In Advance Mark Dicken http://www.MarkDicken.com
  4. MarkDicken

    How do you modify/create field properties in ACCESS using ADO

    How to change Field Properties using ADOX I am trying to use ADOX to create fields in a Table. I cannot see how to modify the following properties :- * Required (Yes/No) * Unicode Compression (Yes/No) * Allow Zero Length (Yes/No) Thanks In Advance Mark Dicken http://www.MarkDicken.com
  5. MarkDicken

    Padding Zero's

    Thankyou - It Helped me Also REF: replicate('0', 10 - len(fieldname)) + fieldname Regards Mark Dicken, England, UK (http://www.MarkDicken.com)
  6. MarkDicken

    How To Create MD Outlook Inbox Rules From Access VBA

    Another good one ... I want to create a number of MS Outlook 2002 Inbox Rules from withn MS Access. Does anyone have some any sample code ??? or can they point me in the right direction ??? Many Thanks In Advance . . . Regards Mark Dicken England, UK
  7. MarkDicken

    How To Export Text File (FAST) With Header Record ... ???

    Larryww (and ALL), Actually this is what I ended up doing. I even did the 1 line table as you suggested, so it would be easier to look at in the future. And to concatinate the 2 Temp files together, I have a read the file(s) in line by line and created the final text file. No need to Blush...
  8. MarkDicken

    How To Export Text File (FAST) With Header Record ... ???

    Hello All, Another good one ... I need to export a table in a defined format to satisfy another system. The problem is that it requires a Header Record. The Import/Export Specification looks like is does not cater for Header Record Requirements. Now I could write the whole thing manually...
  9. MarkDicken

    Looking For SAP R/3 ABAP Certification Exam Test Questions

    For ABAP questions I have used www.SAPDomain.com it does cost a little bit. Regards Mark Dicken England, UK
  10. MarkDicken

    How To Modify Outlook 2002 Security To Allow Access To Send Email

    Phil, I have used ASPMail for a webserver in the past - very good tool from ServerObjects Inc. - I assumed that many people have also had the same problem, but it looks like everyone is being quiet ... :-( - Many Thanks, Mark Dicken, England, UK
  11. MarkDicken

    How To Modify Outlook 2002 Security To Allow Access To Send Email

    Anyone else having these problems ?
  12. MarkDicken

    How To Modify Outlook 2002 Security To Allow Access To Send Email

    I Would Like To Know How To Modify The Outlook 2002 Security To Allow My MS Access 2002 Program To Send Email. I get the following message :- A program is trying to automatically send-email on your behalf. Do you want to allow this? If this is unexpected, it may be a virus and you should...
  13. MarkDicken

    How To Read And Modify Registry Entries Within Access2000

    JFischer, Thanks for the hyperlink, I can read the value and at least be able to pop up a Message Box telling the user that they need to ask their Technical Support Person to Add or Alter a Registry Key. I was using code from 'Dev Ashish & Terry Kreft' already but wanted to Write/Update the...
  14. MarkDicken

    How To Read And Modify Registry Entries Within Access2000

    I need to Check and Possibally Modify the following Registry Key:- HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Text\DisabledExtensions Becuase I need to TransferText (Import) files with a .STA extension. The .STA File Extension is not a reconised Text File Format so I need to Lookup...
  15. MarkDicken

    TransferText / Error 3027 on 3 Lines of Code

    I found the resolution ... Basically I had to add a registery entry of (My File Extension STA) to:- HKEY_LOCAL_MACHINE\Software\Microsoft\Jet\4.0\Engines\Text\DisabledExtensions as explained below from :- http://support.microsoft.com/directory/article.asp?ID=kb;en-us;Q239471 Jet 4.0 Text...
  16. MarkDicken

    TransferText Gives Read Only Error

    I found the resolution ... Basically I had to add a registery entry of (My File Extension STA) to:- HKEY_LOCAL_MACHINE\Software\Microsoft\Jet\4.0\Engines\Text\DisabledExtensions as explained below from :- http://support.microsoft.com/directory/article.asp?ID=kb;en-us;Q239471 Jet 4.0 Text...
  17. MarkDicken

    TransferText / Error 3027 on 3 Lines of Code

    I found the resolution ... Basically I had to add a registery entry of (My File Extension STA) to:- HKEY_LOCAL_MACHINE\Software\Microsoft\Jet\4.0\Engines\Text\DisabledExtensions as explained below from :- http://support.microsoft.com/directory/article.asp?ID=kb;en-us;Q239471 Jet 4.0 Text...
  18. MarkDicken

    TransferText / Error 3027 on 3 Lines of Code

    I found the resolution ... Basically I had to add a registery entry of (My File Extension STA) to:- HKEY_LOCAL_MACHINE\Software\Microsoft\Jet\4.0\Engines\Text\DisabledExtensions as explained below from :- http://support.microsoft.com/directory/article.asp?ID=kb;en-us;Q239471 Jet 4.0 Text...
  19. MarkDicken

    TransferText / Error 3027 on 3 Lines of Code

    I have upgraded Access 2 to 2000 and get the following error Message. Run-time error '3027'; Cannot Update. Database or objects is read only. The code is :- Dim strFile strFile = "c:\import.csv" DoCmd.TransferText acImportDelim, "AA", "tblImport", strFile Anyone...
  20. MarkDicken

    TransferText / Error 3027 on 3 Lines of Code

    I have upgraded Access 2 to 2000 and get the following error Message. Run-time error '3027'; Cannot Update. Database or objects is read only. The code is :- Dim strFile strFile = "c:\import.csv" DoCmd.TransferText acImportDelim, "AA", "tblImport", strFile Anyone...

Part and Inventory Search

Back
Top