Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by nnmmss

  1. nnmmss

    vbmodal report

    Actually i couln't open a report VBModal in a Dll from a menu in executable project. any clue for that?
  2. nnmmss

    vbmodal report

    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"...
  3. nnmmss

    vbmodal report

    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")...
  4. nnmmss

    report interface in dll file

    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...
  5. nnmmss

    online person

    how can i understand what how many people and which person are working with an VB application?
  6. nnmmss

    size fo exe file

    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...
  7. nnmmss

    editing treeview

    thanks i got the answer
  8. nnmmss

    editing treeview

    hi can i edit the label in treeview. if click on them or double click on them i can not edit them.
  9. nnmmss

    A cursor with the name......already exists.

    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...
  10. nnmmss

    calling a stored procedure

    and what if i want to have an output back from the SecStored to the CheckPRF ?
  11. nnmmss

    calling a stored procedure

    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
  12. nnmmss

    calling a stored procedure

    can i call a stored procedure inside another stored procedure? tahnks
  13. nnmmss

    global variable

    look there four path , i have kept those path in table .actually the data never changes but depends on which path is needed i'll get that field
  14. nnmmss

    problem in writting a query

    suppose i have a tbale with these data on it PrfNo PrfVer Quantity_Total PrjId SupplierId GoodsId Ab_43 1 34 15 20 29 Ab_44 1 31 15 20 29 Ab_44 2 30 15 20 29 Ab_43 2 12 15 20 29 Ab_43 3 4 15 20 29 i...
  15. nnmmss

    question about performance of an app

    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...

Part and Inventory Search

Back
Top