Forum: Visual Basic 4 / 5 / 6 Jun 3rd, 2005 |
| Replies: 3 Views: 5,342 Please review the following code and give your feedback.
I am using this code
Option Explicit
Private Declare Function GetWindowLong Lib "user32" Alias _
"GetWindowLongA" (ByVal hwnd As... |
Forum: Visual Basic 4 / 5 / 6 Jun 3rd, 2005 |
| Replies: 3 Views: 5,342 I have added this code, but still the "Horizondal Scroll Bar" is not appearing ...
Other than this code, any setting need to add? |
Forum: Visual Basic 4 / 5 / 6 Jun 1st, 2005 |
| Replies: 3 Views: 5,342 The text in the Combo box has lenthly text, but combo box has no horizondal scroll bar. I want to Add Horizondal Scroll bar to Combo Box.
Advanced Thanks
Raghuraja |
Forum: Visual Basic 4 / 5 / 6 May 27th, 2005 |
| Replies: 0 Views: 8,938 In my Project we are building Query with different parameters.
Passing this parameter to Backend (Oracle is Backend database we are using) and it returned the recordset and using. Is it possible to... |
Forum: Visual Basic 4 / 5 / 6 May 27th, 2005 |
| Replies: 3 Views: 3,505 Thanks Comatose.
I have implemented this (SendMessage - API) and now the speed is increased.
Now Less than 1 min (9 to 15 sec only). I am wonders how fast the speed of the Combo increased after... |
Forum: Visual Basic 4 / 5 / 6 May 25th, 2005 |
| Replies: 1 Views: 2,420 Easy Way to Connect Oracle from VB
Install Oracle Client on your system
'Connection Object for Oracle Database connection
Dim con As ADODB.Connection
'Recordset Object for Oracle Tables
... |
Forum: Visual Basic 4 / 5 / 6 May 25th, 2005 |
| Replies: 2 Views: 4,507 You can not assign recordset to MS Flexgrid.
You can assign values to manually.
Open Connection
Open Recordset
Loop Through Records
Put to Flex Grid
Close Recordset |
Forum: Visual Basic 4 / 5 / 6 May 25th, 2005 |
| Replies: 3 Views: 3,505 In my project I am using vb6 and Oracle as backend.
I am using Combo box and Item data (Name as display and id in itemdata)
Now I am faceing problem. The Master records has grown 10,000 records.... |