Calling VB.Net function from VB application

  • Thread starter Thread starter Rudy Mark
  • Start date Start date
R

Rudy Mark

I want to use HEX function of VB.Net in Visual Basic program. How to call
VB.Net application from VB application. Is ther any way I can use this(HEX
function) ?
Thanks
 
I want to use HEX function of VB.Net in Visual Basic program. How to call
VB.Net application from VB application. Is ther any way I can use this(HEX
function) ?
Thanks

What's wrong with VB6's Hex function?
 
I am passing numeric value which is so big it throws the error message.
Overflow message. If I pass the same value in Vb.Net it works well.
 
It is easier to write your own function: BigHex
Just use the VB6 hex on the chunks and built the string from the
pieces.
 
Back
Top