-=-
.
.....
  
 
RSS
Direkomendasikan menggunakan brower Opera/Chrome/Firefox. Resolusi minimal 1024x768 | Powered by ____ |
 
  
 
Nikmati Delphi-ID dalam berbagai versi tampilan :
Basic View (LOW Bandwidth)
Default View (Full)
Mobile Edition
Main Menu
..:: onWebTools ::..
..:: onLastPosts ::..
goto Postsplit sample data & header file(0)
 by andtho89
 on 23.May at 08:49
goto Postpemanggilan frame(5)
 by andtho89
 on 23.May at 02:13
goto Postjumlah komponen maksimal dalam sebuah project(6)
 by d4mnf1y32
 on 21.May at 12:16
goto Posttanya grayscale to biner dengan scanline(1)
 by luckynvic
 on 20.May at 20:44
goto Posttanya looping biner to matriks(1)
 by luckynvic
 on 20.May at 20:10
goto Postsql error:acces denied for user....(2)
 by nasbms
 on 19.May at 16:54
goto Posttanya AvLock(0)
 by azuriza
 on 19.May at 11:24
goto PostGet TDBEdit Value Menggunakan LookUp Grid(10)
 by henry_sys
 on 18.May at 11:27
goto Postmenghitung record dalam perulangan(4)
 by idhiel
 on 16.May at 13:53
goto Posttanya ascii(4)
 by mas_kofa
 on 16.May at 12:11
goto PostRawPrint Untuk Delphi XE2(0)
 by adewijaya
 on 15.May at 22:34
goto Postdatabase error..(4)
 by idhiel
 on 15.May at 15:57
goto Postbekasi, pt arila putra mahkota(3)
 by mas_kofa
 on 15.May at 15:37
goto Postbagaimana cara membaca file *.doc dg delphi?(0)
 by ficky
 on 15.May at 06:14

..:: onLast Articles ::..
..:: New Download ::..
Pascal-id.Org
Feeds -  Popular -  Latest
RE: The Longue
8 months, 3 weeks ago
RE: belajar pascal
8 months, 3 weeks ago
RE: The Longue
8 months, 3 weeks ago
RE: belajar pascal
8 months, 3 weeks ago
RE: Perkenalan dan Absen
8 months, 3 weeks ago
RE: Alhamdulillah Buka Puasa Bersama
8 months, 4 weeks ago
RE: تَقَبَّلَ اللهُ مِنَّا وَمِنْكَ - Selamat Hari Raya Idul Fitri
8 months, 4 weeks ago
Lintas Situs
«
free web site stats and visitor tracking

Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
denmasdanangOffline
Location:
Post subject: Write Multiline Registry  PostPosted: 02/Dec/2011 11:00
onSkilled


Joined: 08-Apr-2008
Posts: 85

Status: Offline
tested XP, Win 7

misal untuk update gateway game DoTA
semoga bermanfaat

source code :
Write MultiLine Registry.zip

      Code:
procedure TForm1.Button1Click(Sender: TObject);

      procedure kg_WriteStrings(const CurrentKey: HKey; const Subkey, valueName: string; aStrings: TStrings ) ;
      var
        p, buffer : PChar ;
        i         : Integer ;
        size      : DWORD ;
        key: HKEY;
      begin
        size := 0 ;
        for i := 0 to aStrings.Count - 1 do
          Inc(size, Length(aStrings [i]) + 1) ;
        Inc (size) ;
        GetMem(buffer, size) ;
        try
          p := buffer ;
          for i := 0 to aStrings.count - 1 do
          begin
            lstrcpy(p, PChar(aStrings [i])) ;
            Inc(p, lstrlen (p) + 1)
          end;
          p^ := #0 ;

          if RegOpenKey(CurrentKey, PChar(Subkey), key) = ERROR_SUCCESS then
          begin
            //SetLastError(RegSetValueEx(oReg.CurrentKey, PChar(valueName), 0, REG_MULTI_SZ, buffer, size)) ;
            SetLastError(RegSetValueEx(key, PChar(valueName), 0, REG_MULTI_SZ, buffer, size)) ;
            if GetLastError <> ERROR_SUCCESS then
              raise Exception.Create('Unable to write MULTI_SZ value') ;
          end
        finally
          FreeMem(buffer)
        end
      end;
     
begin
  kg_WriteStrings(HKEY_CURRENT_USER,'Software\Blizzard Entertainment\Warcraft III', 'Battle.net Gateways', Memo1.Lines);
end;
 
 View user's profile Send private message Yahoo Messenger  
Reply with quote Back to top
Display posts from previous:     
Jump to:  
All times are GMT - 12 Hours
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic





Powered by PNphpBB2 © 2003-2009 The Zafenio Team
Credits


| Register | Lost Password ? |