The MASM Forum Archive 2004 to 2012

General Forums => The Colosseum => Topic started by: vanjast on April 12, 2012, 09:11:45 PM

Title: Visual Basic Q?
Post by: vanjast on April 12, 2012, 09:11:45 PM
Yes yes.. I know  :bg
As mentioned.. I test concepts in VB before I apply to Asm..

I came across a real funny in VB... Stack overflow??
After a few times i thought that there must be something re-entrant happening... and true's Bob it was.

I usually write VB as I write asm, returning True or False.
With VB the boolean is applied to the FUNCTION name....
..but I made the mistake of applying this to a SUB name, and this made it go 're-entrant' and stack overflow

just off the cuff, any clues... I don't want to go to any VB forums as this is only a test thingy, otherwise I'll just move on..
:8)
Title: Re: Visual Basic Q?
Post by: baltoro on April 12, 2012, 09:17:04 PM
...I've heard it said that Visual Basic is actually a disease,... :eek
...OH !!! YEAH !!!...
:dazzled: I see what you mean,...by,...Yes, yes, I know,... :dazzled:
Title: Re: Visual Basic Q?
Post by: dedndave on April 12, 2012, 09:30:26 PM
(http://img839.imageshack.us/img839/4458/carnac.jpg)

we cannot "gleen" the answer without seeing some code   :lol

freckled, freckled, drunk....

your code here



...name 3 things that Irish whores have in common
Title: Re: Visual Basic Q?
Post by: zemtex on April 12, 2012, 10:53:35 PM
Can you optimize this code for me dedndave?

(http://i.imgur.com/ZVuue.jpg)

just kiddin dave...
Title: Re: Visual Basic Q?
Post by: dedndave on April 13, 2012, 12:21:39 AM
by god, that looks pretty optimal to me, just the way it is   :bg

QuoteI CAN SEE CLEARLY NOW THE RAIN IS GONE
I CAN SEE ALL OBSTACLES IN MY WAY
Gone are are the dark clouds that had me blind
IT'S GONNA BE A BRIGHT BRIGHT BRIGHT SUN SHINY DAY
Title: Re: Visual Basic Q?
Post by: zemtex on April 13, 2012, 01:06:31 AM
Poetry is madness.


What could possibly be less natural, if you observe a fish:

1: You write about it
2: You eat it.  :lol
Title: Re: Visual Basic Q?
Post by: dedndave on April 13, 2012, 01:11:20 AM
first, you alter the fish by merely observing it   :bg

that's why everything tastes like chicken
Title: Re: Visual Basic Q?
Post by: zemtex on April 13, 2012, 01:14:19 AM
As an assembly programmer, we are trained to think logically and we are trained to eliminate trapholes and flaws. But once in a while, you should consider a joke.  :bg
Title: Re: Visual Basic Q?
Post by: jj2007 on April 13, 2012, 05:08:23 AM
Quote from: vanjast on April 12, 2012, 09:11:45 PM
just off the cuff, any clues...

Ask Olly, he usually has an answer :bg

P.S.: When I went to the forum this morning, there were 88 guests and 15 unread posts, virtually all of them related to programming. Until YOU came along with this dirty talk about Irish whores and rotten fish and poetry and the like :naughty:
Title: Re: Visual Basic Q?
Post by: hutch-- on April 13, 2012, 06:12:07 AM
 :bg

What's wrong with Irish whores ? Such a nice girl to be sure to be sure.  :P
Title: Re: Visual Basic Q?
Post by: baltoro on April 14, 2012, 06:53:32 PM
Quote from: DAVE !!!...that's why everything tastes like chicken,...
:dazzled: ...So Zen,...and,...optimized for other galaxies, too,... :dazzled:
Title: Re: Visual Basic Q?
Post by: dedndave on April 14, 2012, 06:54:50 PM
 :P

i dunno what dark matter is, but i am sure it comes with a chicken flavour packet   :lol
Title: Re: Visual Basic Q?
Post by: baltoro on April 14, 2012, 06:56:25 PM
DAVE !!!
...I don't know why I ever doubted you,...
:dazzled: ...Disambiguation and existential doubt,...regression,...neurosis,...and, of course, unspecified damages,... :dazzled:
Title: Re: Visual Basic Q?
Post by: vanjast on April 15, 2012, 05:25:37 PM
OK code thingy

ASM
Quote
myProc Proc..

   blah blah
   blah blah
   .
   .
   Return TRUE   ;if OK ( FALSE if NOK)


myProc   Endp

VB Function
Quote
Public  Function myFunc () as boolean
On Error goto ThisError           'simple error handler
  myFunc = TRUE                   'The OK signature

  Exit Function                       'Outa here!

ThisError:
   myFunc = FALSE                  'NOK indicator
End Function

I made a mistake by doing the same with a Subroutine (SUB)
VB Subroutine
Quote
Public SUB mySub ()
On Error goto ThisError           'simple error handler
  mySub = TRUE                    'The OK signature - THIS PRODUCES A RE-ENTRANT PROCEDURE
                                           'IT PROBABLY STUFFS UP THE RETURN STACK POINTER

  Exit SUB                              'Outa here!

ThisError:
   mySub = FALSE                  'NOK indicator - THIS WILL GET IT OUT OF THE RE-ENTRANT CYCLE
End Sub

Maybe this might effect the Power Basic code

..Ten green bottles standing on the wall..  :wink
Title: Re: Visual Basic Q?
Post by: dedndave on April 15, 2012, 05:34:16 PM
maybe it's the ExitSub - not really sure how the VB compiler handles that
try this...
Public SUB mySub ()
On Error goto ThisError           'simple error handler
  mySub = TRUE                    'The OK signature - THIS PRODUCES A RE-ENTRANT PROCEDURE
                                           'IT PROBABLY STUFFS UP THE RETURN STACK POINTER

  Exit SUB                              'Outa here!

ThisError:
   mySub = FALSE                  'NOK indicator - THIS WILL GET IT OUT OF THE RE-ENTRANT CYCLE

  Exit SUB                              'Outa here!

End Sub

if that doesn't fly
you have GOTO ?   :P
Title: Re: Visual Basic Q?
Post by: vanjast on April 15, 2012, 06:36:26 PM
I'm not worried about it, but thought I'll mention it as some guys here are mixing basic and asm...
:8)
Title: Re: Visual Basic Q?
Post by: dedndave on April 15, 2012, 06:53:12 PM
yah - i think they like to play with PowerBasic, though
Title: Re: Visual Basic Q?
Post by: jj2007 on April 15, 2012, 08:02:42 PM
Quote from: vanjast on April 15, 2012, 06:36:26 PM
I'm not worried about it, but thought I'll mention it as some guys here are mixing basic and asm...
:8)

It's a little bit tricky to call asm from VB, but it works fine. At least for MS Word VB for apps - can't test it for the "full" VB because I don't have it.