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 strongm 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. kss1133

    Can't open project

    I tried 'File'/'Open'/'Project From Web' (VS2003) that did not work, but what did work was to reconnect the web project to the solution by navigating to the network folder through my network places. Thanks.
  2. kss1133

    Can't open project

    I have an asp.net project written in c#, the person who started it has everything on the development server and I can not open the solution. I have tried to move the site to my machine, but since I am new to .net I don't know how to get it running. Can anyone please help me. Thanks.
  3. kss1133

    vbs to delete certain file types

    I have this vbs file that I have setup on a job to run at 2am. DeleteFile "c:\test\*.txt" function DeleteFile(WhatFile) on Error Resume Next dim fso set fso=createobject("Scripting.Filesystemobject") fso.DeleteFile(WhatFile) End Function I want to be able to set this up so I can pass the...
  4. kss1133

    Emailing from sql server

    I have this table that has email addresses in it, based on a date value in the same table I want to be able to send an email to the address. I want this to run as a job. How can I make this possible, also I don't want to use MAPI and load outlook. Thanks for any advice, KSS
  5. kss1133

    New to asp.net

    I am a very good classic asp developer and I am use to having your data access stuff separate from your web pages so... I want to populate a checkboxlist with values from a stored proc. Example "select * from authors" using pubs database. But I want all the dataaccess code to be a separate...
  6. kss1133

    Com+ and IIS on same machine

    Hello, I have created some components that I use in my web pages to connect to the database and run stored procs. I have just changed jobs and at my old job we had a 3-tir structure and here at my new job we don't. But I have created these components and I want to use them but I am not having...
  7. kss1133

    IIS and com+ together.

    Hello, I have created some components that I use in my web pages to connect to the database and run stored procs. I have just changed jobs and at my old job we had a 3-tir structure and here at my new job we don't. But I have created these components and I want to use them but I am not having...
  8. kss1133

    Com+ and IIS on same machine

    Hello, I have created some components that I use in my web pages to connect to the database and run stored procs. I have just changed jobs and at my old job we had a 3-tir structure and here at my new job we don't. But I have created these components and I want to use them but I am not having...
  9. kss1133

    Delete where timefield < getdate + 5 minutes

    I got it working I had to use mi in my datediff not mm. It is working fine now. Thanks.
  10. kss1133

    Delete where timefield < getdate + 5 minutes

    I think I found the issue. delete tblunique where datediff(mm,activedts ,getdate()) > 5 The mm needs to be changed to mi. Thanks everyone.
  11. kss1133

    Delete where timefield < getdate + 5 minutes

    Yes I would think that delete tblunique where datediff(mm,activedts ,getdate()) > 5 would work but it does not. The date in the field is '2006-05-11 15:06:00'
  12. kss1133

    Delete where timefield < getdate + 5 minutes

    I have a table in that table is a field activedts when activedts gets to be 5 minutes old I want to delete it.
  13. kss1133

    Delete where timefield < getdate + 5 minutes

    I'm haveing trouble with trying to delete records from a table where the datetime field is less that now +5 minutes. Thanks for any help,
  14. kss1133

    What is ou=Dynamic

    I have taken over a web site that has no documentation on it, and the web site some how used ldap to control the session and limits how many same login can occure. One of my tasks is to remove the ldap dependancy. But I am trying to figure out how the ldap is currently being used to control...
  15. kss1133

    Message box in asp.net 1.1 with C#

    Got thanks for the help, also I did do a search and qid number 866733 was very help full. Thanks again.
  16. kss1133

    Message box in asp.net 1.1 with C#

    Hello all, I am sort of a newbi with C# and asp.net, in my code I am deleting a record from the database just by calling a stored procedure that just deletes the record based in id. I am not using any grids or controls. I am needing to add a message box asking "Are you sure?". From what I...
  17. kss1133

    Remote debugging

    Sorry, guys I have already been here and done that.
  18. kss1133

    Remote debugging

    Thanks, but that's not the problem. There is no firewall, I am an admin of the machine, I am also part of the system group. I can get to the server from my xp machine and I can get to my xp machine from the server. I just can't figure it out, I can't even manually attach the process, I get the...
  19. kss1133

    Remote debugging

    Yes it does have rights, I can get to my local machine from start->run
  20. kss1133

    Remote debugging

    Not sure what you mean? I am an admin of both my machine and the development web server.

Part and Inventory Search

Back
Top