Click here to Skip to main content
15,891,316 members
Articles / Programming Languages / Visual Basic
Article

MS Access: Pass Variable Values From One Form to Another

Rate me:
Please Sign up or sign in to vote.
3.33/5 (10 votes)
5 Nov 20052 min read 197.7K   959   21   11
The function helps you to pass multiple variable values from one form to another.

Introduction

A few days back, I was creating a small prototype for my project using MS Access. I was required to pass values to other forms. I searched everywhere to find out a way to pass values but couldn't succeed. The only hint I got was using Me.OpenArgs argument variable it is possible to pass values across forms.

Example of passing a single variable using the Me.OpenArgs argument

To pass the value "2" from a form frmOne to frmTwo, we use the following code:

VB
DoCmd.OpenForm "frmTwo", acNormal, , , , acWindowNormal, "2"

In the PageLoad event of frmTwo, we can get this value using the following code:

VB
Dim i as Integer
i = CInt(Me.OpenArgs)

The problem with this simple method is that we can pass only one value at a time. If we want to pass more values, we must have some kind of a delimiter and make a string of all values, but it requires the arguments to be passed in a specific order.

Solution

I wrote a small function that extracts values from the passed value string without requiring the values to be passed in a particular order.

This function requires that we pass values in a format like "Var1=Val1:Var2=Val2". Here each value passed will have a corresponding variable name and the variable name/value pair will be delimited by ":". The function will split the argument using the delimiter and extract the value of a particular variable. The code for the function is given below:

VB
Public Function GetTagFromArg(ByVal OpenArgs As String, _
                               ByVal Tag As String) As String
    Dim strArgument() As String
    strArgument = Split(OpenArgs, ":")
    Dim i As Integer
    For i = 0 To UBound(strArgument)
     If InStr(strArgument(i), Tag) And _
                 InStr(strArgument(i), "=") > 0 Then
       GetTagFromArg = Mid$(strArgument(i), _
                        InStr(strArgument(i), "=") + 1)
       Exit Function
     End If
   Next
   GetTagFromArg = ""
End Function

Now to pass the value "2" from form frmOne to frmTwo we need to write the following code:

VB
DoCmd.OpenForm "frmTwo", acNormal, , , , acWindowNormal, "Count=2"

and in frmTwo we can get the value in the FormLoad event:

VB
Dim i as Integer
i = CInt(GetTagFromArg(Me.OpenArgs, "Count" ))

Using this trick, we can pass any number of values and the order of the values is not important.

Conclusion

This is an extremely simple method that came to my mind at that time. If you have any better solution, please let me know.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
For more info visit http://www.vishalon.net

Comments and Discussions

 
GeneralAlternate method for passing variables between forms Pin
PaulTKH28-Apr-11 7:24
PaulTKH28-Apr-11 7:24 
GeneralThis is pretty good but could be better... Pin
slingshot32211-Mar-11 4:57
slingshot32211-Mar-11 4:57 
GeneralMy vote of 5 Pin
bitcom29-Jun-10 1:25
bitcom29-Jun-10 1:25 
QuestionForm with 3 reports Pin
jbdigit11-Dec-08 20:41
jbdigit11-Dec-08 20:41 
GeneralPassing Values from one form to Another using c#.net Pin
kotrasubba11-Aug-08 19:07
kotrasubba11-Aug-08 19:07 
GeneralRe: Passing Values from one form to Another using c#.net Pin
Savitha.S.S27-Oct-08 6:09
Savitha.S.S27-Oct-08 6:09 
Generalset global variables Pin
uplam25-Sep-07 11:02
uplam25-Sep-07 11:02 
Questionrequire urgent solution Pin
vishal_18in5-Jan-07 0:41
vishal_18in5-Jan-07 0:41 
Questionpassing other data types Pin
bobo_t27-Oct-06 14:50
bobo_t27-Oct-06 14:50 
Questionretrieving variable values Pin
himmelaufer20-Sep-06 11:21
himmelaufer20-Sep-06 11:21 
AnswerRe: retrieving variable values Pin
Vishal Monpara21-Sep-06 6:55
Vishal Monpara21-Sep-06 6:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.