Possible to combine an fbc dll with VB.net as main programm??

General FreeBASIC programming questions.
Post Reply
mrminecrafttnt
Posts: 131
Joined: Feb 11, 2013 12:23

Possible to combine an fbc dll with VB.net as main programm??

Post by mrminecrafttnt »

With my methods, the application will simply freeze..??
jj2007
Posts: 2326
Joined: Oct 23, 2016 15:28
Location: Roma, Italia
Contact:

Re: Possible to combine an fbc dll with VB.net as main programm??

Post by jj2007 »

Almost everything is possible, but nowadays crystal balls don't work any more. What about some code to demonstrate what you mean? Like this perhaps, VBA calling a sub written in Assembler:

Code: Select all

Private Declare Sub SayHello Lib "MbDll.dll" (ByVal StrPtr As String)
Sub EveryThingIsPossible()
    SayHello "Hello mrminecrafttnt, how are you?" ' Shows a MessageBox created with an external DLL
End Sub
Post Reply