well gmmastros seems great, but i have some question about your method.
1- where do you say that report should be appeared as vbmodal. do u show the report Interface in Call ShowReport(cSchoolList)? what is Call Show(vbModal)?
2- how do u understand that a dll has a "ReportConfig class"...
how can i open a report or form which is in activex dll file ( which i use it like com object) ( as i have explained in report interface in dll file Thread) as vbmodal.i have done this
this is coded in Main project which produce exe file
Set ObjRptTemp = CreateObject("PrjReport.clsReport")...
i have coded a program which all of the form and reports are in a project(UIProj) and all of the database actvities for forms are in a activex dll prject (FormPrj) and all of the report database actvities is in a activex dll prject (ReportPrj). I thought maybe it is better the Reports itself in...
i know this is a strange question, and answering it needs to know more about the project , but i ask it anyway.
i have a project which all of the forms are in the one projects, and i have created 2 other activex dll project to code all server section in that project. the size of the first...
i have this stored procedure
CREATE PROCEDURE CheckPRF_PV_Date @projId2 int,@TotalDelivered int,@Result varchar(100) output
AS
declare PRF_Cursor Cursor
For SELECT Quantity,DeadLine FROM dbo.VGoods WHERE (dbo.VGoods.PrjId = @projId2)
open PRF_Cursor
Fetch PRF_Cursor into...
can you give a sample?
is this ok?
CREATE PROCEDURE CheckPRF @projId int,@TodayDate varchar(20) AS
call SecStored (@projId,@TodayDate)
Go
CREATE PROCEDURE SecStored @projId2 int,@TodayDate2 varchar(20) AS
print projId2
print TodayDate2
go
i have a procedure in my application which i use it almost in all form. it changes the values of some textboxes in each form.now my question is that. which one these two methos is better for having better performance.
if i program these procedure as public procedure and call just this one...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.