Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Microsoft Office > Access and Access VBA > Access VBA
|
Access VBA Discuss using VBA for Access programming.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Access VBA section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 27th, 2011, 06:32 PM
Registered User
 
Join Date: Nov 2010
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Default How convert projects vb6 to vba access

Please who can help me, I have to create the same project just posted that instead of writing him in vb6 vba access I need written in 2003, because I need it for work and do not measure up

Tanks gerry66

http://myfreefilehosting.com/f/5f748991bb_0.18MB
 
Old June 28th, 2011, 10:18 AM
Friend of Wrox
 
Join Date: Sep 2010
Posts: 245
Thanks: 5
Thanked 24 Times in 23 Posts
Default

Before we can help we need to know your question. What are you having trouble doing?
__________________
Boyd Trimmell aka HiTechCoach (.com)
Microsoft Access MVP Alumni 2010-2015
 
Old July 3rd, 2011, 05:16 PM
Registered User
 
Join Date: Nov 2010
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Default How convert projects vb6 to vba access

Help me please
I need to know how to write VBA code to select
the hard disk of the computer file "TXT" and import it into a table
Access 2003 using VBA, commnon dialog and API'S without using TransfertText.
thanks gerry66
 
Old July 4th, 2011, 01:01 AM
Friend of Wrox
 
Join Date: Sep 2010
Posts: 245
Thanks: 5
Thanked 24 Times in 23 Posts
Default

See: Call the standard Windows File Open/Save dialog box


Here is the basic of reading a text file:

Code:
Dim FH As Integer

Dim strData As String

FH = FreeFile

Open "C:\mydata.txt" For Input As #FH

Do Until EOF(FH)

    Line Input #FH, strData

Loop

Close #FH
__________________
Boyd Trimmell aka HiTechCoach (.com)
Microsoft Access MVP Alumni 2010-2015





Similar Threads
Thread Thread Starter Forum Replies Last Post
Browsed web projects don't appear in recent projects list? Ron Howerton Visual Studio 2008 0 June 23rd, 2010 12:52 PM
Convert VBA Add-in to .DLL neodjandre VB How-To 0 October 27th, 2008 01:23 PM
opening VBA project in VB6 joseph1 VB How-To 0 July 8th, 2006 08:25 AM
Convert xls for vba state VB How-To 1 September 30th, 2004 06:29 AM
Access Projects VBAHole22 Forum and Wrox.com Feedback 0 June 4th, 2003 08:39 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.