Search Results

Showing results 1 to 24 of 24
Search took 0.01 seconds.
Search: Posts Made By: dilip_singh3
Forum: Visual Basic 4 / 5 / 6 Jan 2nd, 2008
Replies: 1
Views: 2,287
Posted By dilip_singh3
I have connected a datagrid to a recordset having multiple fields.
on entering value in One of the column of the datagrid and pressing enter
it gives a message (not error) automatically
...
Forum: Visual Basic 4 / 5 / 6 Dec 7th, 2007
Replies: 6
Views: 2,094
Posted By dilip_singh3
First tell abt
using what u have printed wav data to text file..???
Forum: Visual Basic 4 / 5 / 6 Dec 7th, 2007
Replies: 1
Views: 3,543
Posted By dilip_singh3
I m using VB6 and MS Access.
In MS Access table I have already set the decimal digit to 2 and it is showing only 2 digits after decimal in MS Access Table
but when I put the data in
MSH Flex...
Forum: Visual Basic 4 / 5 / 6 Dec 3rd, 2007
Replies: 0
Views: 1,266
Posted By dilip_singh3
How to select a particular row in MS Hierarchical Flexgrid control during coding.
I m not getting the desired property.
Forum: Visual Basic 4 / 5 / 6 Nov 22nd, 2007
Replies: 1
Views: 844
Posted By dilip_singh3
I am working in a multiuser VB 6 Project with MS Access as database.
I want to store details in LOG file.

for this we will have to write to the log file in all the events (into which we have...
Forum: Visual Basic 4 / 5 / 6 Nov 16th, 2007
Replies: 2
Views: 1,578
Posted By dilip_singh3
here is a sample code for it

Private Sub Savephoto()
On Error GoTo savePhoto_Error

Dim rsIMG As New ADODB.Recordset
Dim bytBLOB() As Byte
Dim intNum As Integer
...
Forum: Visual Basic 4 / 5 / 6 Nov 16th, 2007
Replies: 1
Views: 2,436
Posted By dilip_singh3
I have made a report in Crystal Report, fetching records by SQL Query from ODBC Datasource.
The query is taking too much time and error is comming after 50 seconds that
timeout expired.
What...
Forum: Visual Basic 4 / 5 / 6 Nov 16th, 2007
Replies: 1
Views: 2,636
Posted By dilip_singh3
I m working on a VB project with MS SQL SERVER 2000 as backend database and Crystal Report 8 for Reports.
The problem is :

When showing a report, after some moments error comes as

Microsoft...
Forum: Visual Basic 4 / 5 / 6 Nov 14th, 2007
Replies: 1
Views: 927
Posted By dilip_singh3
I m working on a multiuser VB project using MS Access as Backend Database.
I wanted to know that through VB coding, how to know that any other user is
currently accessing the MS Access DATABASE .
Forum: Visual Basic 4 / 5 / 6 Nov 13th, 2007
Replies: 6
Views: 2,392
Posted By dilip_singh3
form is an object. To study more about it, plz refer VB book of Wrox & Orelly Publication.
Forum: Visual Basic 4 / 5 / 6 Nov 12th, 2007
Replies: 3
Views: 971
Posted By dilip_singh3
One reason for not opening may be the lack of required resources such as some Active X Controls or DLLs. Or may have conflicting version of resources. Can u upload the application or the code, so...
Forum: Visual Basic 4 / 5 / 6 Nov 12th, 2007
Replies: 3
Views: 971
Posted By dilip_singh3
Just Try the same program on another system. n watch what happened.
dont forget to reply.
Forum: Visual Basic 4 / 5 / 6 Nov 12th, 2007
Replies: 0
Views: 1,892
Posted By dilip_singh3
I m working on Multiuser VB Project with MS Access as Database.
I just want to check (from codding) how many users are currently accessing
the backend database .
Is there any way ???
Forum: Visual Basic 4 / 5 / 6 Nov 7th, 2007
Replies: 10
Views: 6,882
Posted By dilip_singh3
Is there any way or API to detect the Screen Resolution in VB 6.
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2007
Replies: 1
Views: 3,221
Posted By dilip_singh3
I am using a connection object from code and a DataEnvironment in a VB application

Set CON = New ADODB.Connection
CON.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data...
Forum: Visual Basic 4 / 5 / 6 Oct 31st, 2007
Replies: 1
Views: 2,204
Posted By dilip_singh3
How many tables we can create in a single MS Access database ?

I m going for a multiuser project .
I dont know how many tables I will have to make.
Forum: Visual Basic 4 / 5 / 6 Oct 22nd, 2007
Replies: 1
Views: 6,384
Posted By dilip_singh3
Actually in an application (VB 6 & CRYSTAL REPORT 8) I got a problem with RTF Export option. The settings (Tab settings, Paragraph settings etc.) got changed in RTF file.
One more thing is that,...
Forum: Visual Basic 4 / 5 / 6 Oct 19th, 2007
Replies: 4
Views: 1,160
Posted By dilip_singh3
instead of sPath = App.Path & "/../MasterDB"
use sPath = "\\SERVER\...\MasterDB.MDB"
Forum: Visual Basic 4 / 5 / 6 Oct 13th, 2007
Replies: 1
Views: 1,522
Posted By dilip_singh3
using the bold lines below in the code we can handle simultaneous access

Private Sub Command1_Click()
CNN.BeginTrans
If Not VALIDATE() Then Exit Sub
Call GENERATE_EMP_ID
...
Forum: Visual Basic 4 / 5 / 6 Oct 13th, 2007
Replies: 1
Views: 1,522
Posted By dilip_singh3
I am using MS Access database by a vb6 program for multiuser environment.
In the program I have written code for autogenerating employee_id which is primary key in the table.
When entering records...
Forum: Visual Basic 4 / 5 / 6 Oct 13th, 2007
Replies: 4
Views: 2,082
Posted By dilip_singh3
Actually u should try urself to make it.

specify what library management do u want?
book library or video library management?
Forum: Visual Basic 4 / 5 / 6 Oct 13th, 2007
Replies: 3
Views: 3,079
Posted By dilip_singh3
Clearfy urself
Do u want to know how to query database using SQL or
do u want to connect SQL Server.
Forum: Visual Basic 4 / 5 / 6 Oct 13th, 2007
Replies: 4
Views: 3,920
Posted By dilip_singh3
Thanks.

but here also

Dim wrkJet As Workspace
Dim dbProgram As Database
Dim wOrders As Recordset
Set wrkJet = CreateWorkspace("", "Admin", "", dbUseJet)
Set dbProgram =...
Forum: Visual Basic 4 / 5 / 6 Oct 12th, 2007
Replies: 4
Views: 3,920
Posted By dilip_singh3
I am using an Access Database through Visual Basic 6.
Is there any other way to access the database excluding the following code.

Set CNN = New ADODB.Connection
str = "\\SYS8\DATAX\EMP.MDB"...
Showing results 1 to 24 of 24

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC