Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




Call Data To Combobox Using SQL From Access


I would like to list out data from my table in Access into my combobox without using ADODB connection. Is it possible for me to do that ? At the moment i tried using SQL query but i could not list out the data in my ComboBox.

Below are my codes. Any advise or assistance would be very much appreciated.

Private Sub form1_load()

Dim rs As Recordset
Set rs = New Recordset
Dim StrSQL As String

StrSQL = "SELECT [ID] from test"
Set db = OpenDatabase(App.Path & "db1.MDB")
Set rs = db.OpenRecordset("SELECT * from [test]")

If Not rs.EOF And Not rs.BOF Then
rs.MoveFirst
Do While rs.EOF
Combo1.List rs!ID
Combo1.AddItem(Combo1.ListCount) = rs!test
rs.MoveNext
Loop
End If
Set rs = Nothing
End Sub

Thank you.




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
How To Call Data (access) Using Combobox
hi all..i have one question..
can anyone give me the simple code how to call data from Access using combobox..

Thanks in advance

Using An SQL String To Call Data From Access Database Into VisualBasic DataGrid???..n
the Situtaion:.. I am using an access database that holds dates as strings. example( 06252004 ). I am trying to use an sql string to search everything that is selected from that database table, for dates specified as a start date and end date, which are specified by the user. The results should be placed on a datagrid.

All my sql attempts have failed.


Can anyone help me peice one together, in an SQL string format, that will work in VB and be accepted by access when vb passes it to it?

Data Access Using ADO And Combobox Speed
I am using VB6 and have an Access Database (using ADO) with a table that has 6000 names. I want to create a Combo Box object so that when the progam starts all surnames are put into memory in an invisible Combo Box during the splash screen loading sequence.

Then when I need to display the combo box I can just use Combo1.Show command and the Combo Box can be used for that particular form without having to reload all the Surnames into the Combo box everytime a form loads up and needs that Surname Combobox.

Please help me as I am tearing my hear out. Thanks.

DATA ACCESS TO COMBOBOX FROM A TABLE
HI,
I designed a form where I have a combobox, in which I want to access a
column of a table. I am using ADOBD connection and connecting database
through a udl file.
Can anybody help me.
--
WITH REGARDS:
VIVEK RAJ

I Want To Take Data From A Combobox And Write To Access
hello everyone, i have a small problem that i'm sure most of you can help me with. I have a combobox that the user can enter new data in the text area. I know how to add the new entry to the combobox but how do i take the new data and write it to the file that populates the combobox so that next time it shows up in the combobox? Any help would be appreciated. Thanks much, bob mx125 #249

Insert Data Into Access Using Combobox And List Box
rs.Open "INSERT INTO BookReturnTable(Book-ID, Student-ID, ReturnDate, Status, Fine, AmountPaid)Values ('" & TxtBookId1 & "', '" & Text1 & "', '" & Text2 & "' , '" & x & "', '" & TxtTitle & "', '" & TxtAuthor & "')", cn

I'm using such statement to insert the data but no idea in inserting the data using list box and combo box...Need some guidance as well as some example...Thank you

Combobox Listing Access Database Data?
I keep getting a Run-time error '94'
Invalid use of a Null
highlight is on line SALES.AddItem rst.Fields(1)

I'm trying to make my SALES combo box's line items equal to each salesperson's name in each row under the one column entitled SALESPERSON in the .mdb database! Here's the code I'm using.


Code:
Private Sub sales_people()
Set cnn = New ADODB.Connection
cnn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & SERVER & "disp-1_be.mdb;Persist Security Info=False"
cnn.Open
Set rst = New ADODB.Recordset
rst.Open "salesperson", cnn
rst.MoveFirst
Do Until rst.EOF
SALES.AddItem rst.Fields(1)
rst.MoveNext
Loop
rst.Close
Set rst = Nothing
End Sub


Please help. THanks!

Stephen

Displaying Data From An Access DB Table Into A Combobox
I have an Access DB with a few tables.
One's called tblTech with about 5 names in it.

In VB.NET I have a form and one of the objects is a combobox named comboTech.
When I debug the form and run it I'd like the comboTech combobox to display the names from the tblTech table in a dropdown list.


