L
Louis Bourbeau
Hi,
I have a Access 2000 application that I want to transfer to Visual Basic
..Net. I was wondering how I could take my Access 2000 forms, modules and
reports and "migrate" them toward Visual Basic .Net forms, modules and
reports.
Is there a utility built-in access that can help me? Or maybe in Visual
Basic? Otherwise, I've been fiddling with Access2000 to get all the forms
contained in Access2K project. So far, I've managed to get the name of form
but afterward I need to get the information within the form more accuratly
the properties of the form and every element in it ( stuff like a button,
textbox,...).
Here's my code :
Function GetForm()
Dim obj As AccessObject
Dim objApp As Object
Set objApp = Application.CurrentProject
For Each obj In objApp.AllForms
msgbox obj.Name
Next obj
End Function
Thanks....
L. Bourbeau
I have a Access 2000 application that I want to transfer to Visual Basic
..Net. I was wondering how I could take my Access 2000 forms, modules and
reports and "migrate" them toward Visual Basic .Net forms, modules and
reports.
Is there a utility built-in access that can help me? Or maybe in Visual
Basic? Otherwise, I've been fiddling with Access2000 to get all the forms
contained in Access2K project. So far, I've managed to get the name of form
but afterward I need to get the information within the form more accuratly
the properties of the form and every element in it ( stuff like a button,
textbox,...).
Here's my code :
Function GetForm()
Dim obj As AccessObject
Dim objApp As Object
Set objApp = Application.CurrentProject
For Each obj In objApp.AllForms
msgbox obj.Name
Next obj
End Function
Thanks....
L. Bourbeau