Link to home
Start Free TrialLog in
Avatar of sarahc
sarahc

asked on

VB6 Frames and Webclasses

Has anyone successfully used frames with VB6 Webclasses.  I am looking for an example.  The top template will include information loaded into combo boxes from which the user selects query criteria and the hits lookup.  The bottom template would return tabular results.  I do not wish to resend the top template since loading the combo boxes every time query results are returned requires transferring data which does not have to be updated between queries.
Avatar of TimeHawk
TimeHawk

From the MSDN library disk (Search for Webclass):

HTML has a feature that allows you to divide the display area in a browser into two or more sections. These sections are called frames. Each frame can display content from a different Web page. For example, suppose you are working with a catalog application. You might use frames to display a list of all items in the catalog in one frame and detail for the selected item in a second frame.

Frames are created from an HTML page that contains tags known as FRAMESET tags. The FRAMESET tags indicate how many frames the page should contain, their size and position, and the HTML pages that should be displayed in each frame. The browser accesses the page containing the frameset information, processes the tags, and shows the resulting information to the user.

If you want to use frames with a webclass application, the simplest way to do it is to use an HTML template file to contain modified frameset information, add it to your webclass, then link webitems or events to each frame. The following HTML code shows how you might create a template file with frameset information.

<FRAMESET frameBorder=0 cols=30%,70% TARGET=Right MARGINHEIGHT=0>
   <FRAME id=Left>
   <FRAME id=Right>
</FRAMESET>

Normally, you would need to include information telling the browser what content to display in each frame. However, in a webclass application, you do not need to do this because you can link webitems or custom events to each frame and use the processing defined for those items to tell the webclass what to do. The following figure shows how the .htm file shown above would display in the page designer prior to connecting any events:

For the frames above, you might link a custom event called ShowList to the first frame, and a custom event called ShowDetail to the left frame. You would define processing for ShowList that writes a list of the items in your catalog to the leftmost frame. You would define processing for ShowDetail that displays detail information for the first item in the list. When the browser opens the frameset template file, it parses these two events and displays the results. The user can then work with the data in the list and detail frames.

For More Information   See "Frameset" in the Internet Client SDK for more information on the frameset tags.

Avatar of sarahc

ASKER

I am clear on the information provided above, however the documentation on frames and webclasses for VB6 is less than 2 pages in length and notes how to reference each frame.  

I am looking for a sample HTML template used with VB6 Webclasses where the setup of tags etc. has been used successfully -- I can't find one.  There are questions from others in the MSN Newsgroups who are trying to use frames as well -- some may have gotten this working but it is not clear that this is the case.

Anyone willing to share a very simple VB6 Webclass ap where a frameset has been used would be doing many of us a great favor.

Thanks...
Avatar of sarahc

ASKER

Edited text of question
Avatar of sarahc

ASKER

Adjusted points to 255
Avatar of sarahc

ASKER

Adjusted points to 290
Avatar of sarahc

ASKER

Adjusted points to 300
Avatar of sarahc

ASKER

Adjusted points to 310
Avatar of sarahc

ASKER

Adjusted points to 325
ASKER CERTIFIED SOLUTION
Avatar of Ludolf
Ludolf

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial