Load a Grid from a SQL Statement

Load a Grid from a SQL Statement

Use this code for a generic routine to load a grid from a SQL statement. The example is for Remote Data Objects (RDO) and Sheridan Software Systems’ grid, but it works with minor modification for any grid and resultset type. Also, you can load combo boxes in a similar fashion:

 Public Sub LoadGridFromSQL(TargetGrid As SSDBGrid, rdoConn _	As rdoConnection, Sql As String, Optional ClearGrid As _	Boolean = True)	Dim J As Integer	Dim rsResult As rdoResultset	Dim sAddItem As String	If ClearGrid Then		TargetGrid.RemoveAll	End If	TargetGrid.Redraw = False	Set rsResult = rdoConn.OpenResultset(Sql, _		rdOpenForwardOnly, rdConcurReadOnly, rdExecDirect)	With rsResult		Do Until .EOF			'Build add item string			sAddItem = vbNullString			For J = 1 To .rdoColumns.Count				If IsNull(.rdoColumns.Item(J - 1)) Then					sAddItem = sAddItem & vbNullString & vbTab				Else					sAddItem = sAddItem & _						.rdoColumns.Item(J - 1) & vbTab				End If			Next J			'Remove extra tab from end			TargetGrid.AddItem Left$(sAddItem, _				Len(sAddItem) - 1)			.MoveNext		Loop		.Close	End With 'rsResult	TargetGrid.Redraw = True	Set rsResult = NothingEnd Sub
Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several