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 Chriss Miller 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 vishnuprasad

  1. vishnuprasad

    Adding User Names to MTS Role

    I dont think U need to shut down the server, instead just click the refresh button which I feel would do.
  2. vishnuprasad

    How to access COM+ Component (windows 2000 server) from Client machine

    Use *.TLB/*.VBR files,*.exe with Package and deployment wizard for client side installation.
  3. vishnuprasad

    Problem with retrieving data using COM components from SQL

    I think this has nothing to do with data, its settings in MTS which is causing the probs.Check u'r Component security. Disable the checkbox for Enable authorization and try it again.
  4. vishnuprasad

    com+ Package of application hangs

    Are u using this as a *.VBR,*.TLB file or have u installed as a *.msi,*.exe file. If the case is former than you don't have problem.
  5. vishnuprasad

    Reference Source Recommendations

    Programming COM with VB6 - TeddPatisson COM programming with VB - Marykirtland
  6. vishnuprasad

    expanding interfaces

    If u dont break compatibility u can expand them in the existing interface but if u want a new expanded one (which breaks compatibility) then u will have to create a new abstract interface defn and again implement in the class where u want.
  7. vishnuprasad

    passing VB object reference to COM

    EngineFactory object should support the object being passed for further processing, i.e your QueryInterface is not returning a valid reference back.
  8. vishnuprasad

    Microsoft DataGrid Control 6.0 (OLEDB)

    Use a ADO recordset to run your query and set the recordset to Datagrid/adodc. 'say rec is recordset Set rec = datagrid1.recordset.
  9. vishnuprasad

    Identifying caller

    If u implement MTS code with Security context you can? Or else u can pass from the client the Machine name as a parameter. Sorry I don't think I can do much...
  10. vishnuprasad

    ODBC Setup not saving password

    Its logical that ODBC will not save the password since its your app which should pass the password for security validation. The initial ask is just to test for connectivity.
  11. vishnuprasad

    Stored Procedure

    I dont know much about MS Access but as far as my knowledge I dont think u have any Storedprocedure's in MSaccess.
  12. vishnuprasad

    Stored Procedure

    create procedure sp_GetEmployeeDetails @Eno int, @Eno int output, @EName Varchar(30) output, @Sal Decimal(12,2) output as select @Eno=eno, @Ename=ename, @Sal=sal from emp where eno=@Eno return Just check for syntax as I have not run this in sql.
  13. vishnuprasad

    Stored Procedure

    create procedure sp_GetEmployeeDetails @Eno int, @Eno int output, @EName Varchar(30) output, @Sal Decimal(12,2) output, as select @Eno=eno, @Ename=ename, @Sal=sal from emp where eno=@Eno return Just check for syntax as I have not run this in sql.
  14. vishnuprasad

    URGENT!! PLEASE HELP WITH TRIGGER

    U cant make updates into the inserted table.I can just give a idea of creating a unique column in the exiting table or create a temp tab with unique val and go with the updates with the table directly.I have'nt checked the following modified query, but just work on it. CREATE TRIGGER...

Part and Inventory Search

Back
Top