DLL in debugging mode question.

ckjason

New member
Joined
Apr 9, 2015
Messages
2
Programming Experience
1-3
I have created a dll and wanted to use for other project. When I call the dll function in debugging mode, it will run the dll code but not directly return a result to me..
Sorry, I m new in VB.net, i thought when call the dll function will direct return result to me, so no one can know the code in dll.

VB.NET:
Imports TeleLogin.TeleLoginSystemDLL
Public Class Form1


    Dim dlllogin As New TeleLogin.TeleLoginSystemDLL


    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        dlllogin.mdlRdmSec("OK")
    End Sub
End Class
 
What exactly are you expecting that code to do? If that `mdlRdmSec` method is supposed to be returning a value then wouldn't you need to put that value somewhere to use it, like assigning it to a variable?
 
Back
Top