acrph.net

Just another WordPress.com weblog

acrph.blogspot.com

April 27, 2008 Ditulis oleh acrph | Uncategorized | | No Comments Yet

Win98: Play WMV file

To play wmv file in Windows 98, you must install Windows Media Format Series Runtime
Get it from Microsoft website

April 26, 2008 Ditulis oleh acrph | Win98 | , | No Comments Yet

Linux: Convert a Text File to Upper Case Letter

awk ‘{ print toupper($0) }’ input_file > output_file

April 26, 2008 Ditulis oleh acrph | Linux | , | No Comments Yet

Delphi: Browse Dialog Function

Syntax: BrowseDialog(sTitle, iFlag)
Returns: string
Examples: BrowseDialog(‘Choose a folder’, BIF_RETURNONLYFSDIRS)

//
function BrowseDialog(const Title: string; const Flag: integer): string;
var
  lpItemID: PItemIDList;
  BrowseInfo: TBrowseInfo;
  DisplayName: array[0..MAX_PATH] of char;
  TempPath: array[0..MAX_PATH] of char;
begin
  Result := ”;
  FillChar(BrowseInfo, sizeof(TBrowseInfo), #0);
  with BrowseInfo do begin
    hwndOwner := Application.Handle;
    pszDisplayName := @DisplayName;
    lpszTitle := PChar(Title);
    ulFlags := Flag;
  end;
  lpItemID := SHBrowseForFolder(BrowseInfo);
  if lpItemId <> nil then begin
    SHGetPathFromIDList(lpItemID, TempPath);
    Result := TempPath;
    GlobalFreePtr(lpItemID);
  end;
end;

April 26, 2008 Ditulis oleh acrph | Delphi | , | No Comments Yet

Google indexed

This blog first indexed in Google at 25 April 2008 04:00 AM

April 26, 2008 Ditulis oleh acrph | Uncategorized | | No Comments Yet

Sony Ericsson: Secret Codes

*#06#
Show IMEI number

> * < < * < *
Service menu screen

< * * <
Personalize menu screen

< 0 0 0 0 >
Change to default language (English)

**04*0000*0000*0000# followed by on ‘Wrong Pin’ number
Opening phone without a SIM card

0 then #
Show last dialed numbers

a number then #
Show record number and name field in a SIM card

Press and hold 1
Set voicemail number

Press and hold Back button
End or minimize a java application

April 22, 2008 Ditulis oleh acrph | Sony Ericsson | , , , | No Comments Yet

VFP: Converts Amounts to Indonesian Word

ptbilang.zip  is a foxpro source code that converts a number to a character string in Indonesian languange

usage : ptbilang(numeric)

returns: string

example : ptbilang(123456789)
result : Seratus Dua Puluh Tiga Juta Empat Ratus Lima Puluh Enam Ribu Tujuh Ratus Delapan Puluh Sembilan Rupiah

April 20, 2008 Ditulis oleh acrph | VFP | , , , , | No Comments Yet

What is ‘acrph’ ?

acrph is my first password to login into server in my university

April 19, 2008 Ditulis oleh acrph | Uncategorized | , , | No Comments Yet

Hello world!

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

April 16, 2008 Ditulis oleh acrph | Uncategorized | | 1 Komentar