Forum     

Go Back   Digit Technology Discussion Forum > Portables, Peripherals and Electronics > QnA (read only)
Register FAQ Calendar Mark Forums Read

QnA (read only) Mods please help transfer the contents of this forum to proper sections. :)


 
 
LinkBack Thread Tools Search this Thread Display Modes
Old 16-08-2005, 06:11 PM   #1 (permalink)
Right Off the Assembly Line
 
Join Date: Jul 2005
Location: coimbatore
Posts: 30
Default vb data grid help


hi

how to use vb data grid controls in vb

pls any one suggests to me.

bye.,
saravana.
saro_gn is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 17-08-2005, 12:18 PM   #2 (permalink)
String Phreak
 
mediator's Avatar
 
Join Date: Mar 2005
Location: In ur Evil Mind!
Posts: 2,457
Default

You have to setup databasename,datasource of datagrod first!

Here's a simple coding!!
******************************

''This is for addition of new data
Dim init As String
Private Sub Command1_Click()
Data1.Recordset.AddNew
Text1.SetFocus
End Sub

''For modification
Private Sub Command2_Click()
Data1.UpdateRecord
End Sub


''For deletion
Private Sub Command3_Click()
Data1.Recordset.Delete
Data1.Recordset.MoveNext
If Data1.Recordset.EOF = True Then
Data1.Recordset.MovePrevious
End If
End Sub


''For searching of data
Private Sub Command4_Click()
Dim st As String
st = Text5.Text
Data1.Recordset.MoveFirst
Data1.Recordset.FindFirst ("Name = '" + st + "'")
'("Name = '"+st+"'"
' "Name" is the fieldname to be searched, "st" is searched for
If Data1.Recordset.NoMatch = True Then
Text5.Text = "No match for : " + st
Else
Data1.Recordset.OpenRecordset
End If
End Sub


End Sub


****************************
__________________
Bad Bad server.....No candy for u!
mediator is offline  
Old 17-08-2005, 10:47 PM   #3 (permalink)
Human Spambot
 
tuxfan's Avatar
 
Join Date: Feb 2004
Location: Mumbai
Posts: 2,653
Default

saro_gn, do you have MSDN installed in your machine?
__________________
:: Free hosting and free domain names available in special cases. Conditions apply ::
tuxfan is offline  
Old 18-08-2005, 09:29 AM   #4 (permalink)
Right Off the Assembly Line
 
Join Date: Jul 2005
Location: coimbatore
Posts: 30
Default

hi

thank U very much
saro_gn is offline  
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by abhidev
- by Sujeet
- by Sarath
- by Krow

Advertisement




All times are GMT +5.5. The time now is 08:41 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2