acrph.net

Just another WordPress.com weblog

100 Hit in 10 May 2008

100 hit and 8 link downloaded in 10 May 2008

Mei 11, 2008 Ditulis oleh acrph | Uncategorized | | No Comments Yet

Win98: Generic USB Flash Disk Driver

ufd.zip
If flash disk connected, and Windows 98 found a new hardware (USB Mass Storage Device)
Click Next
Select Search for the best driver for your device
Click Next
Specify a location in a folder contain this driver
Click Next
Click Finish

Mei 2, 2008 Ditulis oleh acrph | Win98, Windows | , , , | No Comments Yet

XP: Master File Table (MFT)

If you are using NTFS, by default NTFS would reserve 12.5% of your free diskspace for MFT.
You can increase this percentage in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\FileSystem.
Add a key by the name “NtfsMftZoneReservation”
with the REG_DWORD value of 2. DWORD value of 1 is interpreted as 12.5% ,2 as 25% and so on.
This trick is benefit if you installed many program, because MFT utilization is going to be high.

Mei 2, 2008 Ditulis oleh acrph | Windows, XP | , , , , | No Comments Yet

Windows: Barcode Font

Mei 2, 2008 Ditulis oleh acrph | Windows | , | No Comments Yet

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