Determining Who Has Opened a Shared Folder
Ever forgot to un-share a folder that you shared with a colleague or friend? Ever forgotten the path of a folder that you shared? Want to know who has opened
Ever forgot to un-share a folder that you shared with a colleague or friend? Ever forgotten the path of a folder that you shared? Want to know who has opened
This example retrieves items in a list that have been checked and simply outputs them to the Output window. Assume the list has been bound to a DataSource, like a
One of the most common errors while porting from 32-bit Code to a 64-bit code is in the use of Math.h library functions. Suppose you use a call to the
Suppose you have a button that uses a Default property (set to true) and are editing text in a multiline text box on the same form. When you press the
When you’re freeing memory, remember to set the memory contents to 0 so no other malicious program can read it after it’s been freed. //For example#define DATA_SIZEBOOL function(){ char pszData
Creating a large folder hierarchy in SharePoint Document Library using Microsoft’s standard GUI takes a lot of time—which is unnecessary. Here’s an easier way: Create the folder hierachy first on
There are actually two ways in which you can find out whether a given column name is an identity or not in SQL Server: Method One: Select ColumnProperty(Object_id(‘Table_Name’), ‘FieldName’, ‘IsIdentity’)
You can make the Java Secure Socket Extension list the supported cipher suites using the following code: SocketFactory SSLF=SSLSocketFactory.getDefault(); SSLsoclu=SSLF.createSocket(“12.110.20.211”,443); String[] cipher_suites=((SSLSocket)SSLsoclu).getSupportedCipherSuites(); for(int i=0;i
While this VB-to-the-Max tip is great, here are a few additional tips to either help you resolve this “bug” or work around it. Firstly, Microsoft has reported this as a