Search results

  1. Website design Images

    I made these images for my website, and i was just wanting to know which one you thought was best and how i could improve either one. My personal opinion is the second one but i would like to see what others think of them.
  2. [Delphi] delete things in a listbox

    To Delete all selected items in a Listbox: procedure TForm1.Button1Click(Sender: TObject); var i: integer; begin for i := ListBox1.Items.Count - 1 downto 0 do if ListBox1.Selected[i] then ListBox1.Items.Delete(i); end; To delete MULTIPLE selected items in a list box: you must make sure...
  3. [CODE]Hide and Show password

    This code will make your normal editbox text go from , 'hello' to '*****' without brackects. put this into a checkbox for example: edit1.PasswordChar:='*' // this will change hello to ***** edit1.PasswordChar:=#0; // this will return the password from ***** to hello And if you wanted it...
  4. [Code] Useful Codes to add into a Delphi Rat

    These are for more advanced delphi user's as i am not explaining how to add them into delphi (for beginners). sorry beginner's , but i will post a tut on how to shortly. i will also add more codes to this thread. Open/close CD ROM Uses mmsystem; mciSendString('Set cdaudio door open wait'...
  5. [Source] Simple Notepad [Source]

    Here is the source code to a simple notepad that i just made about 10 minutes ago. features: new file save file open file undo copy paste change font short cuts (eg. new file = Ctrl + N ) use this as you please :) link: http://www.mediafire.com/?8424djhow14jg5h
  6. [Delphi] open programs from delphi

    Here is how you open other programs from your delphi program. In the uses make sure you add ShellAPI. The folllowing lines opens up notepad ShellExecute(Handle, 'Open', 'notepad', nil, nil, SW_SHOW); To open the broswer and to go to a specific page use the following line...
  7. Get hwid in delphi

    First add 1 label then add this code after an end; on your form. function getHWID(): String; var SerialNum,A,B: DWord; C: array [0..255] of Char; Buffer: array [0..255] of Char; begin if GetVolumeInformation(pChar('C:\'), Buffer, 256, @SerialNum, A, B, C, 256) then Result :=...
  8. [Tutorial]How to make a basic login with offline Hwid[Tutorial]

    If you are going to post this anywhere else remember to give credits to me Hello, In this tutorial i will show you how to make a basic login with off line hwid. What you will need: 4 Labels 2 Edit Boxes 1 Button Setting up the application layout: First we will need to add our labels...
  9. [Tutorial] Progress bar in Delphi

    If you post this on another forum remember to give credits. Hello, in this tutorial i will show you how to make a progress bar in delphi. What you will need: 1 progress bar 1 timer 1 button Okay, first lets add the progress bar which can be found here: Next lets add the timer...
  10. [Tutorial] How to make a simple web browser

    If you are going to post this tutorial anywhere else remember to give credits. In this tutorial ill show you how to create a simple delphi webbrowser. What you will need: 1 Editbox 5 Buttons 1 Webbrowser First you will need to add 1 editbox which can be found here: Next you will...
  11. Delphi 7 Installation + Crack by djfshady

    ok this is my installation setup + a crack, Ive Extracted it from my delphi 7 disk, i have included a serial number for you , if it stops working/gets blacklisted then ill post another working key up for you. 100% clean download: http://www.mediafire.com/?zy5yj2z1wmm RAR Password...
  12. Reason For The Recent Downtime

    Hello as most of you know i am the hosting provider for markforums.org The past few days there has been some downtime due to the fact that the new server i got i had a few problems installing cpanel but after a day or two i managed to get it installed, then came the next problem which was the...
  13. Shadyshosting.com - Running For Over 1 Year 4 Months- 99% Uptime - Shared - Reseller - VPS

    Note: We don't monitor what you do on our network but if we get any abuse requests then we will act upon it. Shadys Hosting - A reliable ,high standard hosting company which was founded on 28/12/2009. Our aim is to provide you with reliable hosting services at an affordable price. We take...
  14. Hey There

    Hello i am djfshady , some of you may know me from hf and various other sites. I run my own hosting company: www.shadyshosting.com you may find my advertising thread here: http://marketforums.org/showthread.php?tid=41 and my vouches thread here: http://marketforums.org/showthread.php?tid=43
Back
Top