-
Recent Posts
Recent Comments
Archives
Categories
Meta
Author Archives: Hamid
Bug reporting
When you finish a website, or a project, you would like to get the feedback and to find the bugs you might have on your website as soon as possible. There are some options to use: 1- Asking your users … Continue reading
Posted in Thinking
Leave a comment
How to write a simple FTP program with Delphi 2007
This is a simple program with Deplhi 2007, you can download the exe file from (Download FTPUpload.exe) unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdExplicitTLSClientServerBase, IdFTP, ExtCtrls, ComCtrls; … Continue reading
Posted in Thinking
Leave a comment
How to link your personal email and your email in gmail
If you have two emails and you would like to check both emails in one email, here is the steps you need to follow: In this article we assume you have one personal email and one … Continue reading
Posted in Thinking
Leave a comment
Vertically align in css for IE7+ and FF
Making a text vertically aligned is one the challenging tasks with css. Here is one quick solution which I found and it works fine in IE7+ solution is to use vertical-align: middle; but this style doesn’t work as it expect … Continue reading
Posted in Programming
1 Comment
The ‘Microsoft.ACE.OLEDB.12.0′ provider is not registered on the local machine
I was trying to import one excel file (2010 version) into mssql server with SQL Server Management Studio and keep getting that error. Solution which solved my problem: I found this website http://blogs.msdn.com/b/farukcelik/archive/2010/06/04/accessing-excel-files-on-a-x64-machine.aspx and followed the steps and didn’t work. … Continue reading
Posted in Thinking
Leave a comment
Finish minesweeper game in 1Sec
Everyone has seen windows minesweeper game which is installed by default in all windows. But not everyone is familiar with the way it works. It is very simple, the goal in this game is to find the mines, which are … Continue reading
Posted in Programming, Thinking
12 Comments
Style pdf file in PHP using html tags
I think most of php developers are familiar with FPDF, which is a great code to use in php when you want to generate pdf file. You can download the code if you want from Here. That is a really … Continue reading
Posted in Programming
3 Comments
Load CD or DVD image file into a virtual drive
Here is a quick tip how to load an iso file, which can be a DVD or CD image file into a drive, without installing any software. 1- as iso files are almost a zip file, first you need to … Continue reading
POP3 mail client with delphi 2007
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, IdIOHandler, IdIOHandlerSocket, IdIOHandlerStack, StdCtrls, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdMessageClient, IdPOP3, IdMessage, ExtCtrls,IdAttachment,IdText, IdExplicitTLSClientServerBase; type TForm1 = class(TForm) IdPOP31: TIdPOP3; Button1: TButton; IdMessage1: TIdMessage; Memo1: TMemo; Button2: TButton; … Continue reading
Posted in Programming
50 Comments
Transfer file with remote desktop
Here are the steps you can use to share your local drive with remote computer that you are connected with remote desktop connection. 1- In remote desktop connection dialog window, click on Options. 2- In option dialog select local resources … Continue reading
Posted in Tips
3 Comments