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 wOOdy-Soft 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: oricteropo
  • Content: Threads
  • Order by date
  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

    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...
  7. oricteropo

    Retrive Windows Login Name

    Is there any way that I can determine the UserName of person currently logged into a computer using VB6?
  8. 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
  9. 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...
  10. 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...
  11. 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...
  12. 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?
  13. 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
  14. 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...
  15. oricteropo

    DLL registered through command line doesn't shrink

    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...
  16. oricteropo

    Dynamically generate root dirctory's path

    Is there anyway that I can dynamically generate the path to the root directory of my webpage using ASP?
  17. oricteropo

    Efficiently return single page of a multiple page recordset

    I have a paged recordset in a DLL. It is a private variable and cannot be changed to public. I have a function which allows a user to specify a page of the recordset, and pass in an ADODB.recordset by reference and it will return that page of the recordset to them. In order to return the...
  18. oricteropo

    ADParamOutput Only works when last step in stored procedure

    Using adodb does and adodb adParamOutput only work when the variable is assigned as the last statement in a procedure? I can't find this documented anywhere but that is what my testing shows.
  19. oricteropo

    Uploading from Client To Server In an ASP application

    I'm writing an ASP application that requires the user to upload from their machine to the server. They can browse and select the file that they want to upload using HTML's Input-File object. Once I have the path on their computer I need to upload the file to the server. I would prefer not to...
  20. oricteropo

    Properties/Methods not appearing in box when I enter an object

    Using Visual Basic 6.0 I will create an instance of an object with several methods and properties. When I attempt to perform operations on/with the object I do not get a list of the properties and methods appearing in a drop down box after typing the object name. I also will not get a list of...

Part and Inventory Search

Back
Top