Board index » cppbuilder » newbie html question ...

newbie html question ...

I added the Microsoft Internet Controls (WebBrowser_V1Proxy,
WebBrowserProxy and ShellFolderViewOCProxy are the components)  from IE
4.01 to my BCB 3 by simply using the Import ActiveX option.  Where can i
get information about using these components (mainly WebBrowser) in
detail? I have found little on the borland webpage so far.

thanks in advance.

 

Re:newbie html question ...


Check the Microsoft website, especially the developer's library
(http://www.msdn.com/library/, I think).

--
------
Mark Cashman [TeamB], creator of The Temp{*word*203}Doorway at
http://www.temporaldoorway.com
- Original digital art, writing, and more -
C++ Builder / JBuilder Tips and The C++ Builder Programmer's Webring
(Join us!)
http://www.temporaldoorway.com/workshop/software.htm
------

Re:newbie html question ...


Search the MSDN site on WebBrowser. There seem to be some info. MSJ had
an article on it as well ( don't know the issue, sorry ). The way I did
that - looked at the _tlb.h file to see what methods where generated for
the control.

HTH,
Alex

Quote
A G wrote:

> I added the Microsoft Internet Controls (WebBrowser_V1Proxy,
> WebBrowserProxy and ShellFolderViewOCProxy are the components)  from IE
> 4.01 to my BCB 3 by simply using the Import ActiveX option.  Where can i
> get information about using these components (mainly WebBrowser) in
> detail? I have found little on the borland webpage so far.

> thanks in advance.

--
HotSend - portable documents technology
http://www.hotsend.com/
eFax - get your faxes via email - Free !
http://www.efax.com

Re:newbie html question ...


Thank you, I found everything I needed there, cept one thing.  When I try to
create the TWebBrowser at run time it says its an undefined symbol.  I used
the line ...

TWebBrowser_V1Proxy *webCtrl = new TWebBrowser_V1Proxy(parent);

like a normal VCL component, what is it im doing wrong?
sorry if this is newbie question

Quote
Alex Bakaev [TeamB] wrote:
> Search the MSDN site on WebBrowser. There seem to be some info. MSJ had
> an article on it as well ( don't know the issue, sorry ). The way I did
> that - looked at the _tlb.h file to see what methods where generated for
> the control.

> HTH,
> Alex

> A G wrote:

> > I added the Microsoft Internet Controls (WebBrowser_V1Proxy,
> > WebBrowserProxy and ShellFolderViewOCProxy are the components)  from IE
> > 4.01 to my BCB 3 by simply using the Import ActiveX option.  Where can i
> > get information about using these components (mainly WebBrowser) in
> > detail? I have found little on the borland webpage so far.

> > thanks in advance.

> --
> HotSend - portable documents technology
> http://www.hotsend.com/
> eFax - get your faxes via email - Free !
> http://www.efax.com

Re:newbie html question ...


Which symbol is undefined? Does this happen at run time or compile time?
Is parent supposed to be Parent?

--
------
Mark Cashman [TeamB], creator of The Temp{*word*203}Doorway at
http://www.temporaldoorway.com
- Original digital art, writing, and more -
C++ Builder / JBuilder Tips and The C++ Builder Programmer's Webring
(Join us!)
http://www.temporaldoorway.com/workshop/software.htm
------

Re:newbie html question ...


I have a button that opens a new TabSheet on a PageControl, then is suppose
to create a TWebBrowser_V1Proxy component on that new tab (aligned to fill
the client area).
it tells me 'TWebBrowser_V1Proxy' is undefined when I try to compile the
application. The line the error occurs is as follows...

TWebBrowser_V1Proxy *webCtrl = newTWebBrowser_V1Proxy(pPage);

pPage being the newly created TabSheet on the page control, I have another
button that does the same but places a richedit component, it works fine
writen the same way.

Quote
Mark Cashman [TeamB] wrote:
> Which symbol is undefined? Does this happen at run time or compile time?
> Is parent supposed to be Parent?

> --
> ------
> Mark Cashman [TeamB], creator of The Temp{*word*203}Doorway at
> http://www.temporaldoorway.com
> - Original digital art, writing, and more -
> C++ Builder / JBuilder Tips and The C++ Builder Programmer's Webring
> (Join us!)
> http://www.temporaldoorway.com/workshop/software.htm
> ------

Re:newbie html question ...


I have a button that opens a new TabSheet on a PageControl, then is suppose
to create a TWebBrowser_V1Proxy component on that new tab (aligned to fill
the client area).
it tells me 'TWebBrowser_V1Proxy' is undefined when I try to compile the
application. The line the error occurs is as follows...

TWebBrowser_V1Proxy *webCtrl = newTWebBrowser_V1Proxy(pPage);

pPage being the newly created TabSheet on the page control, I have another
button that does the same but places a richedit component, it works fine
writen the same way.

Quote
Mark Cashman [TeamB] wrote:
> Which symbol is undefined? Does this happen at run time or compile time?
> Is parent supposed to be Parent?

> --
> ------
> Mark Cashman [TeamB], creator of The Temp{*word*203}Doorway at
> http://www.temporaldoorway.com
> - Original digital art, writing, and more -
> C++ Builder / JBuilder Tips and The C++ Builder Programmer's Webring
> (Join us!)
> http://www.temporaldoorway.com/workshop/software.htm
> ------

Re:newbie html question ...


I have a button that opens a new TabSheet on a PageControl, then is suppose
to create a TWebBrowser_V1Proxy component on that new tab (aligned to fill
the client area).
it tells me 'TWebBrowser_V1Proxy' is undefined when I try to compile the
application. The line the error occurs is as follows...

TWebBrowser_V1Proxy *webCtrl = newTWebBrowser_V1Proxy(pPage);

pPage being the newly created TabSheet on the page control, I have another
button that does the same but places a richedit component, it works fine
writen the same way.

Quote
Mark Cashman [TeamB] wrote:
> Which symbol is undefined? Does this happen at run time or compile time?
> Is parent supposed to be Parent?

> --
> ------
> Mark Cashman [TeamB], creator of The Temp{*word*203}Doorway at
> http://www.temporaldoorway.com
> - Original digital art, writing, and more -
> C++ Builder / JBuilder Tips and The C++ Builder Programmer's Webring
> (Join us!)
> http://www.temporaldoorway.com/workshop/software.htm
> ------

Re:newbie html question ...


I have a button that opens a new TabSheet on a PageControl, then is suppose
to create a TWebBrowser_V1Proxy component on that new tab (aligned to fill
the client area).
it tells me 'TWebBrowser_V1Proxy' is undefined when I try to compile the
application. The line the error occurs is as follows...

TWebBrowser_V1Proxy *webCtrl = newTWebBrowser_V1Proxy(pPage);

pPage being the newly created TabSheet on the page control, I have another
button that does the same but places a richedit component, it works fine
writen the same way.

Quote
Mark Cashman [TeamB] wrote:
> Which symbol is undefined? Does this happen at run time or compile time?
> Is parent supposed to be Parent?

> --
> ------
> Mark Cashman [TeamB], creator of The Temp{*word*203}Doorway at
> http://www.temporaldoorway.com
> - Original digital art, writing, and more -
> C++ Builder / JBuilder Tips and The C++ Builder Programmer's Webring
> (Join us!)
> http://www.temporaldoorway.com/workshop/software.htm
> ------

Re:newbie html question ...


I have a button that opens a new TabSheet on a PageControl, then is suppose
to create a TWebBrowser_V1Proxy component on that new tab (aligned to fill
the client area).
it tells me 'TWebBrowser_V1Proxy' is undefined when I try to compile the
application. The line the error occurs is as follows...

TWebBrowser_V1Proxy *webCtrl = newTWebBrowser_V1Proxy(pPage);

pPage being the newly created TabSheet on the page control, I have another
button that does the same but places a richedit component, it works fine
writen the same way.

Quote
Mark Cashman [TeamB] wrote:
> Which symbol is undefined? Does this happen at run time or compile time?
> Is parent supposed to be Parent?

> --
> ------
> Mark Cashman [TeamB], creator of The Temp{*word*203}Doorway at
> http://www.temporaldoorway.com
> - Original digital art, writing, and more -
> C++ Builder / JBuilder Tips and The C++ Builder Programmer's Webring
> (Join us!)
> http://www.temporaldoorway.com/workshop/software.htm
> ------

Re:newbie html question ...


I have a button that opens a new TabSheet on a PageControl, then is suppose
to create a TWebBrowser_V1Proxy component on that new tab (aligned to fill
the client area).
it tells me 'TWebBrowser_V1Proxy' is undefined when I try to compile the
application. The line the error occurs is as follows...

TWebBrowser_V1Proxy *webCtrl = newTWebBrowser_V1Proxy(pPage);

pPage being the newly created TabSheet on the page control, I have another
button that does the same but places a richedit component, it works fine
writen the same way.

Quote
Mark Cashman [TeamB] wrote:
> Which symbol is undefined? Does this happen at run time or compile time?
> Is parent supposed to be Parent?

> --
> ------
> Mark Cashman [TeamB], creator of The Temp{*word*203}Doorway at
> http://www.temporaldoorway.com
> - Original digital art, writing, and more -
> C++ Builder / JBuilder Tips and The C++ Builder Programmer's Webring
> (Join us!)
> http://www.temporaldoorway.com/workshop/software.htm
> ------

Re:newbie html question ...


sorry for the many copies of message above, im using a new computer and
encountering some problems i have not ran into before.
Quote
A G wrote:
>  I have a button that opens a new TabSheet on a PageControl, then is
> suppose to create a TWebBrowser_V1Proxy component on that new tab
> (aligned to fill the client area).
> it tells me 'TWebBrowser_V1Proxy' is undefined when I try to compile
> the application. The line the error occurs is as follows...

> TWebBrowser_V1Proxy *webCtrl = newTWebBrowser_V1Proxy(pPage);

> pPage being the newly created TabSheet on the page control, I have
> another button that does the same but places a richedit component, it
> works fine writen the same way.

> Mark Cashman [TeamB] wrote:

>> Which symbol is undefined? Does this happen at run time or compile
>> time?
>> Is parent supposed to be Parent?

>> --
>> ------
>> Mark Cashman [TeamB], creator of The Temp{*word*203}Doorway at
>> http://www.temporaldoorway.com
>> - Original digital art, writing, and more -
>> C++ Builder / JBuilder Tips and The C++ Builder Programmer's Webring

>> (Join us!)
>> http://www.temporaldoorway.com/workshop/software.htm
>> ------

Re:newbie html question ...


I have something similar. What I do is I drop the web browser on a page
in the tab control. If you don't want to have the browser created that
way, then you approach should work, unless you don't include the header
files defining the web browser control.

Alex

Quote
A G wrote:

> I have a button that opens a new TabSheet on a PageControl, then is
> suppose to create a TWebBrowser_V1Proxy component on that new tab
> (aligned to fill the client area).
> it tells me 'TWebBrowser_V1Proxy' is undefined when I try to compile
> the application. The line the error occurs is as follows...

> TWebBrowser_V1Proxy *webCtrl = newTWebBrowser_V1Proxy(pPage);

> pPage being the newly created TabSheet on the page control, I have
> another button that does the same but places a richedit component, it
> works fine writen the same way.

> Mark Cashman [TeamB] wrote:

> > Which symbol is undefined? Does this happen at run time or compile
> > time?
> > Is parent supposed to be Parent?

> > --
> > ------
> > Mark Cashman [TeamB], creator of The Temp{*word*203}Doorway at
> > http://www.temporaldoorway.com
> > - Original digital art, writing, and more -
> > C++ Builder / JBuilder Tips and The C++ Builder Programmer's Webring

> > (Join us!)
> > http://www.temporaldoorway.com/workshop/software.htm
> > ------

--
HotSend - portable documents technology
http://www.hotsend.com/
eFax - get your faxes via email - Free !
http://www.efax.com

Other Threads