Search found 29 matches
- Thu Mar 26, 2020 10:05 pm
- Forum: Technical
- Topic: C++Builder 10.3 Community - How to install Delphi Components
- Replies: 1
- Views: 6927
C++Builder 10.3 Community - How to install Delphi Components
Hi, It's been a while since I coded in BCB but I thought I'd pick it back up. Anyway, I'm trying to install TCoolTrayIcon but everything is going wrong, There is CoolTrayIcon_D5.dpk and CoolTrayIcon_D6plus.dpk But when I go to Components -> Install, it says There already is a CoolTrayIcon so I don't...
- Fri Apr 18, 2014 11:03 pm
- Forum: Technical
- Topic: How to install VirtualTreeView without Delphi personality?
- Replies: 3
- Views: 18538
Re: How to install VirtualTreeView without Delphi personalit
I second this, I am testing C++Builder XE6 and trying to load a .dpk or .dproj and I get this error: --------------------------- Error --------------------------- The project can not be loaded because the required personality Delphi.Personality is not available.. --------------------------- OK -----...
- Tue Nov 12, 2013 7:59 pm
- Forum: Technical
- Topic: VCL Form inside of DLL?
- Replies: 1
- Views: 11958
VCL Form inside of DLL?
Hi, I'm trying to get a VCL form to display inside a DLL. As a test, I have created a DLL and put this function in it: //--------------------------------------------------------------------------- #include <vcl.h> #include <windows.h> #pragma hdrstop //-----------------------------------------------...
- Sat Nov 24, 2012 6:05 pm
- Forum: Technical
- Topic: TCppWebBrowser -- get <select> box options
- Replies: 1
- Views: 10602
TCppWebBrowser -- get <select> box options
Hi, I have a TCppWebBrowser called Web and I need to grab the <select> box options. and I need to know the one that is currently selected lets say my select box was <select id="selbox_foo"> how would I do it? this is how far I got (by looking at some code in another thread TComInterface<IHTMLDocumen...
- Thu Oct 25, 2012 1:54 am
- Forum: Technical
- Topic: TTrayIcon animate has blank icon?
- Replies: 1
- Views: 9777
Re: TTrayIcon animate has blank icon?
Instead I just downloaded TCoolTrayIcon and that works much better!
- Thu Oct 18, 2012 3:27 am
- Forum: Technical
- Topic: TTrayIcon animate has blank icon?
- Replies: 1
- Views: 9777
TTrayIcon animate has blank icon?
I'm using BCB 6. For some reason when using TTrayIcon 's animate property, it iterates through them but then shows no icon for a second at the end.
Does anyone know if this is a bug or how to fix it?
Thanks,
Jim
Does anyone know if this is a bug or how to fix it?
Thanks,
Jim
- Tue Jun 28, 2011 1:18 pm
- Forum: Polls
- Topic: May 2011 Developer's Poll
- Replies: 2
- Views: 16988
Re: May 2011 Developer's Poll
http://findicons.com is pretty nice
- Mon Apr 26, 2010 3:36 pm
- Forum: Technical
- Topic: Fetching Outlook Contacts
- Replies: 3
- Views: 12487
Fetching Outlook Contacts
Anyone know how I would fetch a list of outlook contacts?
I need to synchronize outlook contacts with my client's list of contacts on his server.
Jim
I need to synchronize outlook contacts with my client's list of contacts on his server.
Jim
- Fri Feb 19, 2010 6:23 pm
- Forum: Technical
- Topic: HTTPS post
- Replies: 12
- Views: 37826
Re: HTTPS post
Well, I found out the dlls that I could use: OpenSSL096m Turns out you cannot distribute them with your application unless you first deal with the Export Laws. As a work-around, someone in #delphi (efnet) suggested using WinInet below is the code I am using to get post data, works with SSL too. #inc...
- Fri Feb 19, 2010 1:17 pm
- Forum: Technical
- Topic: HTTPS post
- Replies: 12
- Views: 37826
Re: HTTPS post
Thanks for the reply. Where exactly do I get the openssl dlls for indy8?
- Wed Feb 17, 2010 9:40 pm
- Forum: Technical
- Topic: HTTPS post
- Replies: 12
- Views: 37826
Re: HTTPS post - Could not load SSL library
Well I attached the SSL intercept component from indy and it worked!
Problem is when I went to distribute it on another machine, it gave me a "Could not load SSL library" error.
Is there some dll or something i need to distribute?
Problem is when I went to distribute it on another machine, it gave me a "Could not load SSL library" error.
Is there some dll or something i need to distribute?
- Sat Feb 06, 2010 6:31 pm
- Forum: Technical
- Topic: linker error
- Replies: 4
- Views: 12349
Re: linker error
For this reason I created a Borland C++Builder Project Cleaner to clean .bpk files and it should also clean .bpr files It seems like everytime I go to open and compile a component, it adds a bunch of extra files to the link. Use this prog to quickly clean them out -- useful if added to Tools -> sect...
- Thu Feb 04, 2010 8:20 am
- Forum: Technical
- Topic: Minimum Form size
- Replies: 4
- Views: 11942
Re: Minimum Form size
void __fastcall TForm1::WMGetMinMaxInfo(TWMGetMinMaxInfo &Message) { Message.MinMaxInfo->ptMinTrackSize.X = 100; // Minimum width Message.MinMaxInfo->ptMinTrackSize.Y = 100; // Minimum height Message.Result = 0; // Tell windows you have changed minmaxinfo TForm::Dispatch(&Message); } THIS WORKED LI...
- Wed Feb 03, 2010 1:31 pm
- Forum: Technical
- Topic: Minimum Form size
- Replies: 4
- Views: 11942
Re: Minimum Form size
I found this article in Delphi that seems to do what I want, but How to convert to BCB?
http://www.angelfire.com/home/jasonvoge ... _size.html
http://www.angelfire.com/home/jasonvoge ... _size.html
- Wed Feb 03, 2010 1:19 pm
- Forum: Technical
- Topic: Minimum Form size
- Replies: 4
- Views: 11942
Minimum Form size
Well, I am using OnCanResize to limit the form size, but the behavior is not correct When resizing the form from the left to right or top to bottom, it actually moves the form. When Resizing from left to right, it moves the form to the right (while maintaining minmum size) The same happens from top ...