left click interrupt proc or macro

Started by bcddd214, December 07, 2011, 09:18:19 PM

Previous topic - Next topic

bcddd214

ok, point!!   :)
here is a logical overview that should make it easier to point out my error to me...

globals
   WINDESC (make window)
   
.data
   user input buffer
   mouse db

.code
   buffer length
   mouse proc
   myExit (gather this is where my click out issue lays)
   waitkey (more of my clickout issue possibly)
   curpos (cursor position)
   putchar (unused)
   getchar (not sure)
   Makewin  (make the window)
   Filler (new and needs fixing)
   border (new and needs fixing)

main      PROC
         mov            ax, @data
         mov            ds, ax
         mov            ax, OFFSET application
         push         ax
         call         makewin
         mov          al,application.leftCol
         mov          ah,application.upperRow
         push         ax
         call         curpos
    call      waitkey
    call      mouse
         call         getchar

bcddd214

to produce a text editor that you can type in and then click a button to exit the loop with a pretty border. I am at 'the last screw'  :)

bcddd214

can someone kindly point me in the correct direction of my logical error?
characters still do not type on the screen for some reason???