Search results

  1. V

    SharePoint Linked table with issues in people field type

    Hi, First of all, let me put you on context. I have 2 SharePoints: The Master SharePoint from whom I can only read data, and an owned SharePoint into which I have total control. What I have to do, is to read some entries from a list on the Master SP with an Access database, process it some how...
  2. V

    Show recordset in unbound subform

    Hi, I think that I'm stuck in a glass of water, but I've been trying to do this for a couple of hours with no results. Maybe you can help me as I'm not an experienced VBA programmer. I'm trying to show the data retrieved in an ADO recordset, in an unbound subform. I do this to get the data in...
  3. V

    VBA generated excel file does not save Modules

    Hey Alisa, The security settings are set to allow this. I have the "Enable all macros" option chosen, and the "Trust Access to the VBA project object model" option checked, both on Excel 2007. Should I set other options in Access or Excel? Remember that everything works fine when the file...
  4. V

    VBA generated excel file does not save Modules

    Hi all, I have an issue with an Excel file that I'm generating through a VBA code in Access. I generate a report of some data that is in Access 2007, on an Excel file and add a "processing view" button to do some operations. To add that button, I add a module to the Excel file in this way...
  5. V

    Access VBA Creates an Excel with built-in Macro

    Done, The first thing is to write the macro as if it were writen for an Excel VBA module, and save it as a *.bas file This should go on the excel creation file 'Add the view button appExcel.ActiveSheet.Buttons.Add(520, 110, 130, 25).Select...
  6. V

    Access VBA Creates an Excel with built-in Macro

    Thanks DCrake, I think that is the shortest and easiest solution. Sadly I can't do it because the process can't change that much; I can only modify the excel creation macro to adapt it to the way I want. Thanks a lot anyways. Does anybody knows another way of doing it?
  7. V

    Access VBA Creates an Excel with built-in Macro

    Hi all, I've recently developed an Access 2007 application, that creates a report in an Excel Sheet. Now I need to put a button in that sheet to switch from one view with certain columns, to another one with other visible columns. I have the view switching code writen in excel, and I can...
  8. V

    SharePoint linked table - Integration rule violation

    Hey, good news! After the last time I wrote you, I tyied another thing that worked. What I tryied last time was to relink the SharePoint list. That did not work. But then I tryed deleting the list from my Access DB, and linking the list again, and suddenly IT WORKED! It is not working as...
  9. V

    SharePoint linked table - Integration rule violation

    To add a linked table from SharePoint to a database in Access 2007 you only need to select your datasource. No ODBC connections need to be created. I've also tryed unlinking and then linking the list again, but I always get the same message when trying to write on it from and Access query...
  10. V

    SharePoint linked table - Integration rule violation

    Hey, thanks for the advise. I've already tested that. No length nor required, nor data type errors... Just that my SharePoint linked table seems not to be allowing me to enter data from Access. The text that you're quoting is from a text that I made with just 4 records. That's why I get the...
  11. V

    SharePoint linked table - Integration rule violation

    Yes, some setting is violated. That's the point. Now I need to know how to do not to violate it. I dont quite understand what you're saying about the zero length field. I'm not inserting nulls nor blanks in any field of any record, I've already tested that. The thing is that no record is added...
  12. V

    SharePoint linked table - Integration rule violation

    Hi all, I'm very concerned about the error message I'm getting, because it seems to simple but yet I haven't been able to solve it.... What I'm trying to do is to make an Access file, that is going to be used by many people, that gets some accounts information (basic info as name, group and...
  13. V

    PHP help

    Try the PHP home page. I know other PHP Forums but they're in spanish... sorry. just in case: www.mygnet.com (in spanish in case you speak spanish) I've used other in English that could help you better: www.phpfreaks.com/
  14. V

    SharePoint linked table - Integration rule violation

    Hi all, I'm very concerned about the error message I'm getting, because it seems to simple but yet I haven't been able to solve it.... What I'm trying to do is to make an Access file, that is going to be used by many people, that gets some accounts information (basic info as name, group and...
  15. V

    Insert a Row in an Excel Object

    Double-checking it, I managed to resolve the issue.... well they were many: first of all, the paste lines repeated the "ActiveSheet" property. The insertion rows don't need the "ActiveSheet" property either. The "Shift" and "CopyOrigin" Methods are allowed in the insert row. For pasting a...
  16. V

    Insert a Row in an Excel Object

    Hey, I've tryed to insert a row in an excel sheet that I filled through an Access Table. Everything is ok with it, but when I try to use the generated code after recording a row insertion in excel, I get the following message: Object doesn't support property or method My code is the...
  17. V

    Attaching a file if conditions are met

    man it certainly resolved my issue now that I know more about the structure and the use of the attachments fields.... Good page the one which from you got the code. Thanks again!!!
  18. V

    Attaching a file if conditions are met

    Thanks mate, I think it will suit what I need.
  19. V

    Attaching a file if conditions are met

    I think that you got the idea and I think that the code you wrote might help..... The only problem is that I don't get it enterely. What's the purpose of creating those 2 recordsets? I paste an example of how I go through the list. Dim i As Integer For i = 0 To...
  20. V

    Attaching a file if conditions are met

    Hi, I'm trying to do something that may not make sense at first sight, but it has, haha. I have a List Box in a form, that serves as an attachments list of an item. I managed to make it record the complete filepath of the files that I want to attach to a mail that is being sent by the form...
Back
Top Bottom