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 bkrike 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
  • Content: Threads
  • Order by date
  1. 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")...
  2. 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...
  3. nnmmss

    online person

    how can i understand what how many people and which person are working with an VB application?
  4. 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...
  5. 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.
  6. 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...
  7. nnmmss

    calling a stored procedure

    can i call a stored procedure inside another stored procedure? tahnks
  8. 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...
  9. 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...
  10. 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?
  11. 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?
  12. 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...
  13. 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?
  14. nnmmss

    slow application

    I have programmed an application which every thing on the my pc . i mean the application and also sql server . after testing i should use it on the network, but i think it is just a little slow. now i want to know is there any software or policy which i can get where on the program cause...
  15. nnmmss

    Automation Error

    i have defined 3 varibale in Global section of my project '************ Global ********** Public ProjectPath As New Collection Public PInterval As New Collection Public PrjFinish As New Collection '************ End of Global ********** in Other form of my project named FrmMain , i have...
  16. nnmmss

    codepage convertor

    I have a table which all data in it have been stored with codepage 1256 . now i want to convert data to codepage unicode. i don't what should do. can anyone help me?
  17. nnmmss

    File list

    How can i find the list of files avalable in a PATH which begings with e.g (NM001_). i mean i want NM001_*.* in Path forexample c:\temp. thanks
  18. nnmmss

    Multiple-step operation generated errors

    I have a listview and dataGrid and a recordset. when a user select an item from listview, that item is added into recordset and will be set to datagrid datasource the brief code is like that. 'Defining recordset Set rstDG = New ADODB.Recordset rstDG.Fields.Append "Id", adDouble...
  19. nnmmss

    default value of a field in RST

    I am defining a recordset like this Set rstDG = New ADODB.Recordset rstDG.Fields.Append "Id", adDouble rstDG.Fields.Append "GoodsName", adVarChar, 255 rstDG.Fields.Append "GoodsId", adDouble rstDG.Fields.Append "TypDesig", adVarChar, 255 rstDG.Fields.Append "TypeId", adDouble...
  20. nnmmss

    data Grid & recordset

    I have a data Grid which is bound to a Recordset named (rstDG), the only difference is that datagrid has a one more field named (Item) which is the first column. after setting the datasource of the datagrid to rstDG, i want to fill the item cell to Row Id. so i did so grdGood.Columns(0).Text =...

Part and Inventory Search

Back
Top