Speed Up ToolBox Opening
31-Jul-0909 Leave a comment
IT and business subjects
31-Jul-0909 Leave a comment
30-Jul-0909 Leave a comment
Also Crystal Decisions.Shared lives in C:\WINDOWS\assembly\GAC_MSIL\CrystalDecisions.Shared\10.5.3700.0__692fb ….
Unable to navigate to this or find a copy of the file. So for GAC use following
http://social.msdn.microsoft.com/forums/en-US/vstscode/thread/b84b52e6-5908-44f9-a2cd-3f604477a4d8/
Also see that the Config file "FxCopCmd.exe.config" may be edited. See
27-Jul-0909 Leave a comment
22-Jul-0909 Leave a comment
21-Jul-0909 Leave a comment
ComboBox1.DataSource = System.Enum.GetValues(GetType(PeopleNames))
Dim nameid As PeopleNames = CType(ComboBox1.SelectedValue, PeopleNames)
Note there should be no need to set the DisplayMember. If it does not work check that you have nothing on the control > DataBindings > Text binding
The variable “nameid” contains a 0, or 1, or 2 etc. depending on the value of the enumerated item that is currently selected.
May also bind to VS enumerations. Good use would be to bind to
ListBoxChartType.DataSource = System.Enum.GetValues(GetType(System.Windows.Forms.DataVisualization.Charting.SeriesChartType))
21-Jul-0909 Leave a comment
C:\Documents and Settings\(User Name)\Local Settings\Application
Data\Microsoft\Office
In that folder look for: Excel.qat, PowerPoint.qat, Word.qat, etc.
So for example, if you want to transfer your Excel toolbar settings to
another computer, or after you reinstall Office 2007, just copy your custom
Excel.qat to that same folder, replacing the original.
HKEY_CURRENT_USER\Software\Microsoft\Office\12.0
You can just export the whole "12.0" registry tree to a .REG file, and store
it somewhere. When you need to use it (after reinstall or on a different
computer), just double click on that REG file to update the registry. Before
you do that, I suggest that you backup your registry just to be safe, if
something goes south.
Good luck
16-Jul-0909 Leave a comment
This blog is intended for non-IT posts.
Not certain of content at the moment
14-Jul-0909 Leave a comment
EXECUTE sys.sp_spaceUsed ‘dbo.TableName’
To determine for more tables need to use a cursor. See below and other articles ( unchecked )http://www.mitchelsellers.com/blogs/articletype/articleview/articleid/121/determing-sql-server-table-size.aspx
14-Jul-0909 Leave a comment