Ceriwis  

Go Back   Ceriwis > HOBI > Komputer & Teknologi > Programming

Programming Share, tanya jawab, saling bantu antar programmer dengan berbagai macam bahasa pemrograman.

Reply
 
Thread Tools
  #1  
Old 20th November 2011
Servermaster Servermaster is offline
Member Aktif
 
Join Date: Nov 2011
Posts: 257
Rep Power: 15
Servermaster mempunyai hidup yang Normal
Default (Ask) konversi code delphi ke VB.NET

permisi agan2,,ane mw minta tolong ne,,ane lg ngerjain TA ne,ane bkin pke bahasa VB.NET,,tp ane kagak ketemu referensinya dalam bahasa VB.NET,,yg ane nemu dalam bahasa Delphi,,tp ane kagak ngerti gan mohon bantuannya ne buat agan2 master delphi,,,ne codenya gan..


Code:

function FindFirstHeader(filename: string): Integer;
var
filemp3: File;
headerArray: array[0..3] of byte;
count, pos: Integer;
begin
Result:=-1;
if FileExists(filename) then
begin
AssignFile(filemp3, filename);
FileMode:=fmOpenRead;
Reset(filemp3,1);
//looping sampai dapat header file
pos:=0;
while not eof(filemp3) do
begin
seek(filemp3, pos);
BlockRead(filemp3, headerArray, 4, count);
if ((headerArray[0]=$FF) and ((headerArray[1]=$FB) or
(headerArray[1]=$FA))) then
begin
Result:=pos;
break;
end else
begin
pos:=pos+1;
end;
end;
CloseFile(filemp3);
end else
begin
exit;
end;
end;

mohon bantuannya gan

</div>
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


Terkait
Thread Thread Starter Forum Replies Last Post
Konversi Nama Agan Menjadi Binary Code ,,, bakwanmalang Lounge 0 27th May 2012 10:57 PM
JUAL Koleksi DVD Source Code Delphi, Vb.6, Vb-net, Vfp, Php dan Java mousekompi Software Original & Open Source 0 26th May 2012 11:01 AM
JUAL DVD Source Code Visual Basic 6.0, Vb-Net, Delphi dan Visual Foxpro,Delphi, Java, PHP mousekompi Software Original & Open Source 0 26th May 2012 10:59 AM
JUAL Kumpulan DVD Source Code Delphi, Vb.6, Vb-net, Vfp, Php dan Java virusmuka Software Original & Open Source 0 26th May 2012 10:56 AM
JUAL Source code VB, Delphi, PHP. Murah Gan! sukalaptop Software Original & Open Source 0 26th May 2012 10:15 AM

 


All times are GMT +7. The time now is 03:29 AM.