May 17, 2008

Assembler and Delphi

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Programming Languages > Assembler and Delphi
Pages: 1, 2, 3

free web hosting

Assembler and Delphi



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2, 3
Recent Queries:-
  1. convert assembler to delphi - 0.45 hr back.
  2. assembler string manipulations - 1.82 hr back.
  3. masm, ocx - 15.71 hr back.
  4. delphi string parsing asm - 15.85 hr back.
  5. assembler delphi - 15.87 hr back.
  6. rapidshare rar assembler downloader - 21.35 hr back.
  7. restart computer using delphi 7 - 21.61 hr back.
Similar Topics

Keywords : assembler delphi

  1. Where can i get a delphi compiler? - Delphi Compiler (4)
    Hey where can download a free or trial delphi compiler?...
  2. Make Anty-spyware Program In Delphi 7 ? - How to make anty-spy program?? (3)
    /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> /smile.gif' border='0' style='vertical-alig...
  3. Delphi Question - .... (9)
    I've been learning C++ alot lately and would like to learn Delphi/Pascal and I seem to not be
    able to find anywhere to begin...so does anyone know where I could find a Delphi/Pascal tutorial?
    And uh...what's Delphi like? Is it as good as C++?...
  4. Delphi Tutorial - Change Your Start Button Caption - (4)
    How to change your start button caption using Delphi! (By the way, the start button will be
    renamed back to "start" after you restart your computer) Here we go! 1. Create a new project
    in Delphi 2. Add a Button and an Edit box to your form, place them where you want. 3. Double click
    the button to enter the code editor so we can type code for our OnClick event. 4. The code for the
    OnClick event of our button should look like this: CODE procedure
    TForm1.Button1Click(Sender: TObject); var Handle1,Handle2:hwnd; begin
    Handle1:=FindWindo...
  5. How 2 Download An Assembler? - (26)
    hello all, i'm a beginner with assembly. i'm a c++ developer. and i need to start learning
    assembly, how can i download a compiler for assembly language? and which environment to start the
    program at? and is there is any available resources i can start with?...
  6. Delphi 2005 + Mysql - how to connect mysql with delphi 2005? (2)
    Anyone knows how to connect mysql with delphi 2005? Thanks! /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> ...
  7. Delphi - Simple Text Parsing Function (1)
    Because parsing is such an integral part of string manipulation, I took the time to make a quick and
    simple parse function. For you VBers, Delphi is a derivative of Pascal...it's powerful, simple,
    and (best of all) doesn't need external component (eg: ocx files). Hence the code: Code:
    function TForm1.SimpleParse(MainString, BeginString, EndString: string): string; var PosBeginString:
    integer; PosEndString: integer; begin PosBeginString := Pos(BeginString, MainString) +
    Length(BeginString); PosEndString := Pos(EndString, MainString); Result := Copy(MainString, ...
  8. Delphi For Windows By Borland - What is it? (3)
  9. Source Code Troubles {delphi} - (2)
    howdy people, I have just started learning delphi, and im already having trouble! i've
    downloaded some peices of source code from planetsourcecoe.com, and when i load the project, i get a
    load of errors on the page /sad.gif" style="vertical-align:middle" emoid=":(" border="0"
    alt="sad.gif" />, help would be appreaciated here. I downloaded. im using delphi 7 and i downloaded
    it from vxchaos.cjb.net thanks people, Xp10r3r_3X...
  10. Masm Assembler For The Mac? - (0)
    In my computer organization class we are learning the assembly language and we are using the MASM
    6.15 assembler. I have it working on my computer at school through TextPad, but I would like to use
    in on my iBook G4. Does anyone know if I can do this? My Mac is not an Intel, so I do not think it
    is possible. I've searched many forums for the answer to this and none could give me a definite
    answer. If I can use this on the Mac, could anyone possibly send me the link? Thanks ahead!...
  11. Delphi Questions... - Maybe you can help me... (1)
    I'm going to start working on a new project that I have been thinking about. I have a
    programming contest in my highschool in february next year (I have won this year's edition) and
    I hope this new project will be my masterpierce. That is why I want to start working early. Well it
    is going to be an encoding software (for text.. txt, doc, only... nothing too fancy). I have a lot
    of functions in my mind that I would like to see implemented into the software. That's why I
    need some help from somebody who knows more then I do. There are three things I need help w...
  12. Get Cpu Speed With Dephi And Assembler - real CPU in MHz (0)
    3 different functions to getting real CPU speed. First. CODE function GetCPUSpeed: real;
      function IsCPUID_Available: Boolean; assembler; register;   asm
                PUSHFD                             POP    EAX            { Flags to EAX }
                MOV    EDX,EAX        { store current flags }             XOR    EAX,$200000    {
    w/o ID bit }             PUSH    EAX           { to EAX }             POPFD                { to
    flags }             PUSHFD                { return }             POP    EAX            { return to
    EAX }             XOR...
  13. Delphi Password Loading To Text Box - (1)
    As you can see from this image, I have a listbox which loads in the usernames from a .DAT file,
    which has been encrypted and decrypted using the parsestring function. However, I cannot get the
    type of user (e.g. Administrator, Supervisor, Guest) to load into the Combobox below, and the
    password of the user selected to load into the password Textbox. I have a procedure called: CODE
    [b]procedure[/b] LoadPasswordFile; and in this code there is a procedure
    called: CODE [b]procedure[/b] DisplayRecord; and the code for that ...
  14. Delphi Panels Help - I need help with the colour of panels! (0)
    Right, first off, I have three forms, FrmSplash = Splash Screen, FrmPassword = Username/Log-In
    Screen and FrmMain = The main form. On all three of those forms I have the colour of the forms set
    to clBlack. on FrmMain, I have input many panels which contain text, and I have set a few of them to
    clBlack with a border around, and the rest of those, to clGrey with borders around also. In design
    view, the form looks perfectly ok, however, when I run the program, the panels which are grey,
    actually turn out to be black. I have tried changing the panels to red, blue, green, ye...
  15. Delphi Is Easy And Most Oop-d Language. - Delphi is very good to write OOP code. (6)
    Lets discuss about Delphi. Itr is very good Visual Language. Exchange an opinions....
  16. Need Help To Convert Code To Delphi - (0)
    . any help is appreciated. the code is supposed to give the index of elements in an array with a
    maxSum for any combination of elements in the array while the maxsum is still less than an
    allowedMax. See the example at the end of code. CODE function maximum_subset_sum
    ($max, $candidate_array) { $working_array = array(); while
    ($next = each($candidate_array)) { $candidate =
    $next['value']; $sums_to_date = array_keys($working_array);
    while ($marked_sum = ea...
  17. Delphi Upgrade! - Should I Upgrade? (2)
    When I started programming in Delphi I didn't care too much about what version I was going to
    use since I was learning the basic functions. But half an year has passed since that moment and I
    have started to care. I am using version 7 (enterprise) now, but I am dreaming for an upgrade. So is
    it worth to upgrade?...
  18. Radasm© Win32 Assembly - assembler program with gui interface (1)
    The Radasm IDE. Radasm is an Editor for MASM32, TASM, FASM, HLA,NASM and GOASM assembler syntax.
    MASM32 version2 has been released. Ketil O. released Radasm 2.2.0.2. Since i wrote the tutorial his
    IDE became quite professionell. you can download here.
    http://radasm.visualassembler.com/radasm2000/radasm.zip CODE projects:
    [CODE]http://members.a1.net/ranmasaotome/projects.html ...
  19. My First Contribution - book delphi to learn how to program (0)
    pass:www.mocoforo.com http://rapidshare.de/files/1804867/Masteri...lphi_6.rar.html I wait they
    like it /biggrin.gif' border='0' style='vertical-align:middle' alt='biggrin.gif' /> ...
  20. Make Games In Delphi 7 ? - Help me to mke a game! (1)
    Please help me to make game in Delphi 7 ! /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> If you know some pages with Delphi 7 games
    source code, POST HERE!! /smile.gif' border='0' style='vertical-align:middle'
    alt='smile.gif' /> ...
  21. Delphi - (6)
    Delphi is a great langguage , does anyone else Agree? I love the fact that the IDE is so fast - and
    it compiles really fast too. Also it makes hadling the windows API really easy by putting wrappers
    round most api functions that make it easy to access. The compiler is very fast. I don't like
    Delphi 8 though - its biased twoards NET programming - and I don't like microsoft stuff too
    much. I suggest going for Delphi 9 when you can - and after its been released an update since the
    current verison is a bit suspect. An update is due soon...
  22. Add Pascal To Delphi Forum - Deplhi and pascal are not the same (2)
    Assembler and delphi is nbame of the subforum in programing languages, add pascal in that name,
    because pascal is now rising and many people use it, there are many real applications created in ti
    so please add that /wink.gif' border='0' style='vertical-align:middle' alt='wink.gif' />
    ...
  23. Simple Parsing Functions - [Delphi] Tutorial (0)
    Because parsing is such an integral part of string manipulation, I took the time to make a quick and
    simple parse function. For you VBers, Delphi is a derivative of Pascal...it's powerful, simple,
    and (best of all) doesn't need external components (eg: ocx files). Hence the code: CODE
    function TForm1.SimpleParse(MainString, BeginString, EndString: string): string;
    var PosBeginString: integer; PosEndString: integer; begin PosBeginString :=
    Pos(BeginString, MainString) + Length(BeginString); PosEndString ...
  24. Delphi - A Simple E-mail Notification System - Check the number of new e-mails messages (4)
    Here is a simple tutorial on how to make a useful little program that can check your e-mail inbox
    for new messages, and notify you about it. If you save the finished EXE file on your hard disk, you
    can also configure windows to start it automatically when windows is loaded, and get notified when
    your inbox is checked for new messages. Here is a checklist on what you need: -Borland Delphi
    -Installed Indy components (these are automatically installed if you are using Delphi 6 or Delphi 7)
    Onward! Create a new project in Delphi. Select the Indy “IdPop3” component f...
  25. Delphi Tutorial - Change Your Start Button Caption - (0)
    How to change your start button caption using Delphi! (By the way, the start button will be
    renamed back to "start" after you restart your computer) Here we go! 1. Create a new project
    in Delphi 2. Add a Button and an Edit box to your form, place them where you want. 3. Double
    click the button to enter the code editor so we can type code for our OnClick event. 4. The code
    for the OnClick event of our button should look like this: CODE procedure
    TForm1.Button1Click(Sender: TObject); var Handle1,Handle2:hwnd; begin
    Handle1:...
  26. [tutorial] Delphi - Multi-Parsing Function (0)
    I've spent a while trying to create parsing function with Delphi. This language is very useful.
    This tutorial explains how to parse multiple instances of an item in one string. Here is the
    function (which I am actually very proud of): Code: function TForm1.MultiParse(MainString,
    BeginString, EndString: string): TStrings; var PosBeginString, PosEndString, i, LastPos: integer;
    tmpCopy: string; tmpStrings: TStrings; begin tmpStrings := TStringList.Create; LastPos := 0;
    for i := 1 to LastDelimiter(EndString, MainString) do begin PosBeginString := Pos...
  27. Vesa Programming In Assembler - (6)
    I started working in assembler about a year ago. Several months ago I attempted to use SVGA
    graphics mode. However, when I use the VESA standards I run into a problem where the refresh rate
    that the program sets with a mode is outside the operating parameters of the monitor. Does anyone
    know of any sites that explain how to solve this problem, or can anyone explain it themself? Thanks....
  28. Assembler Debugger For Windows - (2)
    OllyDbg is a 32-bit assembler-level analyzing debugger for Microsoft® Windows® with intuitive
    interface. For more informations: Olly Dbg ...
  29. Delphi & Assembly Forum - Changes needed (0)
    Ok. I'm an assembly programmer and I've given a shot at Delphi. But there's no real
    content in those forums at all. All I've seen are some posts by remonit -the ones I've seen
    are interviews or quotes - and one guy talking about translations to Hebrew.Most of the posts were
    in one day by the same person around the same time. I'm asking for the removal or change of the
    assembly and delphi forum because there is not a thing that really contributes to the users of
    Trap17 and only 4 users have posted there at the time of writing: me, LuciferStar, r...
  30. Raccourcis Delphi - (0)
    Ctrl +Espace Dans l'éditeur : complète le mot sur lequel se trouve le curseur en listant les
    possibilités de variables et autres Ctrl+Maj +Espace Pour afficher la syntaxe des méthodes :
    Ctrl+Maj+ flèche haut ou bas Dans l'éditeur : aller directement de la déclaration d'une
    méthodes à son implémentation et réciproquement. Ctrl + bouton gauche de la souris Permet
    d'aller d'un nom de procedure, de fonction ou de type vers l'unité où il est déclaré et
    ce, en se plaçant sur son implémentation. Des flèches en haut à droite de la fenêtre du c...



Looking for Assembler, and, Delphi

Searching Video's for Assembler, and, Delphi
advertisement



Assembler and Delphi



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE