Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB App to Interdev?

Status
Not open for further replies.

rtshort

IS-IT--Management
Feb 28, 2001
878
US
How difficult would it be to make a VB App (database based) work on the web using Visual Interdev? I saw the other post on here about using Interdev compared to VB, but I'd kind of like some idea how difficult it would be for someone with a little VB experince to do.

I have a database app that I may want to make web based. If there is a better way than Interdev I'd appreciate knowing that too.

TIA Rob
Just my $.02.
 
If the VB app 'exposes' a COM interface, then you can call these very easily in VBScript or JScript.

<%
dim oVBApp
dim rsResults
set oVBApp = CreateObject(&quot;MyVBComObject&quot;)
set rsResults = oVBApp.aResultsetReturningFunction()
do until rsResults.eof
%>
<tr><td><%=rsResults(&quot;aColumn&quot;)%><td><tr>
<%loop%>
...and so on...
(thats the idea/benefit of COM).

However, in all liklihood your VB app is not written using COM (i.e. as Classes in an n-tier model). In any case Visual Interdev (after some training/experience) makes it fairly easy to put together reasonably complex database applications. Using the DataEnvironment and DTC's will speed up development work, if you can figure out their little foibles. (Content Management)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top