1
2
3
4
Private Sub cmdAddAmbassador_Click()
' Run when the user clicks the "<" button to add an ambassador to an event

...

VB.NET Many-to-many list box inter...

by Nathan, January 25, 2010 13:56, 2 refactorings, tagged with microsoft access, many-to-many, vba

VBA, not VB.NET.

This is...

D5145c421cd25af6fa577c15219add90 Talk
1
2
3
4
Option Explicit

'Const HKEY_LOCAL_MACHINE = &H80000002
...

VB.NET VB6 Registry Editing Class

by antelopelovefan.com/id, January 29, 2009 15:16, No refactoring

This is a simple VB6 class ...

040ffc7f3327b05f01c54a8bef3ba60a Talk
1
2
3
4
        Private Function fIsAppRunning() As Boolean
            'Looks to see if Lotus Notes is open

...

VB.NET Remove the Evil GOTO

by hcase, September 25, 2008 00:43, 3 refactorings, tagged with goto, evil, vb, lotus notes

This horrible code I inheri...

9f4136a119aa096b3b4faf1c33a7e08e Talk
1
2
3
4
Sub cleanupSheet()
' This function asks for two input the first is the sheet you want to clean up 
' The second is the Column and cell you wish to start at, e.g. A1
...

VB.NET Column Cleanup - Excel 2002...

by JJ, December 16, 2007 12:14, 1 refactoring, tagged with vba

Ok So i am hoping to get so...

817666c751d2fbebeba726ba52d1c977 Talk
1
2
3
  Private Function GetPreviousMonthsXml(ByVal months As Integer, ByVal startDate As Date, ByVal xDoc As XmlDocument, ByVal path As String, ByVal nodeName As String) As XmlDocument
...

VB.NET Load XmlNodeList into an Xm...

by travis, October 01, 2007 08:16, No refactoring, tagged with xml, node, xmldocument, vb, .net, nodelist, asp.net

Basically I'm just try to l...

918aabb05e77cfa8e40d2a76a5168326 Talk