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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: nnmmss
  • Order by date
  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...
  16. nnmmss

    global variable

    well actually the main database is sql,i use excel not for databse but it i just get one value from it and the rest is done the app. these four values are four different path of files, so it depends on which form(which can show different file path) load the value is needed at that time just once...
  17. nnmmss

    field name be a variable

    i have a procedure like this CREATE PROCEDURE GetFieldPath @FieldName varchar(10), @ReturnField varchar(10) output AS Select @ReturnField=@FieldName FROM TblPath it doesn't work , i want to have field as a variable to pass it different field which part is wrong?
  18. nnmmss

    view comparing stored procedure

    if i can do a part of process (like a few select query to get a value) in a view and in a stored procedure, which one is best for getting better performance?
  19. nnmmss

    global variable

    I have a table which has a row with four column, when ever i want these values (4 columns) i connect to the database and get the specified values through the stored procedure. these 4 values could be used in any part or any form in application. now my question is that for having better...
  20. nnmmss

    field as a variable

    i have a procedure like this CREATE PROCEDURE GetFieldPath @FieldName varchar(10), @ReturnField varchar(10) output AS Select @ReturnField=@FieldName FROM TblPath it doesn't work , i want to have field as a variable to pass it different field which part is wrong?

Part and Inventory Search

Back
Top