Arabic innosetup file

January 15th, 2012 No comments

Arabic InnoSetup file in github (Arabic.isl)

https://github.com/parmaja/innosetup

Categories: Projects Tags:

Messages MsgBox in MiniLib

October 17th, 2011 No comments

We finished adding MsgBox.pp and GUIMsgBox.pp in minilib

Both units for Pascal language, FreePascal and Lazaurs, but not worked for Delphi (sorry :P ).

Only you need to add MsgBox to your uses in the unit to use it, but you need to add GUIMsgBox once in the whale project, or it will work as console application.

Useing by call Msg.Yes or Msg.OK for example, there is many other calls, like Msg.Input or Msg.Password to ask for password.

If  you not use GUIMsgBox for Lazarus, it will work as console or you can switch to console even if GUIMsgBox is used, by calling Msg.Switch(‘CONSOLE’);

Msg.Yes(‘Do you want to save?’)
Mean Yes/No but the default button is Yes

 

Msg.No(‘Do you want to save?’)
Mean Yes/No but the default button is No

 

Windows users, do not use AutoCrlf in git

September 20th, 2011 No comments

If you are using git to fetch or modify your codes on Windows, do not enable this feature.
If it is enabled, the source code fetched as CRLF and commited as LF, that was good, but most of editors handle (Unix EOL) LF, so you not need to fetch it as (Window EOL) CRLF.

If you are like to use LF in your PHP code in windows and keep it as it in the original code repo, do not enable it.

If you already enabled it, do not change before commit your work and push it, after that, change it to false, then revert all your code, git now fetch the files as LF.

EOL = End of Line.

Categories: Developing, General Tags: , , ,

We started new project MiniEdit

March 31st, 2011 No comments

We started the new project MiniEdit based on old one LightPHPEdit but on Lazarus/FreePascal to make it work on Linux.
MiniEdit is open source editor, simple and fast one work as portable application.
It is editor with code highlighter made for PHP but i work on it to use Pascal projects, so it need time to make it.
Now i am working on addons for it (internal addons) to integrate Debug and SCM(SVN and GIT) tools.

you can download the source from github.com

https://github.com/parmaja/miniedit

My keyboard stops today.

January 1st, 2011 No comments

This day at the morning, when i turn on my PC, the keyboard not worked at all, no respond from it.

I guessed  the keyboard was broke or something else, but i tested with another computer and it is work fine.

After cleaning inside my computer, remove cards and replug it, nothing help me.

I decided to think as stupid,  so i removed the battery to reset the CMOS memory, but i replaced it with new one, it is work, i mean the keyboard come from the death :D .

Categories: General Tags:

ANN: minibidi.c was ported to minibidi.pp

December 20th, 2010 No comments

We have ported the minibidi.c to FreePascal minibidi.pp with some modifications to be workable with Pascal, in minilib project.

This file process the Unicode Arabic characters to make Joining/Shaping and make it Right To Left readable, in another hand it is prepare the string variable (widestring) to be printed in Right To Left, it is like FriBidi but more simple and in Pascal.

The original file written by Ahmad Khalifa from arabeyes.org, i published it with same license.

Also we port cp864 CodePage and added to unicodes directory, it is useful to convert a Unicode string (widestring) to that old code page cp864.

cp864 used by most POS printers (thermal) and Customer Display, now with minibidi.pp you can proceess the string to be printed in Right To Left order and then convert it to cp864 codepage then print it to ESCPOS printers.

This an example how to print to ESCPOS printer

The code still need more work, but until now it is usable for me :)

Categories: Developing Tags: , , , ,

How to set up NAT Routing on Windows XP

September 3rd, 2010 No comments

Good article and worked for me

http://forum.codecall.net/tutorials/10175-how-set-up-nat-routing-windows-xp.html

http://www.ante.lv/xwiki/bin/view/Windows/WinXPRouting

http://www.nanodocumet.com/?p=14

netsh
pushd routing ip nat
uninstall
install
set global tcptimeoutmins=1440 udptimeoutmins=1 loglevel=ERROR
add interface name="NIC2" mode=FULL
add interface name="NIC1" mode=PRIVATE
popd

REGISTRY
HKEY_LM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\IPEnableRouter=1

Categories: General Tags:

Thanks Google.

August 27th, 2010 No comments

http://developer.android.com/guide/developing/tools/emulator.html

Categories: General Tags:

Build of SQLite3 for WINCE ARM4

August 25th, 2010 6 comments

We uploaded a Dll build of SQLite3 for WINCE ARM4

You can download and test it for ARM4 and ARM4i

sqlite3-arm-wince-download directory

Please rename the dll to sqlite3.dll before use it, It is more safe to use arm4 instead of arm4i for old version of WinCE.

If any question ask me here in the comments.

Categories: Developing Tags:

Decided to upgrade our forums

August 14th, 2010 No comments

We decided to upgrade our forums from PunBB to FluxBB 1.4.x, for that i stopped the register, it is take a some days.
May lose some MODs exists in the old one, but i hope i can add it in the future.

Categories: General Tags: