Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. OSProgrammer

    Grab Text from Control during Runtime

    if you are familiar with api routines you can use them to get to your point... all you need is to get handle of the object on a window and get message from that handle... if you want some tutorials I can provide... OSP
  2. OSProgrammer

    Maxamize a program from a Delphi 7.0 program .

    Hi! first you should make access to that application that you want to miximize or something else.... to do this you should get the handle of that application's window.... to get the handle you can use several functions, but I think the easier one is FindWindowByTitle =>...
  3. OSProgrammer

    Caller ID Component

    Hi! I think you can find an appropriate component that supports Caller ID Capture here => http://www.torry.net/quicksearchd.php?String=caller+id&Exact=Yes&Title=No OSP
  4. OSProgrammer

    Problem deleting 0kb file

    Hi! You can boot up to MS-DOS (by using Bootable CDs or Floppydisks) and then easily delete that file.... OSP
  5. OSProgrammer

    PFN_LIST_CORRUPT

    Hi! These pages may help you => http://www.experts-exchange.com/Operating_Systems/WinXP/Q_21512401.html?qid=21512401 http://www.short-media.com/forum/showthread.php?t=20392 OSP
  6. OSProgrammer

    usb communication

    Hi! Multi Ports Sniffer for COM LPT USB. v.3.0.2 By Alexey Zaharov. The best tool for doing LPT, COM and USB port's data transfer logging. Using this tool you can simply do monitoring and spying data transffered through ports. This is useful for people who want to research any additional HW...
  7. OSProgrammer

    Search Filter

    Hi! var n:integer; s:tsearchrec; k:tstrings; begin n := findfirst('c:\*.mp3',faanyfile,s); if n=0 then begin listbox1.items.Add(s.Name); repeat n := findnext(s); if n = 0 then listbox1.items.Add(s.Name); until n<>0; end; n := findfirst('c:\*.wav',faanyfile,s); if n=0 then begin...
  8. OSProgrammer

    Searching in a string

    Hey! var s: string; { main string } ss: string; { temp string } n: integer; Number: integer; n := pos('value=',s); { get the index val } ss := copy(s,n,10); { ss='value=xxxx' } {value=xxxx extracted to ss} {by the way for example ss can be 'value=1000' or 'value=78 <' because copy function...
  9. OSProgrammer

    Searching in a string

    you mean all the html code stores in one string variable and you want to extract 'value=xxxx' and then the number?
  10. OSProgrammer

    Searching in a string

    Hi! It's so easy... You can use Delete Procedure as below => /******************************************** procedure Delete(var S: string; Index, Count:Integer); Removes a substring from a string. /******************************************** var s: string; num: integer; { S='value=78' }...
  11. OSProgrammer

    Scan Codes

    Hello! Here Is INT 16 Scan Codes => http://www.iro.umontreal.ca/~feeley/cours/ift2240/doc/assembly/scancodes.html Use These Scan Codes INT 16,00. Best Regards... OSProgrammer
  12. OSProgrammer

    What Is Assembly Language Programming?

    1. WHAT IS MACHINE LANGUAGE? Although programmers tend to use C or C++ or Pascal these days, the language closest to the PC hardware is machine language. Not one second during a PCS powered on lifetime passes where the computer is not executing machine language. 2. ASSEMBLY LANGUAGE...
  13. OSProgrammer

    Considering Assembly

    Hello! When You Make an EXE File Under Windows Programmings Like Delphi Or Visual Basic, The Files At Least Become 500KB. So If You Disassemble It, You Will See Thousands Of Assembly Code Lines. Because They Have a Lot Of Instructions. But If You Make a BIG Program With Assembly Under Real...
  14. OSProgrammer

    making a bootable floppy disk in assembly

    Hello! If You Want To Make a Bootable Floppy Disk (Or Your Own OS) Emu8086 Assembler Software Provide a Good And Tiny Tutorial For Creating OS. + Emu8086 Is a Compiler Too. Download It From => www.emu8086.com Best Regards... OSProgrammer
  15. OSProgrammer

    DS,CS,SS,ES???

    Hi syskplim! DS is called data segment register. It points to the segment of the data used by the running program. You can point this to anywhere you want as long as it contains the desired data. ES is called extra segment register. It is usually used with DI and doing pointers things. The...
  16. OSProgrammer

    Turn off Hard Disk

    Hi! How To Power off the hard disk? OSProgrammer
  17. OSProgrammer

    display in Decimal

    ;*********************************************************** ; This macro defines a procedure that prints number in AX, ; used with PRINT_NUM_UNS to print signed numbers: ; Requires DEFINE_PRINT_NUM_UNS !!! DEFINE_PRINT_NUM MACRO LOCAL not_zero, positive, printed, skip_proc_print_num ...
  18. OSProgrammer

    display in Decimal

    ;*********************************************************** ; This macro defines a procedure that prints number in AX, ; used with PRINT_NUM_UNS to print signed numbers: ; Requires DEFINE_PRINT_NUM_UNS !!! DEFINE_PRINT_NUM MACRO LOCAL not_zero, positive, printed, skip_proc_print_num ...
  19. OSProgrammer

    -- SVGA-Mode Screen Addressing --

    Hi! When I Set The Resolution Of The Screen Into 1024x768(SVGA), If I Want To Draw a Line I Should Use Banking. How Can I Do That With Screen Addressing(USING CORDINATE). I'm Using TASM (ideal) Give An Example Please. Bye OSProgrammer
  20. OSProgrammer

    is hla a good place to start learning assembly?

    Hi! http://www.geocities.com/SiliconValley/Park/3230/x86asm/asmles01.html (Very Good Tutorial For TASM & MASM) Best Wishes... OSProgrammer

Part and Inventory Search

Back
Top