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 cmdematos

  1. cmdematos

    Opinion Required: Best presentation layer add-on

    Discussion to include only tools that provide both WEB and Forms layers. I am not using anything at this time - what are you using? How good is it? Is it easy to learn? Real time savings? Worth the price ... ... ...
  2. cmdematos

    Opnion Required: Best extensible code generator for C#

    Serious code generators only: I am using Olymars - its good. What else is out there are what are your real world experiences?
  3. cmdematos

    How to display/manipulate program version number

    How do I display and manipulate a c# program version number? I think I have the display part, but how do I set the version number from version 1 to version 2?
  4. cmdematos

    Program to read a web page

    I want to monitor several web pages on a regular basis that contain lists of information. Offcourse the web pages are meant for human consumption, but I want to write a program that will filter the lists for the information that I want and update a database with that information. I am a...
  5. cmdematos

    How to create string and interger lists?

    A few months ago I started with C# having several years experience with Delphi and C++. This prior experience has left me with lots of 'how do I do this' type questions. How do I create the equivalen of Delphis TStringList? Or a c++ vector<string> type?
  6. cmdematos

    Upgrade server hardware / Ghost & Sysprep?

    I want to upgrade my windows 2003 server. I am going from an athlon/via chipset to an athlon-XP/Via chipset. I was told to do the following... 1. Ghost the current image (safety backup) 2. Load all device drivers for the new board 3. Move disk to new hardware - it should come up and work...
  7. cmdematos

    Group Policy Screen Saver

    Hello, I dont have an answer for you, but you are further ahead than me on the same issue. How do I go about forcing users policy to use screen savers with passwords and 5 minute timeouts?
  8. cmdematos

    track hits to web site

    Hello all, (from absolute newby) I want to track hits on my web site, and I dont want to use counters to do it. My thoughts are to track some basic things like IP address, browser type, client email address (if possible) and record the session context and URL into SQL Server. I guess I can...
  9. cmdematos

    Possible to install a 'lightweight' exchange srvr?

    I want to install a 'play and test' exchange server. We have the MSDN subscription exchange, but the only machine I can spare is a 700Mhz celeron with 256Mb of RAM. I am sure I can get it installed on this, but once running can I 'tune down' the exchange server to use the minimum amount of...
  10. cmdematos

    Backup and Restore Corruption question

    Hypothetically speaking, if the database corrupted, could I backup and restore the corrupted database without knowing it? More specifically, if I run a warm backup server, and the main server gets some sort of corruption in its database, can this be transferred to the warm backup server? What...
  11. cmdematos

    SQL Agent Job slows down

    Hello all, I have a long running job that I kick off from SQL Agent. The job opens a cursor (6 rows only) and performs its work on one row at a time, calling a set of stored procedures. When fired from SQL Query Analyzer the job each row in the cursor takes 8 minutes to process, or, 48 minutes...
  12. cmdematos

    Example BAPI code

    Where can I find examples of BAPIs being called by COM in VB, C++ or Delphi? Thank you, Carlos De Matos
  13. cmdematos

    SQL Mail configuration Baffles!!!

    Hi, I have outlook configured with just internet mail. I can interactively send and receive mail messages as administrator. My SQL agent and SQL server run as administrator and show no problems when testing the mapi session. When I try to send a mail message the call to xp_sendmail never...
  14. cmdematos

    ADO Timeout

    I am getting an ADO timeout (SQL 7/ TAdoQuery) on a select statement that takes 53 seconds to return data. The documentation talks about CommandTimeout - which I have tried to set to -1 (gens error) and 36000 - but still the timeout occurs. What I am doing wrong and what can I do about this?
  15. cmdematos

    How can I create a text file from SQL?

    I want to create a text file from SQL - something like this.. DECLARE @A_FLD AS CHAR(5), @B_FLD AS CHAR(7) SET @A_FLD = 'HI' SET @B_FLD = 'MOM' EXEC xp_<?????> FILENAME, @A + @B + '!' The result must be... 'HI...MOM....!' in the text file. Is there a simple way short of building...

Part and Inventory Search

Back
Top