Can you please give the syntax for opening via ADO.
I had tried it before. It gives .absolute page = -1
Main Topics
Browse All TopicsSQL2K, VB6 :
I am using following Stored Procedure to Create TEMP TABLE and Insert Query Result into Temp Table
CREATE TABLE #RPTSalesRegister ( iMonth tinyint, iYear tinyint, strMonth Varchar(10), Amount Money, Division varchar(25), DivisionId TinyInt,UserId smallint)
INSERT INTO #RptSalesRegister
SELECT TOP 100 PERCENT MONTH(Transactions.Created
{ fn MONTHNAME(Transactions.Cre
AS Balance, DivisionMaster.DivisionNam
FROM DivisionMaster INNER JOIN
JobsMaster ON DivisionMaster.DivisionId = JobsMaster.Division RIGHT OUTER JOIN
TransactionEntry INNER JOIN
Transactions ON TransactionEntry.CompanyId
JobsMaster.Job_No_Id = TransactionEntry.CostCente
WHERE (Transactions.CreatedOn >=@FromDate) AND (Transactions.CreatedOn <@Todate)
GROUP BY MONTH(Transactions.Created
DivisionMaster.DivisionId,
HAVING (TransactionEntry.GroupCod
ORDER BY MONTH(Transactions.Created
How do I use the query result in VB6 Code to show it in a grid or any other control.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Option Explicit
Dim con As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim cmd As ADODB.Command
strconnect = "Provider=SQLOLEDB;Data Source=MyServerName;Initia
con.Open strconnect
Set cmd = New ADODB.Command
cmd.ActiveConnection = con
cmd.CommandType = adCmdStoredProc
cmd.CommandText = "MyStoredProc"
Set rs = cmd.Execute
Business Accounts
Answer for Membership
by: MikeToolePosted on 2009-07-22 at 03:44:37ID: 24913180
Add this to the end of the Stored Proc:
Select * from #RptSalesRegister
The SP will then return a recordset that you can open via ADO