D
Don Nablo
I am looking for a component in VB6 or vb.net that would take simple HTML
web form formating strings and populate an space on a windows form. The
addtional requirement of this is that when the user clicks on a link on the
created form my program can intercept and the URL and posted data, without
the component making an HTTP call.
It does not have to support graphics.
Does any one know of one? I know you can use a webControl but I have not
figured out how to intercept the Http calls to control it.
The base of what I am after is a way to format a windows form with a simple
script language like HTML.
Here is an example of the html
<FORM ACTION="./index.asp" METHOD=POST >
<div align="center">
<center>
<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=95%>
<TR>
<td width="247"><P align="right"><u><font size="+1" face="Arial">User
ID:</font></u>
<td width="323"><INPUT TYPE="text" NAME="UserID" VALUE="" SIZE=40
MAXLENGTH=50 >
</TR>
<TR>
<td width="247"><P align="right"><u><FONT SIZE="+1"
face="Arial">Password:</FONT></u>
<td width="323"><INPUT TYPE="password" NAME="Password" VALUE="" SIZE=40
MAXLENGTH=50 >
</TR>
<TR>
</TABLE>
</center>
</div>
</FORM>
web form formating strings and populate an space on a windows form. The
addtional requirement of this is that when the user clicks on a link on the
created form my program can intercept and the URL and posted data, without
the component making an HTTP call.
It does not have to support graphics.
Does any one know of one? I know you can use a webControl but I have not
figured out how to intercept the Http calls to control it.
The base of what I am after is a way to format a windows form with a simple
script language like HTML.
Here is an example of the html
<FORM ACTION="./index.asp" METHOD=POST >
<div align="center">
<center>
<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=95%>
<TR>
<td width="247"><P align="right"><u><font size="+1" face="Arial">User
ID:</font></u>
<td width="323"><INPUT TYPE="text" NAME="UserID" VALUE="" SIZE=40
MAXLENGTH=50 >
</TR>
<TR>
<td width="247"><P align="right"><u><FONT SIZE="+1"
face="Arial">Password:</FONT></u>
<td width="323"><INPUT TYPE="password" NAME="Password" VALUE="" SIZE=40
MAXLENGTH=50 >
</TR>
<TR>
</TR> <input type="reset" value="Reset" name="Reset">
</TABLE>
</center>
</div>
</FORM>