| topic | How do I use XML with VB? |
| issue | I have been hearing a lot about XML. How would I use it with Visual Basic? |
| version | VB6 |
There are several ways to use XML in a VB application:
There are several ways to do this:
The attached sample code demonstrates each technique. Click here to download the sample code.
| topic | How does the Data Environment designer fit into a three-tiered architecture? |
| issue | The Data Environment designer is very cool. But I am building three-tiered applications. Is there a use for the DE in three-tiered systems? |
| version | VB6 |
The most common use of the Data Environment (DE) is in two-tiered client/server applications in situations where you want to bind the controls directly to the DE. However, the DE can be used in middle-tier components. For example, you can add a DE to an ActiveX DLL or EXE project. Classes in that project can then use the DE for connections and commands, while still remaining stateless. The middle-tier component can then pass the recordset provided by the DE to the client tier so the client tier can use data binding.
| All contents © 2004 InStep Technologies, Inc. All rights reserved. |