User Profile

Collapse

Profile Sidebar

Collapse
cPmod
cPmod
Last Activity: Sep 1 '15, 09:01 PM
Joined: Aug 29 '15
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Ah, now I understand your idea a bit better.
    Yes, that is definitely much more effective. I will definitively give that a try.
    Thank you very much for sharing.
    See more | Go to post

    Leave a comment:


  • Well, the table content in the subform changes due to code based filter option, and therefore I wanted a bulletproof solution that only the visible content is changed.

    To be honest, I did not fully trust the update query option and it takes more effort, if some things change afterwards (lets say additionally filtered column in the subform, needs to be inserted as well in the query to show the same results...)

    But it is a...
    See more | Go to post

    Leave a comment:


  • Okay, it took me ages, but I finally solved it.
    For all those who are interested, follows the complete code:
    Code:
        Dim dbTintendatenbank As Object
        Dim rstTintendatenbank As Object
        Dim fldEnumerator As Object
        Dim fldColumns As Object
        Dim strBatch As String
        Dim intCount As Integer
        Dim strMaxtabcount As Integer
        Dim strCounter As Integer
    ...
    See more | Go to post

    Leave a comment:


  • cPmod
    replied to Import multible text files into Access table
    Hi Mike,

    As far as I understood you simply want to process all text files in one directory or something like that processed, right?

    Following code (it is excel vba, my apologies) did this job for me (I know it is probably a bit dirty coding but it worked like a charm converting a lot of pdf files to txt).

    Code:
        Dim i As Integer
        strTXT As String
        Dim FSO As Object, objSFold As
    ...
    See more | Go to post

    Leave a comment:


  • Alright, I got a codesnippet that might help solving this problem:

    Code:
        Dim dbTintendatenbank As Object
        Dim rstTintendatenbank As Object
        Dim fldEnumerator As Object
        Dim fldColumns As Object
        Dim strMatch As String
        Set dbTintendatenbank = CurrentDb
        Set rstTintendatenbank = dbTintendatenbank.OpenRecordset("Table1")
        Set fldColumns = rstTintendatenbank.Fields
    ...
    See more | Go to post

    Leave a comment:


  • cPmod
    started a topic Filtered Subform - Update specific Column value

    Filtered Subform - Update specific Column value

    Hi there,

    I am really struggling with one particular problem regarding data manipulation of filtered subforms and I hope you can help me out.

    The form includes a subform that contains filtered content.

    Example for this table is attached.

    Where [Column2] is a checkbox (with Boolean "True").
    Now what I want to do is to change the filtered content of [column2] to "false"...
    See more | Go to post
No activity results to display
Show More
Working...