Data Connections (Solutions Explorer)
ACCESS.c:...DatabaseDatabase.mdb.Admin I can expand the tree of this DB in Solution Explorer and see my tblTech and the names in it.

Also...
When I created this connection... under the provider tab I selected "Microsoft Jet 4.0 OLE DB Provider"

Need Help..COMBOBOX Instead Of DATA Command...n Link With ACCESS File
1. I am using VB 6.0. I have a customer database. I have created a program using DATA command from the toolbar (and linked it with Access file) such that when i select the customer code ...the whole info of that customer appears in the respective text box.

But here i want to use Combo Box instead of DATA command so that i can select the customer code form the pull down menu of the combo box.

How can i do this....NEED HELP....????


2. Also i gAve the link of DATA command to an ACCESS file (.mdb) but when i run my program on some other computer.....the program gives error asking for the same location for the Ascess file which was on the first system. How to rectify this....

because i need to create the programs and send it to somebody ......... the other person may copy the folder (containing program file and the Access file) on any drive may be C:,D:,E:,.....
please help...

thanks....

Update A Combobox When Add New Data In A Table In Access Aplication
I have a access aplication. In a form i have a combobox with display the data from a user's table. i can add in to the user's table without problem with a comand button open a form to register data to user's table but the trouble is the combobox don't update without close and open the form. I know exist different way to do this update, but i search a easy way to do that.


I find a code in other page, but the problem is i'm a newbie using ADO, DAO, and that solution used this aplication.

Only i need what code to use in the on notalist event of the form.

If need more information to understand what I need please only say me.

COMBOBOX && API Call...
Hi,

Got a very strange problem...the combobox I am using doesn't recognise the click event or change event...

I suspect that its because I am using API call for auto complete the text in it...and also to show the DROPDOWN...

Does any one has this kinda problem b4...??? I will post the code here when I go back to home from uni...

Cheers...

Open Combobox Call?
Hi there

I want a Combobox in my program to open (to view the list) at some events.
Is there a way to let the Box pop up?

RESOLVED!!!! How To Make Needed Data Appear Through Clicking Data On Combobox?
i've seen a lot of these before, when you click on a combobox... the data appears on certain textboxes... but the prob is... i have no idea how do i do this...

will someone please give me an idea how?

tnx.



Edited by - newbie2005 on 2/20/2005 8:12:32 PM

Call MS Access Query From VB6
Hi,

Could someone give me example how to call the MS Access query from VB6? I just want to execute it. Those queries may be a "Make Table Query" or "Update table query" or "Append Query".

I knew that I can just build the SQL statement in the vb code to do the same thing. But some of those are very long and complex, if I can just call them from VB6 and that will be a lot easier.

Also, If the back-end db is MS Access MDB, how can I prevent someone just open the MDB file and messed around when they have the MS Access installed and only allow the users to touch the data through the VB6 application.


Thanks!

Help To Call Query Fo Access In Vb6.0
Dear friends

Plz explain to me that how can i call query created in access in vb 6.0 using adodb references.


Thanks in advance

Shivpreet2k1

How To Call Access Reports In VB
Hi,

I want to call Access Reports in VB. The Reports developed in Access can be called in VB. But I don't know how to do it.

Plz help me.

Regards...
- Charansing

SQL Server With Access In The Same SQL Call ???
I have a SQL Server database with a table called My_Data.

I also have an Access database with a table called My_Data.

My question is :

Can I construct a SQL statement using BOTH Acess and SQL Server table/column names in the same statement?

For example, I want to INSERT INTO the SQL Server table with the rows from the Access table.

What would my statement look like that allow BOTH Access and SQL Server to do the insert ???


I am lost in syntax world, so any help is appreciated !!!

Can VB Call An Access Report?????????
My database is in Access, so can my vb program call an Access report??????? If it's possible, how is it done? Someone help me purrleease..........

How To Call A Report In Access Through VB
Dear friends,
i have to call Access-2000 Report from VB 6. so please help me ideas or
source code,
Thanks in advance
syed

--
S.M. Syed Sherfudeen
National Informatics Centre,
Scientific Technical 'B',
'C' Wing, Basement,
Vindhyachal Bhavan,
Bhopal.
Madhya Pradesh.
Ph. off. 0755-2551265 ext. 112

