PRB: DBGRID Can Cause VB To Crash When Scrolling HorizontallyID: Q182289
|
Using the Remote Data Control and DBGrid can cause Visual Basic to crash when scrolling horizontally in the DBGrid (dbgrid32.ocx).
Either size the grid so there is no need to scroll horizontally or implement the FlexGrid control.
Microsoft is researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
This problem occurs in Windows 95 and Windows 98.
if exists (select * from sysobjects
where id = object_id('dbo.test') and sysstat & 0xf = 3)
drop table dbo.test
GO
CREATE TABLE dbo.test
( id int NOT NULL , a char (255) NULL , b char (255) NULL ,
c char (255) NULL , d char (255) NULL )
GO
NOTE: Please make sure to choose an appropriate database, such as pubs,
in which to create this Table.
DataSource = MSRDC1
Dim con As rdoConnection
Dim rs As rdoResultset
Set con = rdoEngine(0).OpenConnection("", _
rdDriverNoPrompt, _
false, _
"DRIVER={SQL Server};" _
& "SERVER=<server_name>;" _
& "UID=<userID>;" _
& "PWD=<password>;" _
& "DATABASE=<databasename>")"
For i = 1 To 30
Set rs = con.OpenResultset("INSERT INTO test (id,a,b,c)" _
& " VALUES (" & i & " ,'" & CStr(i) " _
& "','2222222222222222222222222','3333333333333333333333333')")"
Debug.Print i
Next i
Additional query words:
gpf kbVBp500 kbVBp kbWinOS98 kbDSupport kbdse kbADO kbVBp600 VB6Test
KBDSE
Keywords :
Version :
Platform : WINDOWS
Issue type : kbprb
Last Reviewed: June 21, 1999