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 testeng

  1. testeng

    Fixed length strings vs variable length strings

    Is there any advantages (perfomance / efficiency) gains to using a fixed length string?
  2. testeng

    open a acess module / procedure from excel

    Well that did it I tried on a machine with a clean install of office 2000 and the code worked fine. Sorry to have bothered everyone.
  3. testeng

    open a acess module / procedure from excel

    remou yes i did try late binding but it did not help same error vbajock No security yet this is all in development at the moment havn't gotten that far in yet. The machine I am testing I had to install the dll for Access 2003 for testing another application. I am starting to think that has...
  4. testeng

    open a acess module / procedure from excel

    yes i did set the reference although by the error message telling active x cant create object it doesn't appear that it is really set.
  5. testeng

    open a acess module / procedure from excel

    I am using Access and XL 2000 and through VBA I want xl to call a procedure in an access DB I have set a reference to access in xl but it still crashes each time it trys to set the object to a new access.application here is my code what am I doing wrong and is there a better way to do it. I...
  6. testeng

    listview how to hide a row

    Thanks xwb & strongm
  7. testeng

    listview how to hide a row

    Is there a way to hide a row in a listview? As the listview is being populated with rows of data some of them I want to keep hidden from the end user but still in the listview to use later in the program. I could store that data in an array but now I am more curious of how to hide a row in a...
  8. testeng

    hierarchy table

    Thanks SqlSister
  9. testeng

    hierarchy table

    I am sure there are several post for this but I haven't found one I really understand yet. I have a hierarchy table with 3 columns in it ParentID, Description, ChildID. I would like to use a query to get all of the ChildIDs and its childIDs from a ParentID. I know this is simple but I just...
  10. testeng

    Stored Procedure Return Parameter

    I am trying to return the @@Identity field from a stored procedure after a row is inserted but I keep getting an error that it can not convert it to a integer error. I have returned parameters before but always an integer value what is the trick to returning a string? Thanks is advance
  11. testeng

    Search for running apps and stop them

    Does any one know how to get a list of all running apps on a PC and stop/close certian ones? Thanks
  12. testeng

    VB6 looking for help to load from SQL server

    Are you looking for a connection string?
  13. testeng

    Add data to a combo box/listbox

    Hi I am new to .net and having a hard time switching from VB6. I have a list of employess and there ID that I would like to put into a combo box and display there name but when selected only pick there ID. In VB6 the code was .additem for the employee name and .itemdata(x) for the ID. How does...
  14. testeng

    Create Table in Access

    I would like to create a temp table that will be very large so I would like to be able to index certian fields after I create the table but so far I can only create a primary key and thats it. Here is my string: strSQL = "CREATE TABLE AutoIncrementTest (ID int identity, F1 varchar(40),F2...
  15. testeng

    Best Practices

    I am curious if this it the proper way to do this. If in your app you connecting to 2 different DataBases should you create 2 seperate class modules for each DB or just one for the DB that the majority of the app is for and just create a connection in the routines (or just a Public function)...

Part and Inventory Search

Back
Top