Open xiaoyaocode163 opened 5 months ago
I would suggest to add a COM server sampel. Even i know that will be hard.
Question 21: Project:\Examples\Add-In, how to use the plug-in A new plug-in project was created, and the compilation error was: \compiler\bin\win32\ld.exe: cannot open output file ../AddIns/MyAddin (x32).dll: No such file or directory
MyAddin (x32).dll is already used in the IDE, so before compiling you need to disable this Addin in the IDE.
I would suggest to add a COM server sampel. Even i know that will be hard.
You can try this example: WellCOM Example.zip
I really love your very short response texts ;) Can you please add some md or whatever what it does or should do ? Have a great time, Greets from Germany Thomas
I really love your very short response texts ;) Can you please add some md or whatever what it does or should do ?
This VB6 example shows accessing the String property of the WellCOM object, setting a string and reading from it:
Option Explicit
Private Sub Form_Load()
On Error GoTo ErrorHandler
Dim IObject As Object
Set IObject = CreateObject("WellCOM.Object")
IObject.String = "dfdfd"
MsgBox IObject.String
Exit Sub
ErrorHandler:
MsgBox Error, vbExclamation + vbOKOnly
End Sub
Maybe you may consider to make a VERY big yell that you can not only call com objects now but also create com objects to be used with word, excel, vba, vbs ;) This might attract a lot of peoples to your fine program.
maybe i was misunderstood. :) I want to write the wellCOM object. not to use it ;) Thus means thet the object has to register itselv en expose all its vars , methods and whatever ;) This would people enable to write object they can use wherever. COM = COMPONENT Object model. Also known as managed code.
This example shows how to create a COM object yourself.
I will have a look on the weekend then :) Thanks :)
As for the previous question, the compiled EXE is running. If you recompile it, it would be better to prompt whether to terminate the last process.
Question 21: Project:\Examples\Add-In, how to use the plug-in A new plug-in project was created, and the compilation error was: \compiler\bin\win32\ld.exe: cannot open output file ../AddIns/MyAddin (x32).dll: No such file or directory