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: asmith555
  • Content: Threads
  • Order by date
  1. asmith555

    Button events not firing for some users

    I have an web app written in asp.net 2.0. I have a couple of buttons on a page. most users can click the buttons fine. 2 users cannot. even though the postback is happening the code for the click event is not. These 2 users can log into another pc and it still doesn't work for them. I can...
  2. asmith555

    Windows Authentication

    I have a web app written in vb.net 2.0. We would like the application to login users based on thier windows credentials. OK No prob. Here is the catch. If joe Is logged on to his machine but Bob comes along and uses joes machine to access the app. Joe is not authorized so we want a domain...
  3. asmith555

    trying to develop web conference software

    I wish to develop web conferencing software in ASP.Net. I don't really know where to start. Is there an activex control or an api that will allow the streaming of a users desktop?
  4. asmith555

    Printing PDF From web server

    I have an app written in asp.net. I need it to print several pdf's with no user interaction. I need to be able to select the printer as well. I have tried shelling adobe reader but there is a permissions issue I cant seem to get around. This works when I run it locally but not when I deploy...
  5. asmith555

    Heterogeneous queries and sp_sqlexec

    I have a sp that builds a querystring involving a linked server then trys to execute it. I keep getting the following error when I try to use the sp_sqlexec procedure "Heterogeneous queries require the ANSI_NULLS and ANSI_WARNINGS options to be set for the connection. This ensures consistent...
  6. asmith555

    Accessing Generics from Com Interop

    I have an asp application that implements an object created in VS 2005 through Com Interop. In one class in that object there is a property which is a collection of users implemented using the "List of(User)" method. How can I itterate through this collection from asp?
  7. asmith555

    Debugging in Com Interop

    I have an .net 2.0 class library with a com wrapper around it. I am having problems with data access using the Microsoft Data App Blocks. The object is being created in classic asp using the com wrapper via a server.createobject assignment. Is there anyway I can debug my class object in...
  8. asmith555

    How to get the value of one cell in a worksheet

    I am new with excel vba. I am trying to get the value of a single cell in a specific worksheet. Also I am trying to dynamically open another workbook. Get a value from a single cell and close the workbook. Can anyone give me a heads up on how to do this.
  9. asmith555

    Com Interop Not working

    I have created a Com Interop Projecting in VB.Net that is being used by asp. I have moved to another machine and rebuilt the component but when I run the asp app I get this 500 error on the "Server.CreateObject" Line: Error Type: (0x80070002) /app1000/index.asp, line 4 Any Idea Whats going on.
  10. asmith555

    Com Interop not working

    I have created a Com Interop Projecting in VB.Net that is being used by asp. I have moved to another machine and reregistered the component but when I run the asp app I get this 500 error on the "Server.CreateObject" Line: Error Type: (0x80070002) /app1000/index.asp, line 4 Any Idea Whats...
  11. asmith555

    I have to reinstall .Net Framework every day

    Every morning when I open a project in VS the application log records this error. "aspnet_wp.exe could not be started. The error code for the failure is 80070545. This error can be caused when the worker process account has insufficient rights to read the .NET Framework files. Please ensure...
  12. asmith555

    Server Not Found Error on Postback

    I have a webapp running on my localhost. Everytime I click a button or in anyway cause a postback I get a "Server Not Found or DNS Error" Any ideas what is causing this.
  13. asmith555

    Stateful Web Services?

    Heres my situation. I have a classic asp application that currently uses com interop to store and manage user information before inserting into database. All database operations are done through the com object. Currently I have to install this object on every server that runns this...
  14. asmith555

    Cursor for a local variable

    Can a cursor be declared for a SQL statement that resides in a local variable such as "DECLARE curUsers CURSOR FOR @sSQL
  15. asmith555

    Delete Newly added row from dataset

    I have an app which has a datagrid in which you can add and delete items. After an Item is added the dataset is updated and rebound to the grid. If I try to delete the newly added item I get this Error: Collection was modified; enumeration operation may not execute This error occurs when I...
  16. asmith555

    Delete the dataset row of a dataview

    Here is the situation: I have a datagrid on a page that is bound to a dataview created from a dataset with a simple filter. When a user clicks the delete column of the datagrid how do I reference the row index or the datarow object in the original dataset. This is in the context of the...
  17. asmith555

    Datagrid Update Command will not fire.

    I am really frustrated on this one. I cannot get the update command of this datagrid to fire. All other commands work. I have tried using both the ItemCOmmand and the Update Command. PLease Help Datagrid: <asp:DataGrid id="dgUser" runat="server" AutoGenerateColumns="False" CellPadding="2"...
  18. asmith555

    Tab stop on disabled control

    I have a forw which containes user controls. The controls within the user control are disabled until the user controls gotfocus event fires. Then the controls are enabled for input. When the user leaves the control the child controls are once again disabled. Here is the problem. When I hit...
  19. asmith555

    How do I requery a dataview when changing the row filter

    I create a dataview from a datatable in which I use to send to an outside object accepting a dataview as a parameter. The process goes as such. Psudocode: Open main datatable for each tablerow in datatabletable create new dataview set dataview row filter to tablerow item(x) create...
  20. asmith555

    .Net Dataset output to ADODB Recordset

    I have an application written in classic asp. It uses active X objects I created in VB6. I am rewriting the components in VB.Net. One of the issues I have run into is that the ActiveX component returns a ADO recordset to the asp page. I am wondering if there is a way to create an ado...

Part and Inventory Search

Back
Top