Technical Stack
Interesting technical stuff ...
Popular Posts
Facebook Chat Emoticons (Smileys) shortcuts
Facebook Chat Emoticons (Smileys) shortcuts Here is the list of all smiley keyboard shortcuts for Facebook chat. Enjoy!
How do I make Excel VBA call a dot net dll?
make the DLL COM Visible and register the dll in Windows, otherwise it won't appear in Tools/References. Here are some references htt...
To register multiple dlls or ocx in a folder ... (regsvr32)
to register all dlls in a folder go to the folder and execute the following command: for %i in (*.dll) do regsvr32 %i replac...
Excel.Application.Workbooks.Open fails
This is the frustrating error we get: Microsoft Excel cannot access the file D:\mypath\myexcelfile.xlsx. There are several possible reas...
MS SQL Server : Generate insert statements from values in a table
Create the stored procedure sp_generate_insert_script (You could you any other name you think you could remember easily. I prefer "zin...
Outlook 2010 taking forever to download emails from exchange server.
Recently I'd observed an issue where the outlook would take forever to download new mails and just kept saying "Updating this folde...
Shortcut for "Select * from" in SSMS
Create the following stored procedure in your database: ---------------------- CREATE PROC sp_SelectFromTable @tbl VARCHAR (128) AS E...
What is the difference between System.Array.CopyTo and System.Array.Clone in .NET?
The Clone() method returns a new array (a shallow copy) object containing all the elements in the original array. The CopyTo() method copies...
SQL Server Management Studio Keyboard Shortcuts
This link lists down all the SQL Server Management Studio Keyboard Shortcuts SQL Server Management Studio Keyboard Shortcuts http://msdn.m...
MS SQL SERVER: Find all objects that a Stored Procedure or Function in SQL Server Uses
SELECT TOP (100) PERCENT OBJECT_NAME(d.object_id) AS SP_Or_Function, OBJECT_NAME(d.referenced_major_id) AS TableReferenced FROM sys.sql_depe...
Wednesday, July 31, 2013
To register multiple dlls or ocx in a folder ... (regsvr32)
to register all dlls in a folder go to the folder and execute the following command:
for %i in (*.dll) do regsvr32 %i
replace *.dll with *.ocx to register ocx files
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)
Total Pageviews