Best Way To Call Access 97 Reports In Vb???
whats an easy way to call reports in VB from Access? I need to call an Invoice Report with the parameter of the Order Number passed to it. any help or suggestions would be much appreciated, thanks.

How To Call Access Report From Vb
Hi! All

How can i call/run access report from vb 6.0 with out install access / office software. Anyone who knows it could me guide regarding on it

bye

Call Report Of Access To Vb6.0
hi
please any one can tell that how can i call report created in MS access 2000 to VB 6.0.

Call Access Macro
I have an Access macro that I would like to call from a VB program (most likely through a command button). Is this possible? If so, any ideas on how I would go about this? Thanks in advance for any advice you might have.

Call An Access Report To VB
How to call an access report into my VB 6.0 project. I prefer to make my reports using Access but I do not know how to retreive them for the user to view. The main Data Source is the same database the reports are located in.

Please Help Call Data To Treeview
HI
I am calling data to treeview, but if is 2 record with same name I can only selelt 1 record
so I need to call ID and name

can som show me how I can fix this



On Error Resume Next
Dim nodType As Node
Dim intTypeKey As Integer
Dim rsTypeChild As ADODB.Recordset
Dim myTypeKey As String
strSQL = "Select * From verk Where stađa = 'Verk í Vinnslu' "
Set rsType = New ADODB.Recordset
rsType.Open strSQL, conTree, adOpenStatic, adLockOptimistic

Dim i As Long
With tvwAM.Nodes
.Clear
For i = 1 To rsType.RecordCount
Set mNode = .Add(, , , rsType.Fields!stađur, 2)
rsType.MoveNext
Next i
End With
rsType.MoveFirst
lblRecCount = rsType.RecordCount & " Fćrslur"

VB Data Types To Call C DLL
Hello everyone and thank you in advance for any help,

I am pretty much a novice VB programmer and what I am trying to do seems so simple. I have a C DLL that uses the standard calling convention and is already built. There are 2 functions in this DLL that I want to call from VB6. They are defined in the header file as:

USER_FUNC imgSessionSerialWrite(SESSION_ID sid, Int8 *buffer, uInt32 *bufSize, uInt32 timeout);
USER_FUNC imgSessionSerialRead(SESSION_ID sid, Int8 *buffer, uInt32 *bufSize, uInt32 timeout);

I tried calling these from inside VB but I am not getting the expected results out of the serial port. The write sends out all kinds of random characters and returns an error of "NI-IMAQ: The serial write operation could not execute within the specified timeout period." I have tried to increase the timeout period, but it just keeps sending junk data for whatever I set the period to be. The read just closes VB completley with no warning.

Here is how I have them declared in VB:

Private Declare Function imgSessionSerialWrite Lib "imaq.dll" (ByVal sid As Long, ByRef buffer As String, ByRef bufSize As Integer, ByVal timeout As Integer) As Long
Private Declare Function imgSessionSerialRead Lib "imaq.dll" (ByVal sid As Long, ByRef buffer As String, ByRef bufSize As Integer, ByVal timeout As Integer) As Long

