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 Rhinorhino 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 .

    ...the handle of that application's window.... to get the handle you can use several functions, but I think the easier one is FindWindowByTitle => {***************************************} function FindWindowByTitle(WindowTitle: string): Hwnd; var NextHandle: Hwnd; NextTitle: array[0..260]...
  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

    ...For: CB1 CB2k6 CB3 CB4 CB5 CB6 D2 D2005 D2006 D3 D4 D5 D6 D7 Download Link: http://www.torry.net/tools/developers/hardware/mpsniffer.zip {*********************************************} You can also take a look at=> http://www.torry.net/quicksearchd.php?String=usb&Title=Yes...
  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?

    ...of time writing something in ASM that can be written acceptably fast in a high-level language. Assembly language fits for the following: * Low level control. When you need to change the flags, or the control registers of the processor, as when entering protected mode...
  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