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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by WillemdeNie

  1. WillemdeNie

    link table to just created table in backend

    Guys, Great help; it works! Greetings Willem from Holland
  2. WillemdeNie

    link table to just created table in backend

    Yes your explanation is clear. I indeeed would like to append the neew table to my collection of linked tables. Untill now: This what is in the example LinkJetTable "Gemeente", _ "C:\Program Files\Niebotel\SystemNiebotel.mdw", _ CurrentConn I changed it into: conDatabase.Open LinkJetTable...
  3. WillemdeNie

    link table to just created table in backend

    Correct! I do not understand what your question means; but I will try to give you some info: The table has been created (running VBA inthe fromt-end) in the back-end .mdb. I would like to use this table in the front-end .mdb and therefore normally I link the table. Only now I have to do it from...
  4. WillemdeNie

    link table to just created table in backend

    Ok Thanks I am starting to understand I have changed also the second variable into:C:\Program files etc in the name of the database in which is the table. In the example was referred to the workgroup. I assume this is right now It runs fine upto the the last statment in the sub...
  5. WillemdeNie

    link table to just created table in backend

    Hi Roy Hope you do not mind: Compilation error on: LinkJetTable "Gemeente", _ "C:\Program Files\Niebotel\SystemNiebotel.mdw", _ CurrentConn On statement CuttentConn (variable not defined) Willem
  6. WillemdeNie

    link table to just created table in backend

    Hi again; already found the library (I think)
  7. WillemdeNie

    link table to just created table in backend

    Thanks for helping, Little problem left: I get a compilation error on the DIM statements; Userdefined type not defined (or something like that I have translated the message from Dutch). Could it be that I have to include a specific library? Willem
  8. WillemdeNie

    link table to just created table in backend

    I have created a table using this code in the front-end: On Error GoTo Err_ConversieTabellen Dim conDatabase As ADODB.Connection Dim sDBName As String Set conDatabase = New ADODB.Connection conDatabase.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Program...
  9. WillemdeNie

    Visual basic and XSD

    I have to create a communication function in my ACCESS/Visual basic (6)application. I have received some coding from the other party to which I have to communicate with. It consist of a class module, a dll and some schema's which have the extension .XSD. I Imported the class module and did add...
  10. WillemdeNie

    Adding a table field definitions in another mdb via VB

    Jerry, Great help! Tanks again!!! Willem (Netherlands)
  11. WillemdeNie

    Adding a table field definitions in another mdb via VB

    Jerry thanks again, As you probably noticed I'm not that experienced. I hope you donot mind helpoing again. I tried what you wrote but run into new error. This what I created: Dim conDatabase As ADODB.Connection Dim sDBName As String conDatabase.ConnectionString =...
  12. WillemdeNie

    Adding a table field definitions in another mdb via VB

    Hi Jerry, I think you gave me the right answer but I have still a problem with it. This is what I have created: Public Function ConversieTabellen() On Error GoTo Err_ConversieTabellen Dim conDatabase As ADODB.Connection Dim sDBName As String 'Initialize objects & variables. Set...
  13. WillemdeNie

    Adding a table field definitions in another mdb via VB

    I have to add some fields to the definition of a table which is situated in a linked table. I cannot open the other mdb because it is in the backend part of my application and that is of course on the users computer. I want to add some new functions in my front-end, which I then distribute to my...
  14. WillemdeNie

    Can shrink on report does not work

    I have created a report (ACCESS2002) which displays each record on two lines; the first line normal text fields on the second line a memo field. If the memo field is empty a blank line is shown in the report. To prevent this I have set the properties can thrink (and also can grow)of both the...
  15. WillemdeNie

    Breakpoints do not result in stopping anymore

    Thanks, your answer helped me finding the solution. Instead of changing the database properties I changed one of the startup options (Allow Special ACCESS keys) Problem solved!!

Part and Inventory Search

Back
Top