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 TouchToneTommy 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: *

  • Users: fancom
  • Content: Threads
  • Order by date
  1. fancom

    Using Debug For Qb 'JMP,JNZ,JA...'

    Hi there. Don't ask me why, I am using debug to create some asm codes for qb4.5. But when I code an example it works fine. But when I try to make my own loops or jumps and translate it to the basic it gives an ms dos sub system error. I realized that, adding any conditional/unconditional jumps...
  2. fancom

    RichTextBox

    Hi. I want to make an app which has a richtextbox. But when richtextbox multiline is true and scroll bars are set to both open, the horizantal scroll bar doesn't seem. They said I've to close the wordwrap but ; when I type ; richtextbox1.wORDWrap = false vb makes it RichTextBox1.WordWrap =...
  3. fancom

    Shell Execution Problem

    Hi. I was triing to do some stuff on ms dos with qb using shell command. When I type ; Start > Run > cmd.exe and then type 'ftype txtfile' it runs but when I use command in qb; 'Shell "ftype txtfile" it fails. I really wonder why it doesn't work with qb while it works with cmd? my MSDOS...
  4. fancom

    make library

    hi again.. sorry couldn't get the idea about the making libs.. i've a sample code: start: screen 0 width 80 cls input "input sine to find alfa";sine if abs(sine) > 1 then goto start arcsine: myangle=0 g=abs(sine) if g=0 then myangle=0 : goto showresult if g=1 then myangle=90 : goto...
  5. fancom

    SB base pointer

    hi again.. thank you for helping in "logo maker" :( anyway.. does ne1 can tell me how to findout the soundblasters start adress ?.. (it is generally at &h220 but mine is not !)
  6. fancom

    logo maker

    <off topic> hi again.. i am gonna composit (one coloured) logo maker but i dont know how to send it to operator or how to save it i do not know the codec.. my question is to "is there any one who knows where to ask ?" i coluldnt find it :(.. i will be pleased if you help........ </off topic>...
  7. fancom

    gsm logo's

    is there ne1 knows that how does "web logo makers canvert the 72x28x1 image to the sms ? the codec ?"
  8. fancom

    gsm logo's

    is there any one that knows "how web logo maker converts the 72x28x1 image to the sms ?"
  9. fancom

    gsm logo's

    can vb make the logo maker application like the others on the web ?.. and how to convert the 72x28 1 bit picture to sms ?.. do you know the codecs ? (i know i should ask it in the java applet forums but i wonder if vb can ? )
  10. fancom

    libraries

    i wrote a program ; Declare sub makefont (x%,y%,color%,size%,typ%) 'no loop sub makefont (x%,y%,color%,size%,typ%) 'a little code end sub i saved it as a library and then '$include: 'font.lib' call makefont(x%,y%,...etc.) this couldn't recognize back the sub makefont..There was some yellow...
  11. fancom

    2d rotate

    is there any source to rotate a 32 x 32 sprite clockwise or any..? if we basically dim an array ; dim sprite(31,31) for y=0 to 31 for x=0 to 31 pset (ox+x,oy+y),sprite(x,y) next next Can we rotate it ? there is a way i think ; if every pixeldata stores its' color and radious and angle...
  12. fancom

    Sound

    Hey you there...... When i download a source like sfxplay.bas etc. it does not work i tried so hard but there was no changes.Can we play sound from sound card (SB) in qb ?.Or is there a source that really works ?.... 10x you all..(especially qbasicking , barok and Cube101)
  13. fancom

    Files Command

    Is there a way to get the names of files and directories into an array listed by the command Files ?
  14. fancom

    MASM

    can i find free masm and dos asm compliers on internet ?
  15. fancom

    3d links pls!!!

    Does anybody know usefull links for 3d in qb ?.........my codes run but i confess i need some help......
  16. fancom

    CHR$(0)

    WHAT IS THE CHR$(0) JUST A &quot;&quot; ? WHAT IS NULL ? AND THERE ARE SOME ASCII CODES THAT ARE JUST &quot;&quot; HOW CAN I READ THEM FROM A FILE AND WRITE THEM TO A FILE? (I AM MAKING A PROG. USES CHR$(0-255))
  17. fancom

    i meant taht in screen 12...

    yes this is it.i wanto program the pixels with poking.. i think taht (i do not know that) in scr12 16 bit color depth we have.... to make the prg running faster i thaught that poking wuold be faster than line or pset...will it be ? v=start adress for t=0 to 7 poke v+bitplanestart(the adress i...
  18. fancom

    adress of

    i wonder what the adress of the keyboard scan and screen scan.is there any body to tell me the numbers ?. i think poking is faster than putting image....
  19. fancom

    Hardware registers

    Hey i was programming assembly with amiga500 before being a proffessional programmer on qbasic.any way now who can give me the full hardware register adresses of the cpu,gfx,sound....ex.Does the PC aseembly still work like ; move.l #$FFFFFFFF,$FFFFFFFF move.q #$value,$Hardware register ? cmp.b...
  20. fancom

    cutting the files

    hello i am the [DarK]-DOCTOR.(THIS WAS MY NİCK NAME BEFORE THE DARKBASİC). Any way.How can we make a program that divides a file like *.exe,*.bmp...etc.? And then make them a new file again? (i really need it)

Part and Inventory Search

Back
Top