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!

Search results for query: *

  • Users: ShankarJ
  • Content: Threads
  • Order by date
  1. ShankarJ

    Creating a Form from a Window Handle

    Hi! I am quite new to C# and so please be patient with me. I am writing a WIN32 application in Clarion (similar to C) which calls a .NET Report control via COM InterOp i.e. my C# project is just a COM wrapper over the .NET control. If I pass a Window Handle to the C# app, is there any way to...
  2. ShankarJ

    Convert a String to a Byte Array

    Hi! I am quite new to C# and am writing a COM wrapper for a .NET Control. One of the functions requires a Byte array as input and I am having problems passing a SafeArray from the calling application. The String object has a ToCharArray() method but none to convert to Byte array. Do I have to...
  3. ShankarJ

    @@ROWCOUNT - Puzzled?

    Hi! Any idea why the following SP does not return the Row Count. It does return the result set though. CREATE PROC dbo.sp_DFD_Query ( @SelectQuery NVARCHAR(4000), @SelectedRows INT OUTPUT ) AS exec sp_executesql @SelectQuery SET @SelectedRows=@@rowcount GO Regards
  4. ShankarJ

    Generic way to DELETE Child Rows

    Hi! Before I venture into trying to do this on my own, I would like to know if any of you could guide me to create a Stored Procedure which takes as it's parameters the Table Name and the Row ID, finds all the dependant Child Tables and their ParentID link column to the given Table and generate...
  5. ShankarJ

    Find/Log Users/Workstation accessing files on shared folders

    Hi! I am having a problem in one of my client's site where EXE files are getting infected on a Shared Folder. Anti-virus protection is in place but somehow it seems to get through. Since the server is clean (checked with the network disconnected), I assume that one of the workstations (300+ of...
  6. ShankarJ

    Alternate Data Streams in NTFS on Win2K Pro computer

    Recently I noticed that the File Open & Save dialogs became very slow on my machine. I have Norton AntiSpyware (NIS) & Microsoft AntiSpyware on my machine for online protection. I have scanned my hard disks with these as well as Ad-Aware, Spybot, Spyware Doctor & Spy Sweeper. All have come with...
  7. ShankarJ

    Help with a GROUP BY Query

    Hi! I have data in the following format : Table ----- ID int Rate decimal(9,2) EffDate datetime Data ---- 1,200,2005-06-16 1,200,2005-06-17 1,300,2005-06-18 1,300,2005-06-20 1,200,2005-06-21 1,200,2005-06-22 I want to query which shows the Rate along with the validity dates i.e...
  8. ShankarJ

    Restore Deleted Files in Shared Folder

    Hi! How does one find out which user deleted a file on a shared folder on the server and when? Also, how do you restore that file? The server's Recycle Bin does not contain entries of deleted files for the shared folder. Regards
  9. ShankarJ

    Change Database Location from Application

    I have a CR10 Report which is driven by a stored procedure. When I designed the report, I set the database location i.e. it is currently pointing to a SP in DataBaseA. I want to change this to point to the same SP in DatabaseB from my application at runtime. The databases are identical in terms...

Part and Inventory Search

Back
Top