I know this DLL works correctly, because it is used by LabVIEW to communicate with the serial port. (Sorry don't mean to bring up other programming languages). I think I just have the data types declared wrong or something.

If you need more information, by all means, just ask.

Thank you for your time!

-Nick

Data Call From CD-R In VB Project
Hi everyone


I developed a small project, how can i call data file xx.mdb from CD-R direct, this project is a viewer only. please paste code.

Rishi Acharya

How Can I Call Large Data
Hi VBCity Friends,

I am using VB6+SQLServer2000
i am using following command

Code:cmd.commandtext="Select '101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201' as Fld1 int NewTable
cmd.execute

this command is working fine. but when call the data from newTable
it is displying upto about 255 digits (the above data total about 400 digits.

How can show all data?
Please help me

Thanks,
C.P.Usman

Please Help Call Data To Treeview
HI
I am calling data to treeview, but if is 2 record with same name I can only selelt 1 record
so I need to call ID and name

can som show me how I can fix this



On Error Resume Next
 Dim nodType As Node
    Dim intTypeKey As Integer
    Dim rsTypeChild As ADODB.Recordset
    Dim myTypeKey As String
     strSQL = "Select * From verk Where staða = 'Verk í Vinnslu' "
    Set rsType = New ADODB.Recordset
    rsType.Open strSQL, conTree, adOpenStatic, adLockOptimistic

    Dim i As Long
    With tvwAM.Nodes
        .Clear
        For i = 1 To rsType.RecordCount
            Set mNode = .Add(, , , rsType.Fields!staður, 2)
            rsType.MoveNext
        Next i
    End With
    rsType.MoveFirst
    lblRecCount = rsType.RecordCount & " Færslur"

Access 2002: Sub Call Problem
Hello out there:

My problem seems so basic I'm embarassed to ask but here goes anyway:

I've got code behind a button on a form, from that code I try and call a sub(located in a module) whose purpose is to update and Access table. The problem is that in my Sub various basic statements I try and use like, Dim DB as Database, generates a compile error: User-defined type not defined. I used to program quite a bit in Access 2.0 and '97 so I thought this would be a piece of cake in 2002...

Here a shell of what I'm doing:

'Code behind Main form with button

Sub Get_Data_Click()
On Error GoTo Err_Get_Data_Click

Dim myText As String
Dim myArray() As String

' ------ do stuff ----------

Call Import_Data(StreetNumber, StreetName, City, ZIP)

Exit_Get_Data_Click:
Exit Sub

Err_Get_Data_Click:
MsgBox Err.Description
Resume Exit_Get_Data_Click

End Sub

Sub Import_Data(StreetNumber, StreetName, City, ZIP)

Dim DB As Database
Dim myStreetIndex, myData As Recordset

MyDB = CurrentDb()
Set myStreetIndex = MyDB.OpenRecordset("Street Index")
Set myData = MyDB.OpenRecordset("Data")

'Do stuff....

'==========================================

This has me pretty confused as to why I'm having such a hard time compiling the basic code to connect to a database in Access! Honestly I've done it before but I'm feeling like I'm have a senior moment here. Anyone who would take pity on my head banging and help who be greatly appreciated.I'm guessing it has something to do with scope from a module or something...I may try keeping the sub in the form but I hate that. Thanks for reading my perils.

Sincerely,

Flat Headed

How To Call An Excell Function From Access?
Aaargh. A range error was driving me nuts so I decided to move my function to excell and just call it from access. Unfortuneately I don't know how to do this and it doesn't appear to be the same as calling a sub. Can someone help fix these lines of code?



Code:
strLate = mobjExcel.Application.Run "test2.xls!StringSplitter(Late)"
strNoDate = mobjExcel.Application.Run "test2.xls!StringSplitter(NoDate)"
strNada = mobjExcel.Application.Run "test2.xls!StringSplitter(Nada)"

See my previous thread if you need to see what the rest of the code is.

Trying To Call Access Functions In Excel
I have an access database on one of our network drives that has some functions in it. One of the functions looks at data and manipulates it a certain way and I would like to be able to call into my excel files.



The creator of this program constantly uses it in access and is always updating the program. If I were to just simply copy and paste every once in a while I would miss any edits that he makes to the program. Another reason that I want to link to it is because many of us use this program and it would be great if we can just draw from one source.



So far I've got the following:


Code:

Sub Run_Func()

Dim obj As Access.Application

Set obj = CreateObject("Access.Application")

With obj

.OpenCurrentDatabase "\location omydatabase.mdb"

.Visible = True

.Run "macro1"

End With

obj.Quit

Set obj = Nothing

End Sub
This will run 'macro1' in database.mdb but I can't figure out how to run a function instead. HELP?!?! I'm almost there.....

Can't Call Access Query W. VBA Code From VB?
I have an Access 2K query that call a VBA function stored in a module in Access. The query works fine when I execute it within Access. When I try to execute it from a VB program, I get an 'Undefined function FunctionName in expression'. How can I make FunctionName visible to my VB program?

IF Logic Within SQL Call To Access 2003
Hi

I have a SQL statement which I’m building up through code which retrieves information from an Access 2003 database.

“SELECT DISTINCT
`Part No`, Description, `Invoice No`, `Planning Element`,
`Invoice Line`, `Invoice Date`, `Invoice Creator`,
`QTY Invoiced`, `Value (GBP)`, `Cost Of Sale`, `Currency Code`,
`Customer Group`, Region, `Sold to`, `Delivery Note`,
`Business Unit`, `Product Manager`, `Product Group`,
`Product Manager Code`, `Order Creator Name`,
`Customer Purchase Order`, Customer, `Country Code`,
`Sales Region`
FROM tblSales
WHERE (`Business Unit` = 'BA') ORDER BY `Value (GBP)` ASC”

What I want is an extra calculated field called Margin. The logic for this field is:

IF `Value (GBP)` = 0 AND `Cost Of Sale` > 0 THEN
Margin = “-100”
ELSEIF `Value (GBP)` = 0 AND `Cost Of Sale` < 0 THEN
Margin = “0”
ELSE
Margin = (`Value (GBP)` - `Cost Of Sale`) / (`Value (GBP)`) * 100
ENDIF

I’m not sure how to code this within the SQL statement. I’ve tried various forms if IIF but I can’t get the syntax or logic right and I don’t think I can use CASE with Access.

Has anyone got any ideas?

Thanks

Can't Call Access Module Function From VB 6
I have a access database in which i created a Module and declared one function in that module.When i call that function from Access Query it works fine.But When i call the Same query from VB6 form i am getting the Error "Undefined Function".

Can't Call Access Mode Function From VB 6
I have a access database in which i created a Module and declared one function in that module.When i call that function from Access Query it works fine.But When i call the Same query from VB6 form i am getting the Error "Undefined Function".

Call Access Function From VB Program??
Say I have a Function in my Access DB. I then want to call that function from my VB program. Is this possible, if so how do I do it. Thx.

How To Call The MS Access Module Functions
Hi Friends,

Anybody knows solution for this issue, pl. help me

I written a Function or Procedure in MS Access Module option. But i need to retrieve that function/procedure from VB source.

email id: gajulauma@yahoo.com

Best Regards
Uma

TAPI - How To Set Additional Data To A Call?
Hi all,

I know that there is a way to get additional call information, such as CallerID, Caller Name and things like that, using the lineGetCallInfo API.

My question is how can I set this data.

I have a TAPI server and an IVR system at my work place. I need to add the IVR information to each call, So later on, another application can check this information and act according to it.

Thanks a lot in advance,
Kruvi.

How To Call A Datareport Without Using Data Environment
hi
is there any way to call datareport without using data environment

Parsing Call Login Data
Hi Munya,

First, you should always start a new message for a new
question, don't just piggy-back off someone else's question.
Yours will most likely get skipped by everyone, and the
ITToolbox hierarchy is maintained by subject, so your question
will be lost in another thread.

The data you're presenting to us is in fixed-length columns.
You can just set a string equal to each line, and parse it out
using the mid function. You just need to figure out your layout
(how many characters each column is)

For instance, if you have columns of 7, 8, 15, and 5
characters, you can do:

dim strCol1, strCol2, strCol3, strCol4 as String
'(Let's say you have a variable called strLine that holds the
current line)



strCol1 = trim(mid(strLine, 1, 7))
strCol2 = trim(mid(strLine, 8, 8))
strCol3 = trim(mid(strLine, 17, 15))
strCol4 = trim(mid(strLine, 33, 5))

Even though your "dialed number" and "extension" are variable
length fields, they still fall into a certain place in row
string since it is fixed-length columns. By using the trim
function, you will get rid of the white space and keep the data.
I'm not sure what the special character is on the very
beginning of the line, so maybe start your first column at space
2 and get 6 characters instead of starting at 1 and getting 7.
Play around with it until you find out what works for you.
-Al



(original message)

Hi.

Am im writing a call logging system and I am putting data from
the PABX
into
a string. Sample data is like this:

 218 0 0646671 11:11 00:00:46

00.00
5
 ATN-1 0 091920643 11:13 00:00:10

00.00
8
 ATN-1 0 091920643 11:13 00:00:10

00.00
1
 218 0 0648149 11:12 00:00:52

00.00
6
 ATN-1 0 091920643 11:13 00:00:08

00.00
2
 ATN-1 0 091920643 11:14 00:00:12

00.00
3
 ATN-1 0 091920643 11:12 00:02:02

00.00
5
 218 0 0646671 11:11 00:00:08

00.00
2
 217 0 091264355 11:11 00:00:16

00.00
3

Where first column is the extension, 3rd column is the dialled
number,
4th
is the time of call, 5th is the duration. How do I parse this and
put
this
in a database with the relevant fields?

*consider that the dialled number column is of variable length.
How do I
put
all lines in the database?

Munya

Help: Call Data From 2 Diff Tables
hi..
I need to call date value from 2 different tables with one command line. I try to do the coding below but it only call data from the first table..

Code:

rs.open "SELECT table1.mydate, table2.mydate FROM table1, table2"

I am using MySQL database

Can anyone please help me..
Thanks in advance...

Call A Word Mail Merge From Access?
I have a a huge macro that manipulates data automatically for update purposes and I have a word document set up as a mail merge for the data in the spreadsheet.

I would like to open the word document and execute the mail merge (parameters already set in word) such that the merge will run and output the results to a new file. The mail merge template should then close and the user left with focus on the new document (so users can check and print). I would like to do this within my macro in access.

I need to know the VB code as I'm a bit of a VB novice.

Thanks

Call An Access Query In Visual Basic 6.0
Hi, it's probably a stupid question but i can't find a clear sample of how i should do it. I've made a query in Access called Optellen, this query fills in 4 fields. The values of this 4 fields i wanna get in 4 different textboxes on mine VB-form. So how do i call the Query from VB and then filling these values in the textboxes. Can somebody give me a clear smaple of how to do this.

P.S. I'm from Holland so my excuses for the bad language, if there is....

[solved]i Want To Call Access Report Thru Vb Form (HELP)
Code:
Dim appaccess As Access.Application
Private Sub command1_Click()
On Error Resume Next
Set appaccess = New Access.Application
Set appaccess = CreateObject("Access.Application")
dbstr = App.Path & "db1.mdb" 'or put actual path
appaccess.OpenCurrentDatabase dbstr
appaccess.DoCmd.OpenReport "Report1", acViewPreview
appaccess.Visible = True
End Sub


but one i try to run the code... it give me error:

Run-time error '2103'
The report name 'report1' you entered in either the propert sheet or macro is misspelled or refers to a report that doesn;t exist.


i double check my report's name..it's correct...
is there any setting i've forgotten to set?
please help

**RESOLVED** Call A Query With Parameters From Access
Hi All,

I Have a query in Access that need to get parameters. I want to call this query from my VB application, how do i call it and pass the parameters in the code.

10x Lin.

VBscript Call To An Access Module Function
I am looking for syntax that would call a function that is defined in an Access standard module from a VBScript (i.e. .vbs file) and catch the return value.

I've tried to access the function via the Module collection without success. I think that this collection may not be visible to code that is running in a .vbs file.

Any example of syntax that would do this wold be appreciated.

Thanks

How To Call Records From Ms-access Database To Msflexgrid
Dear all,
I want to call data from ms-access database to msflexgrid, thats have several record in the 1 treat no. or same criteria, but only 2 record will show in msflexgrid, the code is :
Xrow = I + 1
Data1.Recordset.FindFirst "Treatno = '" & Me.TxtTreatNo & "'"
If Data1.Recordset!treatno = TxtTreatNo.Text Then
For I = 0 To Xrow
MSFDetHT.TextMatrix(I, 0) = Data1.Recordset!productID
MSFDetHT.TextMatrix(I, 1) = Data1.Recordset!NameSpec
MSFDetHT.TextMatrix(I, 2) = Data1.Recordset!Unit
Data1.Recordset.FindNext "Treatno = '" & Me.TxtTreatNo & "'"
Next I
End If
Please help me to check the problem in the code, and I usually blank the text box with code Text1.text = "" and how to blank the masked edit box.
thanks and good day.

Access 2002: Call VB Module From Report
Hello,
Do you know what is the best way to call VB modules from reports.
Thanks in advance.

Copyright © 2005-08 www.BigResource.com, All rights reserved