• WSkwvh

    WSkwvh

    @wskwvh

    Viewing 15 replies - 1 through 15 (of 432 total)
    Author
    Replies
    • in reply to: XML Primer for Access neophyte #1297783

      Patt and John,

      THANKS! ! ! Yes, you are able to “Add” multiple tables into the same XML file. Very sweet. I seem to always look for and find the hard way of doing things. That is why this is such a great place!

      Thanks to both of you.

      Ken

    • in reply to: XML Primer for Access neophyte #1297713

      John,

      I have read the kewl File info, and have started playing with the code. However, I need to dim the intOutFile. What type of variable should it be?

      thanks!

      Ken

    • in reply to: XML Primer for Access neophyte #1297688

      I use the ExportXML command in VBA to create the two files. Is there a way to find a specific line in a text file using the File Input/Output you mention? If so, I could create the large xml file of data using the ExportXML, and then just insert the necessary 6 lines below into that file. But that assumes I can move around within the text file.

      Code:
      
      20110912
      D_F110912
      8630
      v2.3
      
      

      I will read the File I/O link and see what shakes.

      Thanks!
      Ken

    • in reply to: Copying files from FTP location via VBA #1297233

      Bender,

      thanks. will try to get it to run in VB.NET, which I am brand new to.

      Ken

    • in reply to: Copying files from FTP location via VBA #1297223

      Boyd,
      THANKS ! ! What an excellent tool! I will give it a shot. It looks really well done.

      Ken

    • in reply to: Copying files from FTP location via VBA #1296897

      Thanks for the information. I will research the third party libraries and see what works.
      Thanks!

    • in reply to: VBA Pivot Table? (2003) with a twist #1232345

      Rory,

      Thanks for your help. ย I don’t know what I would do without help from the experts on the boards.

      I will post when I figure it out the final disposition. ย 

      Ken

    • in reply to: VBA Pivot Table? (2003) with a twist #1231914

      Actually, this is an Access database that creates the spreadsheet, then via VBA creates the pivot table. ย So initially, there is only the tab with the data, and the pivot table gets created to an added sheet/tab.

    • in reply to: VBA Pivot Table? (2003) with a twist #1231875

      Rory,

      Thanks for asking. ย The values for Final Row and FinalCol are 85 and 28 respectively.

      Ken

    • in reply to: Change Field name in Table with VBA #1207212

      Wendell,

      Thanks for the note. ย I am just trying to “clean up” some inconsistent naming conventions in a some Access tables prior to upsizing the tables to SQL Server. ย I will be creating queries, forms, reports and SQL views once moved to SQL Server.

      Thanks for continuing to serve us neophytes by sharing your knowledge.

      Kenย 

    • in reply to: Change Field name in Table with VBA #1206983

      Awesome Andrew! ย I am going to use the loop through the fields approach.ย 

      THANKS!

      Ken

    • in reply to: Checking for compiled version in VBA #1206736

      Thanks! ย Using your suggestion I came up with:

      Dim strPath As String

      strPath = Application.CurrentDb.Name
      If UCase(Right(strPath, 3)) = “MDB” Then
      ย  ย  ย MsgBox “This is an MDB.”
      ย  ย  ย Else
      ย  ย  ย If UCase(Right(strPath, 3)) = “MDE” Thenย 
      ย  ย  ย  ย  ย MsgBox “This is an MDE.”
      ย  ย  ย Else
      ย  ย  ย  ย  ย  MsgBox “Unknown Database Format”
      ย  ย  ย End If
      End If

      And it accomplished my goal.

      Thanks again!

      Ken

    • in reply to: “Function is not available . . . in query” #1199942

      Wendell,

      Thanks for the followup. ย Yes, there is VBA Code. ย  I have 7 references in the VBA project, and all appear to be there. ย For the sake of expediency I added a module in VB to update the field using the ‘Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’ and looping through the recordset.ย 

      Very strange. ย FYI I am using Access 2003 SP3.

      Thanks again.

      Ken

    • in reply to: “Function is not available . . . in query” #1200698

      Wendell,

      Thanks for the followup. ย Yes, there is VBA Code. ย  I have 7 references in the VBA project, and all appear to be there. ย For the sake of expediency I added a module in VB to update the field using the ‘Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’ and looping through the recordset.ย 

      Very strange. ย FYI I am using Access 2003 SP3.

      Thanks again.

      Ken

    • in reply to: “Function is not available . . . in query” #1201617

      Wendell,

      Thanks for the followup. ย Yes, there is VBA Code. ย  I have 7 references in the VBA project, and all appear to be there. ย For the sake of expediency I added a module in VB to update the field using the ‘Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’ and looping through the recordset.ย 

      Very strange. ย FYI I am using Access 2003 SP3.

      Thanks again.

      Ken

    Viewing 15 replies - 1 through 15 (of 432 total)