Category Archives: Uncategorized

ASUS Eee State EP121 is AWESOME!

Posted in Uncategorized | Leave a comment

Poor User-Interface Decision

This is not a Close button. It is a Remove Item button for the below list.

Posted in Uncategorized | Leave a comment

Home

  Home 2009 NR 120 minutes Award-winning photographer Yann Arthus-Bertrand directs this breathtaking ode to planet Earth, an aerial voyage that captures the interdependence of the world’s ecosystems — and the bruises left behind by human indifference. From the agricultural … Continue reading

Posted in Uncategorized | Leave a comment

Clear Recent

The following script will clear out “recent” documents, such as temporary files, temporary and cached files of Visual Studio, and so on. ftp://missico.net/ClearRecent.vbs Clear Recent.vbs ‘HKCU\Software\Microsoft\Internet Explorer\Explorer Bars\{C4EE31F3-4768-11D2-BE5C-00A0C9A83DA1}\FilesNamedMRU ‘HKCU\Software\Microsoft\Internet Explorer\Explorer Bars\{C4EE31F3-4768-11D2-BE5C-00A0C9A83DA1}\ContainingTextMRU ‘HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\LastVisitedMRU ‘HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\OpenSaveMRU ‘HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StreamMRU ‘HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts ‘HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Map Network Drive MRU ‘HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder … Continue reading

Posted in Uncategorized | Leave a comment

.NET 3.5 Framework Exception Listing

  Use .NET Reflector, add all the assemblies for a specific framework, then search for "exception". You can copy the list by selecting all then copy. I done this for 3.5 and put into an Excel workbook. Very nice to … Continue reading

Posted in Uncategorized | Leave a comment

Namespace Aliases Tips

// These types are aliased to match the unmanaged names used in interop using BOOL = System.UInt32; using WORD = System.UInt16; using Float = System.Single;

Posted in Uncategorized | Leave a comment

StopSwitch Stops Execution for Just-In-Time Debugging

Module Private stopSwitch As New BooleanSwitch("Stop", "Stops execution to allow for Just-In-Time debugging.") Procedure where you want to stop Usually, the first statements in the assembly (application executable or dynamic-linked-library). If stopSwitch.Enabled Then Stop End If App.Config <?xml version="1.0" encoding="utf-8" … Continue reading

Posted in Uncategorized | Leave a comment

Hiding Properties From Designer & Editor

Imports System.ComponentModel <Browsable(False)> _ <DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)> _ <EditorBrowsable(EditorBrowsableState.Always)> _ Public WriteOnly Property DataSource() As DataTable Set(ByVal value As DataTable) If Not iSuppli.Core.Design.DesignMode Then SetDataSource(value) End If End Set End Property [System.ComponentModel.Browsable(false)] [System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden)] [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)]

Posted in Uncategorized | Leave a comment

Hard-Coded Paths Alternatives

See My.Computer.FileSystem.SpecialDirectories. Avoid hard-coding paths. Either use the following methods of the System.Windows.Forms namespace or use the methods of the System.Environment. (The output is from a Windows Application and not from a Web Application or Web Site.) Imports System.Windows.Forms Imports … Continue reading

Posted in Uncategorized | Leave a comment

HOWTO: Define DEBUG constant for a Web Site project

Is it possible to define the DEBUG constant for Web Site projects in Visual Studio 2005? I can see how it is done for a Windows Project, but not for a Web Site project. Since ASP.NET 2.0 projects do not … Continue reading

Posted in Uncategorized | 1 Comment