| Thread | Last Post | Replies |
|
| ADO Recordset & XML | 24 May 2005 01:42 GMT | 1 |
I have a hierarchical ADO recordset that I persist into a DOMDocument40 object. That's ok. Then I try to access the data node of the document, by doing: Set oNData = oDoc.selectSingleNode("xml/rs:data")
|
| VB to MySQL connection | 24 May 2005 01:11 GMT | 2 |
Hello, I am new to VB and MySQL connections. I can use ether VB6 or VB.NET. I need to make an ODBC connection to MySQL and then I need to have the VB program poll the table
|
| Can you use stored procedures with a web page? | 23 May 2005 16:12 GMT | 1 |
Can you use stored procedures with a web page? I used Billy Hollis article on microsoft.com and it showed you how on a form page; not a web form page. I used his program like a cookbook with my database and it worked great as a stand alone program.
|
| Use variables in SQL statement...how? | 23 May 2005 10:44 GMT | 1 |
I am new to VB, and not to mention, SQL. I am currently trying to write a small program that I can retrieve some data from a MySQL database with a given input. I managed to connect to the MySQL and stuff, and I can retrieve data
|
| VB6 don't see events of the implemented interface | 22 May 2005 23:34 GMT | 2 |
I have an interface class like Interface_1 with event and methods like event1,event2 , M1() , M2 If I implemet this interface in other calss like myClass ; I can implement the mothods M1() , M2() only but cannot raise the events event1,event2
|
| Force changes to disc? | 21 May 2005 14:53 GMT | 3 |
I'm using code like this to update a record in an .MDB file: rs.seek "=", TheRecordImLookingFor rs.Edit rs.Field(7) = SomeValue
|
| generate emails out of excel... ? possible ? | 20 May 2005 22:12 GMT | 1 |
Ok image an excel spread sheet, it's not a very complicated sheet.. It has rows, and there are columns... column say B has customers emails, right now the person who does it, manually pastes each line to generate an email and sends it and repeats the process for each new row
|
| VB6 + SQL Server 2000 stored procedure problem | 20 May 2005 18:39 GMT | 3 |
This is my problem: I have a stored procedure that: 1. Executes a sub-procedure to increment a sequence table and returns a value.
|
| Return several variables from recordset | 20 May 2005 13:06 GMT | 2 |
With Access VBA, I open a recordset in a function from a global module. I'd like to return several things to the calling form, such as record count, certain FKs, etc. I can set the value of the function and get one item back. But how do I get
|
| Populate MSHFlexGrid with code? | 20 May 2005 09:08 GMT | 1 |
I use code to populate the MSFlexGrid control throughout our program. There are no bound data controls. I am in a situation where I really need the MSHFlexGrid control instead and would like to poulate it with code without binding it to any recordsets. Is this possible? Anyone ...
|
| Data Report Help | 20 May 2005 04:29 GMT | 1 |
I need help with a summary on a report footer. I have these fields in an access database: Ticket #, Total Lines, Xfer_Order. The field Xfer_Order contains "Transfer", "Order" and "B-Order".
|
| record count | 20 May 2005 00:50 GMT | 1 |
I am trying to determine when a recordset has more than a single record. I thought that rs.RecordCount would give me the number of records in the recordset. It wasn't working
|
| Update Access Database | 19 May 2005 17:26 GMT | 2 |
I have a tempory database that I upload to our website daily that is a subset of our master data base that we use inhouse. Below is where I take the database from the website (Which is previously downloaded from the website to our local drive) and empty the database.
|
| SQL Server Cursor | 19 May 2005 16:59 GMT | 1 |
Hi all.. I have a Stored procedure that opens a cursor. I want to know if there´s way to access this cursor from VB. I tried using Set rs = cmd.Execute but it didn´t work, i think because the cursor is not as output return. Below
|
| DAO Compatability with MS Access 2K | 19 May 2005 16:34 GMT | 4 |
I'm trying to port all my Access 97 files to Access 2K. However since the application I'm supporting uses DAO, I was wondering if that's gonna be an issue? My VB 6 currently uses Microsoft DAO 3.51 Object Library I've tried it on my own to connect to a Access 2K but ran into some
|