Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for Nithya.S

Hi, Am new to VB. Can anyone tell me the code to import data from a DB table and display it in a farpoint spread control 3.0??? VB6.0 code is reqd., thanks in advance.

Member Avatar for ratheeshpranava
0
1K
Member Avatar for Nithya.S

Private Sub Command1_Click() Dim a As New FileSystemObject a.CreateTextFile "D:\Documents and Settings\nithya.s\Desktop\Medius.txt" a.OpenTextFile "D:\Documents and Settings\nithya.s\Desktop\Medius.txt", ForWriting, True Dim b As TextStream Set b = a.OpenTextFile("D:\Documents and Settings\nithya.s\Desktop\Medius.txt", ForWriting, True) b.WriteLine "Nithya,324,Raman,330,Sai,314,Raja,357,Balaji,349,Anand,336,Sasirekha,335,Shivakumar,751,Senthil,733,Sampath,735,Kalyani,395,Ganesh,313,Mahu,304,Thiru,303,Zuhaib,339" b.Close a.OpenTextFile "D:\Documents and Settings\nithya.s\Desktop\Medius.txt" Set b = a.OpenTextFile("D:\Documents and Settings\nithya.s\Desktop\Medius.txt", ForReading, True) Text1.Text = b.ReadLine End Sub …

Member Avatar for vb5prgrmr
0
115
Member Avatar for Nithya.S

Hi, I want keypress event sample code.. I have a textbox and I want only numbers to be allowed inside the textbox.. help me out plz..thanks in advance. I tried: Private Sub Text1_KeyPress(KeyAscii As Integer) If (58 > KeyAscii > 47) Then Else MsgBox "Enter only Numbers" Text1.Text = "" …

Member Avatar for selvaganapathy
0
207