02 Jul, 2009
Posted by: admin In: general
Oops, I can’t visit box.net in my country, I don’t want use proxy every time when I want to upload files to box.net.
Any one can suggest me some well file share website ?
Related posts
Using FireFox instead of TWebBrowser in Delphi applications (0)
How to check the email address input is validate in delphi (0)
Creating an RSS [...]
From here: Everyone who owns a website would have heard about the RSS phenomenon. Now you will get the opportunity to create your own RSS reader that will enable you to download and view RSS files on your desktop. This application will enable you to read RSS feeds from the Internet with the added advantage [...]
I found from here, it’s nice for firefox and delphi fans. By the emamlpe, we can build new web browser by firefox core.
Would you like to display HTML in your applications using an open source solution? The Gecko Runtime Environment by the Mozilla Foundation can be embedded in a Delphi application by using the Mozilla [...]
This solution is from delphi3000.com,
Updated on 2000-12-06 due to Phil’s and Sven’s comments.
Updated on 2002-06-13 due to Carlos’ comment.
Thanks for improving!
function IsValidEmail(const Value: string): boolean;
function CheckAllowed(const s: string): boolean;
var
i: integer;
begin
Result:= false;
for i:= 1 to Length(s) do
begin
// illegal char in s -> no valid address
if not (s[i] in [’a’..’z',’A’..’Z',’0′..’9′,’_',’-',’.']) then
Exit;
end;
Result:= true;
end;
var
i: integer;
namePart, serverPart: string;
begin // of [...]