| Thread | Last Post | Replies |
|
| [VB6] combo to search change - can't figure it out | 31 Dec 2004 20:45 GMT | 3 |
for your info - I'm a newbe. Code is at the bottom. Access dbase (each form ca. 10 KB) if my explanations are not enough (probably they aren't).
|
| how can i build this group by query | 31 Dec 2004 20:22 GMT | 1 |
my self avinash i m developing one application in vb 6 and sql server 7 i have one table name - Salesvoucher which has fields like voucherno,voucherdate,debitto,creditto,amount.
|
| Data Report Designer and SHAPE command | 31 Dec 2004 17:20 GMT | 1 |
I am creating a DataReport using the Data Report Designer (VB6) and using the following SHAPE command to create a hierarchical recordset of Client/FoodService records: mstrSQL = "SHAPE {SELECT * FROM Client} AS Client " & _
|
| Problem deleting Form from project | 31 Dec 2004 16:31 GMT | 1 |
I can not find a way to delete a form shown in my Project window. The form has no code and no members but when I click on it in the project window I get the following error message- Error accessing file. Network connection may have been lost.
|
| How do you get MySQL to return the table names in the resultset when more than one table is in the select statement using ADO ? | 31 Dec 2004 12:45 GMT | 3 |
This should be a <duh> but I can't find the answer. For example: SELECT Company_Defaults.CompanyID, Company.CompanyID FROM Company_Defaults Left Join Company on Company_Defaults.CompanyID =
|
| SQL Speed | 31 Dec 2004 11:27 GMT | 2 |
Ive been working on a program that uses SQL Server and Ive noticed that the same SQL query run in Query Analyzer is often 10 times faster than the same query in VB. Besides, thats just VB, is there a good reason for this or could I be doing something wrong to make it that
|
| populate subform | 31 Dec 2004 09:01 GMT | 12 |
How would I populate a subform within an unbound MS Access (2003) form? The main form populates fine with an ADO connection. But I need to pass a parameter to the subform and then populate that as well. Any suggestions or source of information?
|
| TRANS/ROLLBACK Using ADO | 31 Dec 2004 06:16 GMT | 7 |
I'm in the process of writing an update function within a VB6 application. I have a stored procedure that I'm calling that simply accept parameters and performs an INSERT into a table. My application basically has to loop thru a listview control and insert,
|
| how to capture the text in a textbox into a sql select statement? | 31 Dec 2004 02:17 GMT | 7 |
say, I have 2 textboxes (txt1, txt2) in form1. when the user enters a value in txt1 and click the command button, a value should be returned to txt2. Here's what I put in the procedure: Set sdoRs = sdoConn.Execute("select mslink as msl from slope where slope_num
|
| Create Database | 30 Dec 2004 04:03 GMT | 3 |
Hello The code snippet below has an error when I compile. The problem occurs on the line that looks like this.... What am I doing wrong and what should it be? Thanks
|
| Trapping ADO Connection Errors | 29 Dec 2004 21:35 GMT | 3 |
I have a VB6 application that uses ADO to communicate with SQL Server 2000. The application works fine, however I seem to have issues with trapping connection errors with ADO. I have a basic Error Handler in all my functions and display both VB and ADO
|
| Using a view with recordsets | 29 Dec 2004 18:01 GMT | 3 |
Here is a brief description of my problem: I have two databases on two different servers. The boxes cannot communicate with each other. The system I am developing can connect to each database (one must be disconnected before I can connect to the
|
| Text Type Column | 29 Dec 2004 17:39 GMT | 1 |
I am using ADO with VB6 and SQL2000 to retreive data from tables with text type columns. Sometimes works, sometimes not. Syntax as follow Dim RS As ADODB.Recordset Set RS = CursorGet("sp_RetrieveData", Var1, Var2)
|
| Insert Data from Access Database to Oracle ? | 29 Dec 2004 13:22 GMT | 2 |
Is there any fastest way to Insert Data from 67 Access Databases of about 10,000 records each (Total 670,000 records) to One Table in Oracle ? Curently I am using VB-6 and reading each record of each database using ADO AddNew/Update Method to Insert into Oracle,but it takes much ...
|
| Running HTML Help | 29 Dec 2004 07:17 GMT | 1 |
I have written a Help file to go with my application, but I have written it in HTML format with an extension of.chm I cannot seem to run it from within my app, I am using something like this Call ShowHelp("C:\Program Files\NewProg\Help\NewProg.chm")
|