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 TouchToneTommy 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: *

  1. oricteropo

    Shareware software testing

    Hi, I wrote some shareware with VB6 and I'd like to get some feedback on the trial version. Does anyone know of any sites where people give that type of feedback? The site you can download it from is www.tightwadbudget.com if you're interested.
  2. oricteropo

    session.getAttribute only works with localhost URL

    I am successfully setting a session variable at the URL http:\\localhost:9080\testWeb using the following code: if (request.getParameter("openReport") != null) { session.setAttribute("reportName", stringReportName); } After the session variable is set I can then view it from anyother page on...
  3. oricteropo

    The import cannot be resolved

    I'm new to Websphere so hopefully this will be an easy question. I'm trying to import a class for Crystal Reports so that it can be viewed on a webpage. I know that the following line is correct but I get the error "JavaCompile: The import com.crystaldecisions cannot be resolved." What do I...
  4. oricteropo

    Connect to MS Access 2000 database from websphere

    How can I connect to an access 2000 database from websphere? I've read about people doing it but none that say how to do it. I'm new to websphere but a programming veteran. Thanks in advance
  5. oricteropo

    Rebuilding index on replicated table.

    If I rebuild a fragmented primary key on a transactionally replicated table will that have any effects of the subscriber tables? Will I need to rebuild the indexes on the subscriber tables?
  6. oricteropo

    sp_replAddColumn error

    By the way, I have SQL Server 2000 Enterprise Edition with service pack 2.
  7. oricteropo

    sp_replAddColumn error

    I'm attempting to run sp_ReplAddColumn like so..... exec sp_repladdcolumn 'MY_Test', 'MinInvoice', 'money', 'All', null, 1, 1 And I get the following error: Server: Msg 21331, Level 16, State 1, Procedure sp_MScopyscriptfile, Line 40 Failed to copy user script file to the Distributor. Anyone...
  8. oricteropo

    Retrive Windows Login Name

    Thats it, Thank You -jeff
  9. oricteropo

    Retrive Windows Login Name

    Is there any way that I can determine the UserName of person currently logged into a computer using VB6?
  10. oricteropo

    Can I retrieve the last Identity value inserted into database?

    Is there anyway that I can retrieve the last identity column inserted into the database? In SQL Server Selecting the @@Identity variable will return this value but I have not been able to find it's equivalent in Access. Is this even possible? Thanks in advance -JK
  11. oricteropo

    I'm attempting to add a new article

    Thanks, I think that I'll probably just try delete and recreate the subscription.
  12. oricteropo

    Add article to replication produces warning

    I'm attempting to add a new article to a publication. The article is entirely SQL Server 7.0 compliant but will be housed on a SQL Server 2000 system. When I attempt to add the article I get the following message: "Publishing this article increases the version requirement for Subscribers...
  13. oricteropo

    I'm attempting to add a new article

    I'm attempting to add a new article to a publication. The article is entirely SQL Server 7.0 compliant but will be housed on a SQL Server 2000 system. When I attempt to add the article I get the following message: "Publishing this article increases the version requirement for Subscribers...
  14. oricteropo

    Cannot properly restore or delete a database

    Thanks a lot, that worked and then I was able to delete it. I was really stressing over this. Thank you.
  15. oricteropo

    Cannot properly restore or delete a database

    Does anyone know how to delete the DB? I'm running into the same problem.
  16. oricteropo

    VB Grid Types, adding a check box to a grid

    I'm looking for an updatable ActiveX grid that allows a cell containing a checkbox. My client wants a screen on my VB app that will mimic MS Access table display (the yes/no field in Access displays a checkbox). I'm currently using a Datagrid, and I can't figure out how to add a checkbox to...
  17. oricteropo

    Determining when stored procedure last executed

    Is there anyway that I can determine when a stored procedure was last executed using the system tables?
  18. oricteropo

    Count of users connected to SQL Server 2000

    Thanks, That is what I was looking for. I was looking for a programmatic count. I found that if I just hit the system tables I get the results that I'm looking for......... select d.name, count(spid) from master.dbo.sysprocesses s, master.dbo.sysdatabases d where s.dbid = d.dbid group by d.name
  19. oricteropo

    Count of users connected to SQL Server 2000

    is there any stored procedure or extended procedure which returns the number of connections currently open to SQL Server? Thanks in advance, Jeff
  20. oricteropo

    Contantly growing DLL

    I wrote a custom DLL which calls another custom DLL. I couldn't register these DLL's in COM+ because for some reason it failed when multiple users tried to access it. When I registered these same DLL's through the command line everything was working fine and multiple users could access the...

Part and Inventory Search

Back
Top