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
~6K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for rexgb_34

i want to disable some letter in a keyboard. How can i do it using VB6 code? cant you pls help me...

Member Avatar for rexgb_34
0
157
Member Avatar for rexgb_34

i have a problem in VB6. i have a frmMain, DataEnvironment and Datareport. My form have thirty (30) textboxes to fill-in. at first it all works fine since i filled in only few txtboxes, but when i filled-in all textboxes with many data i could not save the data anymore... …

Member Avatar for rexgb_34
0
132
Member Avatar for S.N.Mazumder

'Check this out. VB6 interact with Excel [code]Dim xl As excel.Application Dim sAmount As String Private Function getTotalSales() sAmount = Str(xl.ActiveSheet.Range("SalesTotal").Value) Label1.Caption = "Total Sales: " & "P " & Trim$(FormatNumber(sAmount)) Text3.Text = Str(xl.ActiveSheet.Range("JanSales").Value) Text2.Text = Str(xl.ActiveSheet.Range("FebSales").Value) Text1.Text = Str(xl.ActiveSheet.Range("MarSales").Value) End Function Private Sub Command1_Click() xl.Visible = True End Sub …

Member Avatar for rexgb_34
1
6K

The End.